Prep for 3.13.0 release (#8026)

This commit is contained in:
Komal 2021-09-22 13:09:22 -07:00 committed by GitHub
parent 09aa2c677e
commit d482c51811
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,50 @@
CHANGELOG
=========
## 3.13.0 (2021-09-22)
### Improvements
- [sdk/go] - Improve error messages for (un)marshalling properties.
[#7936](https://github.com/pulumi/pulumi/pull/7936)
- [sdk/go] - Initial support for (un)marshalling output values.
[#7861](https://github.com/pulumi/pulumi/pull/7861)
- [sdk/go] - Add `RegisterInputType` and register built-in types.
[#7928](https://github.com/pulumi/pulumi/pull/7928)
- [codegen] - Packages include `Package.Version` when provided.
[#7938](https://github.com/pulumi/pulumi/pull/7938)
- [auto/*] - Fix escaped HTML characters from color directives in event stream.
E.g. `"\u003c{%reset%}\u003edebug: \u003c{%reset%}\u003e"` -> `"<{%reset%}>debug: <{%reset%}>"`
[#7998](https://github.com/pulumi/pulumi/pull/7998)
- [auto/*] - Allow eliding color directives from event logs by passing `NO_COLOR` env var.
E.g. `"<{%reset%}>debug: <{%reset%}>"` -> `"debug: "`
[#7998](https://github.com/pulumi/pulumi/pull/7998)
- [schema] The syntactical well-formedness of a package schema is now described
and checked by a JSON schema metaschema.
[#7952](https://github.com/pulumi/pulumi/pull/7952)
### Bug Fixes
- [codegen/schema] - Correct validation for Package
[#7896](https://github.com/pulumi/pulumi/pull/7896)
- [cli] Use json.Unmarshal instead of custom parser
[#7954](https://github.com/pulumi/pulumi/pull/7954)
- [sdk/{go,dotnet}] - Thread replaceOnChanges through Go and .NET
[#7967](https://github.com/pulumi/pulumi/pull/7967)
- [codegen/nodejs] - Correctly handle hyphenated imports
[#7993](https://github.com/pulumi/pulumi/pull/7993)
## 3.12.0 (2021-09-08)
### Improvements