Cleanup after v2.24.1 release

This commit is contained in:
stack72 2021-04-01 22:11:21 +01:00
parent 2dad8a6649
commit 7f6ec8a7cf
4 changed files with 14 additions and 28 deletions

View file

@ -1,6 +1,16 @@
CHANGELOG
=========
## 2.24.1 (2021-04-01)
### Bug Fixes
- [cli] Revert the swapping out of the YAML parser library
[#6681](https://github.com/pulumi/pulumi/pull/6681)
- [automation/go,python,nodejs] Respect pre-existing Pulumi.yaml for inline programs.
[#6655](https://github.com/pulumi/pulumi/pull/6655)
## 2.24.0 (2021-03-31)
### Improvements

View file

@ -3,32 +3,8 @@
### Improvements
- [sdk/nodejs] Add provider side caching for dynamic provider deserialization
[#6657](https://github.com/pulumi/pulumi/pull/6657)
- [automation/dotnet] Expose structured logging
[#6572](https://github.com/pulumi/pulumi/pull/6572)
- [cli] Support full fidelity YAML round-tripping
- Strip Byte-order Mark (BOM) from YAML configs during load. - [#6636](https://github.com/pulumi/pulumi/pull/6636)
- [sdk/python] Ensure all async tasks are awaited prior to exit.
[#6606](https://github.com/pulumi/pulumi/pull/6606)
### Bug Fixes
- [sdk/nodejs] Fix error propagation in registerResource and other resource methods.
[#6644](https://github.com/pulumi/pulumi/pull/6644)
- [automation/python] Fix passing of additional environment variables.
[#6639](https://github.com/pulumi/pulumi/pull/6639)
- [sdk/python] Make exceptions raised by calls to provider functions (e.g. data sources) catchable.
[#6504](https://github.com/pulumi/pulumi/pull/6504)
- [automation/go,python,nodejs] Respect pre-existing Pulumi.yaml for inline programs.
[#6655](https://github.com/pulumi/pulumi/pull/6655)
- [sdk/dotnet] Respect pre-existing Pulumi.yaml for inline programs,
introduce ProjectSettingsConflictException.
[6670](https://github.com/pulumi/pulumi/pull/6670)
- [automation/dotnet] Environment variable value type is now nullable.
[#6520](https://github.com/pulumi/pulumi/pull/6520)

View file

@ -33,7 +33,7 @@ require (
github.com/opentracing/opentracing-go v1.1.0
github.com/pgavlin/goldmark v1.1.33-0.20200616210433-b5eb04559386
github.com/pkg/errors v0.9.1
github.com/pulumi/pulumi/sdk/v2 v2.24.0
github.com/pulumi/pulumi/sdk/v2 v2.24.1
github.com/rjeczalik/notify v0.9.2
github.com/sergi/go-diff v1.1.0
github.com/shurcooL/httpfs v0.0.0-20190707220628-8d4bc4ba7749 // indirect

View file

@ -14,6 +14,6 @@ require (
github.com/pkg/errors v0.9.1
github.com/pulumi/pulumi-random/sdk/v2 v2.4.2
github.com/pulumi/pulumi/pkg/v2 v2.0.0
github.com/pulumi/pulumi/sdk/v2 v2.24.0
github.com/pulumi/pulumi/sdk/v2 v2.24.1
github.com/stretchr/testify v1.6.1
)