Prep for 3.8.0 release (#7613)

This commit is contained in:
Komal 2021-07-22 12:27:04 -07:00 committed by GitHub
parent a659b3565c
commit 8afccf60ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 35 additions and 4 deletions

View file

@ -1,6 +1,37 @@
CHANGELOG
=========
## 3.8.0 (2021-07-22)
### Improvements
- [sdk/dotnet] - Fix async await warnings.
[#7537](https://github.com/pulumi/pulumi/pull/7537)
- [codegen/dotnet] - Emit dynamic config-getters.
[#7549](https://github.com/pulumi/pulumi/pull/7549)
- [sdk/python] - Support for authoring resource methods in Python.
[#7555](https://github.com/pulumi/pulumi/pull/7555)
- [sdk/{go,dotnet}] - Admit non-asset/archive values when unmarshalling into assets and archives.
[#7579](https://github.com/pulumi/pulumi/pull/7579)
### Bug Fixes
- [sdk/dotnet] - Fix for race conditions in .NET SDK that used to
manifest as a `KeyNotFoundException` from `WhileRunningAsync`.
[#7529](https://github.com/pulumi/pulumi/pull/7529)
- [sdk/go] - Fix target and replace options for the Automation API.
[#7426](https://github.com/pulumi/pulumi/pull/7426)
- [cli] - Don't escape special characters when printing JSON.
[#7593](https://github.com/pulumi/pulumi/pull/7593)
- [sdk/go] - Fix panic when marshaling `self` in a method.
[#7604](https://github.com/pulumi/pulumi/pull/7604)
## 3.7.1 (2021-07-19)
### Improvements

View file

@ -1,6 +1,6 @@
### Improvements
- [sdk/dotnet] - Fix async await warnings
- [sdk/dotnet] - Fix async await warnings.
[#7537](https://github.com/pulumi/pulumi/pull/7537)
- [codegen/dotnet] - Emit dynamic config-getters.
@ -9,16 +9,16 @@
- [sdk/python] - Support for authoring resource methods in Python.
[#7555](https://github.com/pulumi/pulumi/pull/7555)
- [sdk/{go,dotnet}] - Admit non-asset/archive values when unmarshaling into assets and archives.
- [sdk/{go,dotnet}] - Admit non-asset/archive values when unmarshalling into assets and archives.
[#7579](https://github.com/pulumi/pulumi/pull/7579)
### Bug Fixes
- [sdk/dotnet] - Fix for race conditions in .NET SDK that used to
manifest as a `KeyNotFoundException` from `WhileRunningAsync`
manifest as a `KeyNotFoundException` from `WhileRunningAsync`.
[#7529](https://github.com/pulumi/pulumi/pull/7529)
- [sdk/go] - Fix target and replace options for the Automation API
- [sdk/go] - Fix target and replace options for the Automation API.
[#7426](https://github.com/pulumi/pulumi/pull/7426)
- [cli] - Don't escape special characters when printing JSON.