Prepare for v3.3.0 release

This commit is contained in:
stack72 2021-05-20 13:24:01 +01:00
parent 558aec5cef
commit 30ac841bd3
2 changed files with 66 additions and 8 deletions

View file

@ -1,6 +1,66 @@
CHANGELOG
=========
## 3.3.0 (2021-05-20)
### Improvements
- [cli] - Provide user information when protected resources are not able to be deleted
[#7055](https://github.com/pulumi/pulumi/pull/7055)
- [cli] - Error instead of panic on invalid state file import
[#7065](https://github.com/pulumi/pulumi/pull/7065)
- Warn when a secret config is read as a non-secret
[#6896](https://github.com/pulumi/pulumi/pull/6896)
[#7078](https://github.com/pulumi/pulumi/pull/7078)
[#7079](https://github.com/pulumi/pulumi/pull/7079)
[#7080](https://github.com/pulumi/pulumi/pull/7080)
- [sdk/nodejs|python] - Add GetSchema support to providers
[#6892](https://github.com/pulumi/pulumi/pull/6892)
- [auto/dotnet] - Provide PulumiFn implementation that allows runtime stack type
[#6910](https://github.com/pulumi/pulumi/pull/6910)
- [auto/go] - Provide GetPermalink for all results
[#6875](https://github.com/pulumi/pulumi/pull/6875)
### Bug Fixes
- [sdk/python] Fix relative `runtime:options:virtualenv` path resolution to ignore `main` project attribute
[#6966](https://github.com/pulumi/pulumi/pull/6966)
- [auto/dotnet] - Disable Language Server Host logging and checking appsettings.json config
[#7023](https://github.com/pulumi/pulumi/pull/7023)
- [auto/python] - Export missing `ProjectBackend` type
[#6984](https://github.com/pulumi/pulumi/pull/6984)
- [sdk/nodejs] - Fix noisy errors.
[#6995](https://github.com/pulumi/pulumi/pull/6995)
- Config: Avoid emitting integers in objects using exponential notation.
[#7005](https://github.com/pulumi/pulumi/pull/7005)
- [codegen/python] - Fix issue with lazy_import affecting pulumi-eks
[#7024](https://github.com/pulumi/pulumi/pull/7024)
- Ensure that all outstanding asynchronous work is awaited before returning from a .NET
Pulumi program.
[#6993](https://github.com/pulumi/pulumi/pull/6993)
- Config: Avoid emitting integers in objects using exponential notation.
[#7005](https://github.com/pulumi/pulumi/pull/7005)
- Build: Add vs code dev container
[#7052](https://github.com/pulumi/pulumi/pull/7052)
- Ensure that all outstanding asynchronous work is awaited before returning from a Go
Pulumi program. Note that this may require changes to programs that use the
`pulumi.NewOutput` API.
[#6983](https://github.com/pulumi/pulumi/pull/6983)
## 3.2.1 (2021-05-06)
### Bug Fixes

View file

@ -1,16 +1,8 @@
### Breaking Changes
### Improvements
- [cli] - Provide user information when protected resources are not able to be deleted
[#7055](https://github.com/pulumi/pulumi/pull/7055)
- [auto/dotnet] - Provide PulumiFn implementation that allows runtime stack type
[#6910](https://github.com/pulumi/pulumi/pull/6910)
- [auto/go] - Provide GetPermalink for all results
[#6875](https://github.com/pulumi/pulumi/pull/6875)
- [cli] - Error instead of panic on invalid state file import
[#7065](https://github.com/pulumi/pulumi/pull/7065)
@ -23,6 +15,12 @@
- [sdk/nodejs|python] - Add GetSchema support to providers
[#6892](https://github.com/pulumi/pulumi/pull/6892)
- [auto/dotnet] - Provide PulumiFn implementation that allows runtime stack type
[#6910](https://github.com/pulumi/pulumi/pull/6910)
- [auto/go] - Provide GetPermalink for all results
[#6875](https://github.com/pulumi/pulumi/pull/6875)
### Bug Fixes
- [sdk/python] Fix relative `runtime:options:virtualenv` path resolution to ignore `main` project attribute