Fix up CHANGELOG (#6535)

This commit is contained in:
Luke Hoban 2021-03-16 14:33:21 +11:00 committed by GitHub
parent 71ec66aa45
commit 6e0106265e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -114,9 +114,6 @@ CHANGELOG
## 2.20.0 (2021-02-03)
- [cli] Add locking support to the self-managed backends using the `PULUMI_SELF_MANAGED_STATE_LOCKING=1` environment variable.
[#6437](https://github.com/pulumi/pulumi/pull/6437)
- [sdk/python] Fix `Output.from_input` to unwrap nested output values in input types (args classes), which addresses
an issue that was preventing passing instances of args classes with nested output values to Provider resources.
[#6221](https://github.com/pulumi/pulumi/pull/6221)

View file

@ -56,6 +56,9 @@ This change is marked breaking because it also renames `OnOutput` to `OnStandard
- [automation/nodejs] - Add `onOutput` event handler to `PreviewOptions`.
[#6507](https://github.com/pulumi/pulumi/pull/6507)
- [cli] Add locking support to the self-managed backends using the `PULUMI_SELF_MANAGED_STATE_LOCKING=1` environment variable.
[#2697](https://github.com/pulumi/pulumi/pull/2697)
### Bug Fixes
- [sdk/python] Fix mocks issue when passing a resource more than once.