Fix the CHANGELOG.

This commit is contained in:
Pat Gavlin 2019-10-08 14:48:52 -07:00
parent 0b7cc93711
commit 22799879e8

View file

@ -14,6 +14,13 @@ CHANGELOG
- Support renaming stack projects via `pulumi stack rename`.
[#3292](https://github.com/pulumi/pulumi/pull/3292)
- `pulumi update` can now be scoped to update a single resource by adding a `--target urn` or `-t urn`
argument. Multiple resources can be specified using `-t urn1 -t urn2`.
- Adds the ability to provide transformations to modify the properties and resource options that
will be used for any child resource of a component or stack.
[#3174](https://github.com/pulumi/pulumi/pull/3174)
## 1.2.0 (2019-09-26)
- Support emitting high-level execution trace data to a file and add a debug-only command to view trace data.
@ -28,9 +35,6 @@ CHANGELOG
- `pulumi destroy` can now be scoped to delete a single resource (and its dependents) by adding a
`--target urn` or `-t urn` argument. Multiple resources can be specified using `-t urn1 -t urn2`.
- `pulumi update` can now be scoped to update a single resource by adding a `--target urn` or `-t urn`
argument. Multiple resources can be specified using `-t urn1 -t urn2`.
- Avoid re-encrypting secret values on each checkpoint write. These changes should improve update times for stacks
that contain secret values.
[#3183](https://github.com/pulumi/pulumi/pull/3183)
@ -39,10 +43,6 @@ CHANGELOG
- Add `-c` (config array) flag to the `preview` command.
- Adds the ability to provide transformations to modify the properties and resource options that
will be used for any child resource of a component or stack.
[#3174](https://github.com/pulumi/pulumi/pull/3174)
## 1.1.0 (2019-09-11)
- Fix a bug that caused the Python runtime to ignore unhandled exceptions and erroneously report that a Pulumi program executed successfully.