Back to Pulumi

V0.17.3

changelog/v0.17.3.md

3.244.01.4 KB
Original Source

0.17.3 (2019-03-26)

Improvements

  • A new command, pulumi stack rename was added. This allows you to change the name of an existing stack in a project. Note: When a stack is renamed, the pulumi.getStack function in the SDK will now return a new value. If a stack name is used as part of a resource name, the next pulumi up will not understand that the old and new resources are logically the same. We plan to support adding aliases to individual resources so you can handle these cases. See pulumi/pulumi#458 for discussion on this new feature. For now, if you are unwilling to have pulumi up create and destroy these resources, you can rename your stack back to the old name. (fixes pulumi/pulumi#2402)
  • Fix two warnings that were printed when using a dynamic provider about missing method handlers.
  • A bug in the previous version of the Pulumi CLI occasionally caused the Pulumi Engine to load the incorrect resource plugin when processing an update. This bug has been fixed in 0.17.3 by performing a deterministic selection of the best set of plugins available to the engine before starting up. See
  • Add support for serializing JavaScript function that capture BigInts.
  • Support serializing arrow-functions with deconstructed parameters.