Back to Pulumi

V0.10.0

changelog/v0.10.0.md

3.244.01.5 KB
Original Source

0.10.0 (2018-02-27)

Note: The v0.10.0 SDK has a strict dependency on Node.js 6.10.2.

Added

  • Support "force" option when deleting a managed stack.

  • Add a pulumi history command (pulumi#636). For a managed stack, use the pulumi history to view deployments of that stack's resources.

Changed

  • (Breaking) Use npm install instead of npm link to reference the Pulumi SDK @pulumi/aws, @pulumi/cloud, @pulumi/cloud-aws. For more information, see Pulumi npm packages.

  • (Breaking) Explicitly track resource dependencies via Input and Output types. This enables future improvements to the Pulumi development experience, such as parallel resource creation and enhanced dependency visualization. When a resource is created, all of its output properties are instances of a new type pulumi.Output<T>. Output<T> contains both the value of the resource property and metadata that tracks resource dependencies. Inputs to a resource now accept Output<T> in addition to T and Promise<T>.

Fixed

  • Managed stacks sometimes return a 500 error when requesting logs
  • Error when using float64 attributes using SDK v0.9.9 (pulumi-terraform#95)
  • pulumi logs entries only return first line (pulumi#857)