- #6410 Add
diffoption to Automation API'spreviewandup
-
[automation/dotnet] - resolve issue with OnOutput delegate not being called properly during pulumi process execution. #6435
-
[automation/python,nodejs,dotnet] - BREAKING - Remove
summaryproperty fromPreviewResult. Thesummaryproperty onPreviewResultreturns a result that is always incorrect and is being removed. #6405 -
[automation/python] - Fix Windows error caused by use of NamedTemporaryFile in automation api. #6421
-
[sdk/nodejs] Serialize default parameters correctly. #6397
-
[cli] Respect provider aliases while diffing resources. #6453
-
[cli] Disable permalinks to the update details page when using self-managed backends (S3, Azure, GCS). Should the user want to get permalinks when using a self backend, they can pass a flag:
pulumi up --suppress-permalink false.
Permalinks for these self-managed backends will be suppressed onupdate,preview,destroy,importandrefreshoperations. #6251 -
[cli] Added commands
config set-allandconfig rm-allto set and remove multiple configuration keys. #6373 -
[automation/*] Consume
config set-allandconfig rm-allfrom automation API. #6388 -
[sdk/dotnet] C# Automation API. #5761
-
[sdk/dotnet] F# API to specify stack options. #5077
-
[sdk/nodejs] Don't error when loading multiple copies of the same version of a Node.js component package. #6387
-
[cli] Skip unnecessary state file writes to address performance regression introduced in 2.16.2. #6396
- [sdk/python] Fixed a change to
Output.all()that raised an error if no inputs are passed in. #6381
-
[cli] Added pagination options to
pulumi stack history#6292
This is used as follows:
pulumi stack history --page-size=20 --page=1 -
[automation/*] Added pagination options for stack history in Automation API SDKs to improve performance of stack updates. #6257
This is used similar to the following example in go:
func ExampleStack_History() {
ctx := context.Background()
stackName := FullyQualifiedStackName("org", "project", "stack")
stack, _ := SelectStackLocalSource(ctx, stackName, filepath.Join(".", "program"))
pageSize := 0
page := 0
hist, _ := stack.History(ctx, pageSize, page)
fmt.Println(hist[0].StartTime)
}- [pkg/testing/integration] Changed the default behavior for Python test projects to use
UseAutomaticVirtualEnvby default.UsePipenvis now the way to use pipenv with tests. #6318
-
[automation/go] Exposed the version in the UpdateSummary for use in understanding the version of a stack update #6339
-
[cli] Changed the behavior for Python on Windows to look for
pythonbinary first instead ofpython3. #6317 -
[sdk/python] Gracefully handle monitor shutdown in the python runtime without exiting the process. #6249
-
[sdk/python] Fixed a bug in
contains_unknownswhere outputs with a property named "values" failed with a TypeError. #6264 -
[sdk/python] Allowed keyword args in Output.all() to create a dict. #6269
-
[sdk/python] Defined
__all__in modules for better IDE autocomplete. #6351 -
[automation/python] Fixed a bug in nested configuration parsing. #6349
- [sdk/python] Fix
Output.from_inputto 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
-
[sdk/nodejs] Always read and write NodeJS runtime options from the environment. #6076
-
[sdk/go] Take a breaking change to remove unidiomatic numerical types and drastically improve build performance (binary size and compilation time). #6143
-
[cli] Ensure
pulumi stack change-secrets-providerallows rotating the key from hashivault to passphrase provider #6210
-
[CLI] Fix malformed resource value bug. #6164
-
[sdk/dotnet] Fix
RegisterResourceOutputsto serialize resources as resource references only when the monitor reports that resource references are supported. #6172 -
[CLI] Avoid panic for diffs with invalid property paths. #6159
-
Enable resource reference feature by default. #6202
- Revert #6125 as it caused a which introduced a bug with serializing resource IDs
-
[CLI] Add the ability to log out of all Pulumi backends at once. #6101
-
[sdk/go] Added
pulumi.Unsecretwhich will take an existing secret output and create a non-secret variant with an unwrapped secret value. Also adds,pulumi.IsSecretwhich will take an existing output and determine if an output has a secret within the output. #6085
-
.NET: Allow
IMock.NewResourceAsyncto return a null ID for component resources. Note that this may require mocks written in C# to be updated to account for the change in nullability. #6104 -
[automation/go] Add debug logging settings for common automation API operations #6095
-
[automation/go] Set DryRun on previews so unknowns are identified correctly. #6099
-
[sdk/python] Fix python 3.6 support by removing annotations import. #6109
-
[sdk/nodejs] Added
pulumi.unsecretwhich will take an existing secret output and create a non-secret variant with an unwrapped secret value. Also adds,pulumi.isSecretwhich will take an existing output and determine if an output has a secret within the output. #6086 -
[sdk/python] Added
pulumi.unsecretwhich will take an existing secret output and create a non-secret variant with an unwrapped secret value. Also adds,pulumi.is_secretwhich will take an existing output and determine if an output has a secret within the output. #6111
-
Fix an issue with go sdk generation where optional strict enum values could not be omitted. Note - this is a breaking change to go sdk's enum values. However we currently only support strict enums in the azure-nextgen provider's schema. #6069
-
Fix an issue where python debug messages print unexpectedly. #6967
-
[CLI] Add
versionto the stack history output to be able to correlate events back to the Pulumi SaaS #6063 -
Fix a typo in the unit testing mocks to get the outputs while registering them #6040
-
[sdk/dotnet] Moved urn value retrieval into if statement for MockMonitor #6081
-
[sdk/dotnet] Added
Pulumi.Output.Unsecretwhich will take an existing secret output and create a non-secret variant with an unwrapped secret value. #6092 -
[sdk/dotnet] Added
Pulumi.Output.IsSecretAsyncwhich will take an existing output and determine if an output has a secret within the output. #6092 -
[sdk/dotnet] Fix looking up empty version in
ResourcePackages.TryGetResourceType. #6084 -
Python Automation API. #5979
-
Support recovery workflow (import/export/cancel) in Python Automation API. #6037
-
Respect the
versionresource option for provider resources. #6055 -
Allow
serializeFunctionto capture secrets. #6013 -
[CLI] Allow
pulumi consoleto accept a stack name #6031 -
Support recovery workflow (import/export/cancel) in NodeJS Automation API. #6038
-
[CLI] Add a confirmation prompt when using
pulumi policy rm#6034 -
[CLI] Ensure errors with the Pulumi credentials file give the user some information on how to resolve the problem #6044
-
[sdk/go] Support maps in Invoke outputs and Read inputs #6014
- Fix a bug in the core engine that could cause previews to fail if a resource with changes had unknown output property values. #6006
-
Fix a panic due to unsafe concurrent map access. #5995
-
Fix regression in
venvcreation for python policy packs. #5992
-
Do not read plugins and policy packs into memory prior to extraction, as doing so can exhaust the available memory on lower-end systems. #5983
-
Fix a bug in the core engine where deleting/renaming a resource would panic on update + refresh. #5980
-
Fix a bug in the core engine that caused
ignoreChangesto fail for resources being imported. #5976 -
Fix a bug in the core engine that could cause resources references to marshal improperly during preview. #5960
-
[sdk/dotnet] Add collection initializers for smooth support of Union<T, U> as element type #5938
-
Fix a bug in the core engine where ComponentResource state would be accessed before initialization. #5949
-
Prevent a panic by not attempting to show progress for zero width/height terminals. #5957
-
Fix a bug in the Go SDK that could result in dropped resource dependencies. #5930
-
Temporarily disable resource ref feature. #5932
-
Re-apply fix for running multiple
pulumiprocesses concurrently. #5893 -
[cli] Prevent a panic when using
pulumi importwith local filesystems #5906 -
[sdk/nodejs] Fix issue that would cause unit tests using mocks to fail with unhandled errors when a resource references another resources that's been registered with
registerResourceModule. #5914 -
Enable resource reference feature by default. #5905
-
[codegen/go] Fix Input/Output methods for Go resources. #5916
-
[sdk/python] Implement getResource in the mock monitor. #5919
-
[sdk/dotnet] Implement getResource in the mock monitor and fix some issues around deserializing resources. #5921
-
Fix a problem where
pulumi importcould panic on an import error due to missing error message. #5884 -
Correct the system name detected for Jenkins CI. #5891
-
Fix python execution for users running Python installed through the Windows App Store on Windows 10 #5874
- Fix errors when running
pulumiin Windows-based CI environments. #5879
- Fix a problem where
pulumi importcould panic on importing arrays and sets, due to incorrect array resizing logic. #5872.
-
Address potential issues when running multiple
pulumiprocesses concurrently. #5857 -
Automatically install missing Python dependencies. #5787
-
[cli] Ensure
pulumi stack change-secrets-providerallows rotating the key for a passphrase provider #5865
-
[sdk/python] Add deserialization support for enums. #5615
-
Correctly rename
Pulumi.*.yamlstack files during a rename that includes an organization in its name #5812. -
Respect
PULUMI_PYTHON_CMDin scripts. #5782 -
Add
PULUMI_BACKEND_URLenvironment variable to configure the state backend. #5789 -
[sdk/dotnet] Add support for dependency injection into TStack instance by adding an overload to
Deployment.RunAsync. The overload accepts anIServiceProviderthat is used to create the instance of TStack. Also added a new methodDeployment.TestWithServiceProviderAsyncfor testing stacks that use dependency injection. #5723 -
[cli] Ensure
pulumi stack change-secrets-providerallows rotating the key in Azure KeyVault #5842
-
Propagate secretness of provider configuration through to the statefile. This ensures that any configuration values marked as secret (i.e. values set with
pulumi config set --secret) that are used as inputs to providers are encrypted before they are stored. #5742 -
Fix a bug that could prevent
pulumi importfrom succeeding. #5730 -
[Docs] Add support for the generation of Import documentation in the resource docs. This documentation will only be available if the resource is importable. #5667
-
[codegen/go] Add support for ResourceType and isComponent to enable multi-language components in Go. This change also generates Input/Output types for all resources in downstream Go SDKs. #5497
-
Support python 3.9 on Windows. #5739
-
pulumi-language-goandpulumi newnow explicitly requires Go 1.14.0 or greater. #5741 -
Update .NET
Grpclibraries to 2.33.1 andProtobufto 3.13.0 (forked to increase the recursion limit) #5757 -
Fix plugin install failures on Windows. #5759
-
.NET: Report plugin install errors during
pulumi new. #5760 -
Correct error message on KeyNotFoundException against StackReference. #5740
-
[cli] Small UX change on the policy violations output to render as
type: name#5773
- Fix a bug that was causing errors when (de)serializing custom resources. #5709
-
[cli] Ensure
pulumi historyannotes when secrets are unable to be decrypted #5701 -
Fix a bug in the Python SDK that caused incompatibilities with versions of the CLI prior to 2.13.0. #5702
-
Add internal scaffolding for using cross-language components from Go. #5558
-
Support python 3.9. #5669
-
[cli] Ensure that the CLI doesn't panic when using pulumi watch and using ComponentResources with non-standard naming #5675
-
[cli] Ensure that the CLI doesn't panic when trying to assemble a graph on a stack that has no snapshot available #5678
-
Add boolean values to Go SDK #5687
-
[cli] Ensure that the CLI doesn't panic when using pulumi watch and policies are enabled #5569
-
[cli] Ensure that the CLI doesn't panic when using the JSON output as part of previews and policies are enabled #5610
-
NodeJS Automation API. #5347
-
Improve the accuracy of previews by allowing providers to participate in determining what the impact of a change will be on output properties. Previously, Pulumi previews conservatively assumed that any output-only properties changed their values when an update occurred. For many properties, this was guaranteed to not be the case (because those properties are immutable, for example), and by suggesting the value might change, this could lead to the preview suggesting additional transitive updates of even replaces that would not actually happen during an update. Pulumi now allows the provider to specify the details of what properties will change during a preview, allowing them to expose more accurate provider-specific knowledge. This change is less conservative than the previous behavior, and so in case it causes preview results which are not deemed correct in some case - the
PULUMI_DISABLE_PROVIDER_PREVIEWflag can be set to a truthy value (e.g.1) to enable the previous and more conservative behavior for previews. #5443. -
Add an import command to the Pulumi CLI. This command can be used to import existing resources into a Pulumi stack. #4765
-
[cli] Remove eternal loop if a configured passphrase is invalid. #5507
-
Correctly validate project names during 'pulumi new' #5504
-
Fixing gzip compression for alternative backends. #5484
-
Add internal scaffolding for using cross-language components from .NET. #5485
-
Support self-contained executables as binary option for .NET programs. #5519
-
[cli] Ensure old secret provider variables are cleaned up when changing between secret providers #5545
-
[cli] Respect logging verbosity as part of pulumi plugin install commands #5549
-
[cli] Accept
-fas a shorthand for--skip-previewonpulumi up,pulumi refreshandpulumi destroyoperations #5556 -
[cli] Validate cloudUrl formats before
pulumi loginand throw an error if incorrect format specified #5550 -
[automation api] Add support for passing a private ssh key for git authentication that doesn't rely on a file path #5557
-
[cli] Improve user experience when pulumi plugin rm --all finds no plugins to remove. The previous behaviour was an error and should not be so. #5547
-
[sdk/python] Fix ResourceOptions annotations and doc strings. #5559
-
[sdk/dotnet] Fix HashSet concurrency issue. #5563
-
feat(autoapi): expose EnvVars LocalWorkspaceOption to set in ctor #5499
-
[sdk/python] Fix secret regression: ensure unwrapped secrets during deserialization are rewrapped before being returned. #5496
- Add internal scaffolding for using cross-language components from Python. #5375
-
Do not oversimplify types for display when running an update or preview. #5440
-
Pulumi Windows CLI now uploads all VCS information to console (fixes #5014) #5406
-
.NET SDK: Support
Output<object>for resource output properties (fixes #5446) #5465
-
[sdk/go] Add missing Version field to invokeOptions #5401
-
Add
pulumi consolecommand which opens the currently selected stack in the Pulumi console. #5368 -
Python SDK: Cast numbers intended to be integers to
int. #5419
-
feat(autoapi): add GetPermalink for operation result #5363
-
Relax stack name validations for Automation API #5337
-
Allow Pulumi to read a passphrase file, via
PULUMI_CONFIG_PASSPHRASE_FILEto interact with the passphrase secrets provider. Pulumi will first try and use thePULUMI_CONFIG_PASSPHRASEto get the passphrase then will checkPULUMI_CONFIG_PASSPHRASE_FILEand then all through to asking interactively as the final option. #5327 -
feat(autoapi): Add support for working with private Git repos. Either
SSHPrivateKeyPath,PersonalAccessTokenorUserNameandPasswordcan be pushed to theauto.GitRepostruct when interacting with a private repo #5333 -
Revise the design for connecting an existing language runtime to a CLI invocation. Note that this is a protocol breaking change for the Automation API, so both the API and the CLI must be updated together. #5317
-
Automation API - support streaming output for Up/Refresh/Destroy operations. #5367
-
Automation API - add recovery APIs (cancel/export/import) #5369
-
feat(autoapi): add Upsert methods for stacks #5316
-
Add IsSelectStack404Error and IsCreateStack409Error #5314
-
Add internal scaffolding for cross-language components. #5280
-
feat(autoapi): add workspace scoped envvars to LocalWorkspace and Stack #5275
-
refactor(autoapi-gitrepo): use Workspace in SetupFn callback #5279
-
Fix Go SDK plugin acquisition for programs with vendored dependencies #5286
-
Python SDK: Add support for
Sequence[T]for array types #5282 -
feat(autoapi): Add support for non default secret providers in local workspaces #5320
-
.NET SDK: Prevent a task completion race condition #5324
-
Alpha version of the Automation API for Go #4977
-
Python SDK: Avoid raising an error when internal properties don't match the expected type. #5251
-
Added
--suppress-permalinkoption to suppress the permalink output (fixes #4103) #5191
- Python SDK: Avoid raising an error when an output has a type annotation of Any and the value is a list or dict. #5238
-
Fix support for CheckFailures in Python Dynamic Providers #5138
-
Upgrade version of
gocloud.dev. This ensures that 'AWSKMS' secrets providers can now be used with full ARNs rather than just Aliases #5138 -
Ensure the 'history' command is a subcommand of 'stack'. This means that
pulumi historyhas been deprecated in favour ofpulumi stack history. #5158 -
Add support for extracting jar files in archive resources #5150
-
SDK changes to support Python input/output classes #5033
-
Add nuget badge to README #5117
-
Support publishing and consuming Policy Packs using any runtime #5102
-
Fix regression where any CLI integration for any stack with a default secrets provider would sort the config alphabetically and new stacks created would get created with an empty map
{}in the config file #5132
- Fix a bug where passphrase managers were not being recognised correctly when getting the configuration for the current stack. Please Note: This specific bug may have caused the stack config file to remove the password encryption salt. #5110
-
Add missing MapMap and ArrayArray types to Go SDK #5092
-
Switch os/user package with luser drop in replacement #5065
-
Update pip/setuptools/wheel in virtual environment before installing dependencies #5042
-
Add ability to change a secrets provider for the current stack #5031
-
Add ability to create a stack based on the config from an existing stack #5062
-
Python: Improved error message when
virtualenvdoesn't exist #5069 -
Enable pushing to Artifact Registry in actions #5075
- Fix logic to parse pulumi venv on github action 5038
-
Add pluginDownloadURL field to package definition #4947
-
Add support for streamInvoke during update #4990
-
Add ability to copy configuration values between stacks #4971
-
Add logic to parse pulumi venv on github action #4994
-
Better performance for stacks with many resources using the .NET SDK #5015
-
Output PDB files and enable SourceLink integration for .NET assemblies #4967
- Fix a panic in the display during CLI operations #4987
-
Go program gen: Improved handling for pulumi.Map types #4914
-
Go SDK: Input type interfaces should declare pointer type impls where appropriate #4911
-
Fixes issue where base64-encoded GOOGLE_CREDENTIALS causes problems with other commands #4972
-
Go program gen: prompt array conversion, unused range vars, id handling #4884
-
Go program gen handling for prompt optional primitives #4875
-
Go program gen All().Apply rewriter #4858
-
Go program gen improvements (multiline strings, get/lookup disambiguation, invoke improvements) #4850
-
Go program gen improvements (splat, all, index, traversal, range) #4831
-
Go program gen improvements (resource range, readDir, fileArchive) #4818
-
Set default config namespace for Get/Try/Require methods in Go SDK. #4802
-
Handle invalid UTF-8 characters before RPC calls #4816
-
Improve typing for Go SDK secret config values #4800
-
Fix panic on
pulumi upprompt after preview when filtering and hitting arrow keys. #4808 -
Ensure GitHub Action authenticates to GCR when
$GOOGLE_CREDENTIALSspecified #4812 -
Fix
pylint(no-member)when accessingresource.id. #4813 -
Fix GitHub Actions environment detection for PRs. #4817
-
Adding language sdk specific docker containers. #4837
-
Workaround bug in grcpio v1.30.0 by excluding this version from required dependencies. #4883
-
Turn program generation NYIs into diagnostic errors #4794
-
Improve dev version detection logic #4732
-
Export
CustomTimeoutsin the Python SDK #4747 -
Add GitHub Actions CI detection #4758
-
Allow users to specify base64 encoded strings as GOOGLE_CREDENTIALS #4773
-
Install and use dependencies automatically for new Python projects. #4775
-
Add F# operators for InputUnion. #4699
-
Add support for untagged outputs in Go SDK. #4640
-
Update go-cloud to support all Azure regions #4643
-
Fix a Regression in .NET unit testing. #4656
-
Allow
pulumi.exportcalls from Python unit tests. #4670 -
Add support for publishing Python policy packs. #4644
-
Improve download perf by fetching plugins from a CDN. #4692
- Add new brew target to fix homebrew builds #4633
-
Fixed ResourceOptions issue with stack references in Python SDK #4553
-
Add runTask to F# Deployment module #3858
-
Add support for generating Fish completions #4401
-
Support map-typed inputs in RegisterResource for Go SDK #4522
-
Don't call IMocks.NewResourceAsync for the root stack resource #4527
-
Add ResourceOutput type to Go SDK #4575
-
Allow secrets to be decrypted when exporting a stack #4046
-
Commands checking for a confirmation or requiring a
--yesflag can now be skipped by settingPULUMI_SKIP_CONFIRMATIONSto1ortrue. #4477
- Add retry support when writing to state buckets #4494
-
Fix infinite recursion bug for Go SDK #4516
-
Order secretOutputNames when used in stack references #4489
-
Add support for a
PULUMI_CONSOLE_DOMAINenvironment variable to override the behavior for how URLs to the Pulumi Console are generated. #4410 -
Protect against panic when unprotecting non-existant resources #4441
-
Add flag to
pulumi stackto output only the stack name #4450 -
Ensure Go accessor methods correctly support nested fields of optional outputs #4456
-
Improve
ResourceOptions.mergetype in Python SDK #4484 -
Ensure generated Python module names are keyword-safe. #4473
-
Explicitly set XDG_CONFIG_HOME and XDG_CACHE_HOME env vars for helm in the pulumi docker image #4474
-
Increase the MaxCallRecvMsgSize for all RPC calls. #4455
-
CLI behavior change. Commands in non-interactive mode (i.e. when
pulumihas its output piped to another process or running on CI) will not default to assuming that--yeswas passed in.--yesis now explicitly required to proceed in non-interactive scenarios. This affects:pulumi destroypulumi newpulumi refreshpulumi up
-
Fixed crashes and hangs introduced by usage of another library.
-
@pulumi/pulumi now requires Node.js version >=10.10.0.
-
All data-source invocations are now asynchronous (Promise-returning) by default.
-
C# code generation switched to schema.
-
.NET API: replace
IDeploymentinterface withDeploymentInstanceclass. -
Fix Go SDK secret propagation for Resource inputs/outputs. #4387
-
Fix Go codegen to emit config packages #4388
-
Treat config values set with
--paththat start with '0' as strings rather than numbers. #4393 -
Switch .NET projects to .NET Core 3.1 #4400
-
Avoid unexpected replace on resource with
importapplied on second update. #4403
-
Propagate
additionalSecretOutputsopt to Read in NodeJS. #4307 -
Fix handling of
nilvalues in Outputs in Go. #4268 -
Include usage hints for Input types in Go SDK #4279
-
Fix secretness propagation in Python
apply. #4273 -
Fix the
callmock in Python. #4274 -
Fix handling of secret values in mock-based tests. #4272
-
Automatic plugin acquisition for Go #4297
-
Define merge behavior for resource options in Go SDK #4316
-
Add overloads to Output.All in .NET #4321
-
Make prebuilt executables opt-in only for the Go SDK #4338
-
Support the
binaryoption (prebuilt executables) for the .NET SDK #4355 -
Add helper methods for stack outputs in the Go SDK #4341
-
Add additional overloads to Deployment.RunAsync in .NET API. #4286
-
Automate execution of
go mod downloadforpulumi newGo templates #4353 -
Fix
pulumi up -r -t $URNnot refreshing only the target #4217 -
Fix logout with file backend when state is deleted #4218
-
Fix specific flags for
pulumi stackbeing global #4294 -
Fix error when setting config without value in non-interactive mode #4358
-
Propagate unknowns in Go SDK during marshal operations #4369
-
Fix Go SDK stack reference helpers to handle nil values #4370
-
Fix propagation of unknown status for secrets #4377
-
Fix error related to side-by-side versions of
@pulumi/pulumi. #4235 -
Allow users to specify an alternate backend URL when using the GitHub Actions container with the env var
PULUMI_BACKEND_URL. #4243
-
Move to a multi-module repo to enable modules for the Go SDK #4109
-
Report compile time errors for Go programs during plugin acquisition. #4141
-
Add missing builtin
MapArrayto Go SDK. #4144 -
Add aliases to Go SDK codegen pkg. #4157
-
Discontinue testing on Node 8 (which has been end-of-life since January 2020), and start testing on Node 13. #4156
-
Add support for enabling Policy Packs with configuration. #3756
-
Remove obsolete .NET serialization attributes. #4190
-
Add support for validating Policy Pack configuration. #4179
-
Add support for plugin acquisition for Go programs #4060
-
Display resource type in PAC violation output #4061
-
Update to Helm v3 in pulumi Docker image #4090
-
Add ArrayMap builtin types to Go SDK #4086
-
Improve documentation of URL formats for
pulumi login#4059 -
Add support for stack transformations in the .NET SDK. #4008
-
Fix
pulumi stack lson Windows #4094 -
Add support for running Python policy packs. #4057
-
Fix Kubernetes YAML parsing error in .NET. #4023
-
Avoid projects beginning with
Pulumito stop cyclic imports #4013 -
Ensure we can locate Go created application binaries on Windows #4030
-
Ensure Python overlays work as part of our SDK generation #4043
-
Fix terminal gets into a state where UP/DOWN don't work with prompts. #4042
-
Ensure old provider is not used when configuration has changed #4051
-
Support for unit testing and mocking in the .NET SDK. #3696
-
Avoid Configuring providers which are not used during preview. #4004
-
Fix missing module import on Windows platform. #3983
-
Add support for mocking the resource monitor to the NodeJS and Python SDKs. #3738
-
Reinstate caching of TypeScript compilation. #4007
-
Remove the need to set PULUMI_EXPERIMENTAL to use the policy and watch commands. #4001
-
Fix type annotations for
Output.allandOutput.concatin Python SDK. #4016 -
Add support for configuring policies. #4015
-
Fix a regression for CustomTimeouts in Python SDK. #3964
-
Avoid panic when displaying failed stack policies. #3960
-
Add support for secrets in the Go SDK. 3938
-
Add support for transformations in the Go SDK. 3978
-
Allow oversize protocol buffers for Python SDK. #3895
-
Avoid duplicated messages in preview/update progress display. #3890
-
Improve CPU utilization in the Python SDK when waiting for resource operations. #3892
-
Expose resource options, parent, dependencies, and provider config to policies. #3862
-
Move .NET SDK attributes to the root namespace. #3902
-
Support exporting older stack versions. #3906
-
Disable interactive progress display when no terminal size is available. #3936
-
Mark
ResourceOptionsclass as abstract in the .NET SDK. Require the use of derived classes. #3943
-
Avoid writing checkpoints to backend storage in common case where no changes are being made. #3860
-
Add information about an in-flight operation to the stack command output, if applicable. #3822
-
Update
SummaryEventto include the actual name and local file path for locally-executed policy packs. -
Add support for aliases in the Go SDK 3853
-
Fix Python Dynamic Providers on Windows. #3855
-
Fix a stack reference regression in the Python SDK. #3798
-
Fix a buggy assertion in the Go SDK. #3794
-
Add
--latestflag topulumi policy enable. -
Breaking change for Policy which removes requirement for version when running
pulumi policy disable. Add--versionflag if user wants to specify version of Policy Pack to disable. -
Fix rendering of Policy Packs to ensure they are always displayed.
-
Primitive input types in the Go SDK (e.g. Int, String, etc.) now implement the corresponding Ptr type e.g. IntPtr, StringPtr, etc.). This is consistent with the output of the Go code generator and is much more ergonomic for optional inputs than manually converting to pointer types. #3806
-
Add ability to specify all versions when removing a Policy Pack.
-
Breaking change to Policy command: Change enable command to use
pulumi policy enable <org-name>/<policy-pack-name> latestinstead of a--latestflag.
-
Publish python types for PEP 561 #3704
-
Lock dep ts-node to v8.5.4 #3733
-
Improvements to
pulumi policyfunctionality. Add ability to remove & disable Policy Packs. -
Breaking change for Policy which is in Public Preview: Change
pulumi policy applytopulumi policy enable, and allow users to specify the Policy Group. -
Add Permalink to output when publishing a Policy Pack.
-
Add
pulumi policy lsandpulumi policy group lsto list Policy related resources. -
Add
BuildNumberto CI vars and backend metadata property bag for CI systems that have separate ID and a user-friendly number. #3766 -
Breaking changes for the Go SDK. Complete details are in #3506.
- Fix a panic in
pulumi stack select. #3687
-
Update version of TypeScript used by Pulumi to
3.7.3. #3627 -
Add support for GOOGLE_CREDENTIALS when using Google Cloud Storage backend. #2906
export GOOGLE_CREDENTIALS="$(cat ~/service-account-credentials.json)" pulumi login gs://my-bucket
-
Support for using
Config,getProject(),getStack(), andisDryRun()from Policy Packs. #3612 -
Top-level Stack component in the .NET SDK. #3618
-
Add the .NET Core 3.0 runtime to the
pulumi/pulumicontainer. #3616 -
Add
pulumi previewsupport for--refresh,--target,--replace,--target-replaceand--target-dependentsto align withpulumi up. #3675 -
ComponentResources now have built-in support for asynchronously constructing their children. #3676 -
Output.apply(for the JS, Python and .Net sdks) has updated semantics, and will lift dependencies from inner Outputs to the returned Output. #3663 -
Fix bug in determining PRNumber and BuildURL for an Azure Pipelines CI environment. #3677
-
Improvements to
pulumi policyfunctionality. Add ability to remove & disable Policy Packs. -
Breaking change for Policy which is in Public Preview: Change
pulumi policy applytopulumi policy enable, and allow users to specify the Policy Group.
- Fix SxS issue introduced in 1.7.0 when assigning
Outputs across different versions of the@pulumi/pulumiSDK. #3658
-
A Pulumi JavaScript/TypeScript program can now consist of a single exported top level function. This allows for an easy approach to create a Pulumi program that needs to perform
async/awaitoperations at the top-level. #3321// JavaScript module.exports = async () => { } //TypeScript export = async () => { }
-
Support passing a parent and providers for
ReadResource,RegisterResource, andInvokein the go SDK. #3563 -
Fix go SDK ReadResource. #3581
-
Fix go SDK DeleteBeforeReplace. #3572
-
Support for setting the
PULUMI_PREFER_YARNenvironment variable to opt-in to usingyarninstead ofnpmfor installing Node.js dependencies. #3556 -
Fix regression that prevented relative paths passed to
--policy-packfrom working. #3565
-
Support for config.GetObject and related variants for Golang. #3526
-
Add support for IgnoreChanges in the go SDK. #3514
-
Support for a
go runstyle workflow. Building or installing a pulumi program written in go is now optional. #3503 -
Re-apply "propagate resource inputs to resource state during preview, including first-class unknown values." The new set of changes have additional fixes to ensure backwards compatibility with earlier code. This allows the preview to better estimate the state of a resource after an update, including property values that were populated using defaults calculated by the provider. #3327
-
Validate StackName when passing a non-default secrets provider to
pulumi stack init -
Add support for go1.13.x
-
pulumi update --targetandpulumi destroy --targetwill both error if they determine a dependent resource needs to be updated, destroyed, or created that was not was specified in the--targetlist. To proceed with anupdate/destroyafter this error, either specify all the reported resources as--targets, or pass the--target-dependentsflag to allow necessary changes to unspecified dependent targets. -
Support for node 13.x, building with gcc 8 and newer. [#3512] (pulumi#3512)
-
Codepaths which could result in a hang will print a message to the console indicating the problem, along with a link to documentation on how to restructure code to best address it.
StackReference.getOutputSyncandrequireOutputSyncare deprecated as they may cause hangs on some combinations of Node and certain OS platforms.StackReference.getOutputandrequireOutputshould be used instead.
-
pulumi policy publishnow determines the Policy Pack name from the Policy Pack, and the theorg-nameCLI argument is now optional. If not specified; the current user account is used. #3459 -
Refactor the Output API in the Go SDK. #3496
- Include the .NET language provider in the Windows SDK.
-
Gracefully handle errors when resources use duplicate aliases.
-
Use the update token for renew_lease calls and update the API version to 5. #3348
-
Improve startup time performance by 0.5-1s by checking for a newer CLI release in parallel. #3441
-
Add an experimental
pulumi watchcommand. #3391
-
Adds a preview of .NET support for Pulumi. This code is an preview state and is subject to change at any point.
-
Fix another colorizer issue that could cause garbled output for messages that did not end in colorization tags. #3417
-
Verify deployment integrity during import and issue an error if verification fails. The state file can still be imported by passing the
--forceflag. #3422 -
Omit unknowns in resources in stack outputs during preview. #3427
-
pulumi updatecan now be instructed that a set of resources should be replaced by adding a--replace urnargument. Multiple resources can be specified using--replace urn1 --replace urn2. In order to replace exactly one resource and leave other resources unchanged, invokepulumi update --replace urn --target urn, orpulumi update --target-replace urnfor short. #3418 -
pulumi stacknow renders the stack as a tree view. #3430 -
Support for lists and maps in config. #3342
-
ResourceProvider#StreamInvokeimplemented, will be the basis for streaming APIs inpulumi query. #3424
-
FileAssetin the Python SDK now accepts anything implementingos.PathLikein addition tostr. #3368 -
Fix colorization on Windows 10, and fix a colorizer bug that could cause garbled output for resources with long status messages. #3385
- Remove unintentional console outupt introduced in 1.3.3.
- Fix an issue with first-class providers introduced in 1.3.2.
-
Fix hangs and crashes related to use of
getResource(i.e.aws.ec2.getSubnetIds(...)) methods, including frequent hangs on Node.js 12. This fixes pulumi#3260) and hangs.Some less common existing styles of using
getResourcecalls are also deprecated as part of this change, and users should see https://www.pulumi.com/docs/troubleshooting/#synchronous-call for details on adjusting their code if needed.
- Revert "propagate resource inputs to resource state during preview". These changes had a critical issue that needs further investigation.
-
Propagate resource inputs to resource state during preview, including first-class unknown values. This allows the preview to better estimate the state of a resource after an update, including property values that were populated using defaults calculated by the provider. #3245
-
Fetch version information from the Homebrew JSON API for CLIs installed using
brew. #3290 -
Support renaming stack projects via
pulumi stack rename. #3292 -
Add
helmtopulumi/pulumiDockerhub container #3294 -
Make the location of
.pulumifolder configurable with an environment variable. #3300 (Fixes #2966) -
pulumi updatecan now be scoped to update a single resource by adding a--target urnor-t urnargument. 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
-
Add resource transformations support in Python. #3319
-
Support emitting high-level execution trace data to a file and add a debug-only command to view trace data. #3238
-
Fix parsing of GitLab urls with subgroups. #3239
-
pulumi refreshcan now be scoped to refresh a subset of resources by adding a--target urnor-t urnargument. Multiple resources can be specified using-t urn1 -t urn2. -
pulumi destroycan now be scoped to delete a single resource (and its dependents) by adding a--target urnor-t urnargument. 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
-
Add Codefresh CI detection.
-
Add
-c(config array) flag to thepreviewcommand.
-
Fix a bug that caused the Python runtime to ignore unhandled exceptions and erroneously report that a Pulumi program executed successfully. #3170
-
Read operations are no longer considered changes for the purposes of
--expect-no-changes. #3197 -
Increase the MaxCallRecvMsgSize for interacting with the gRPC server. #3201
-
Do not ask for a passphrase in non-interactive sessions (fix #2758). #3204
-
Support combining the filestate backend (local or remote storage) with the cloud-backed secrets providers (KMS, etc.). #3198
-
Moved
@pulumi/pulumito targetes2016instead ofes6. As@pulumi/pulumiprograms run inside Nodejs, this should not change anything externally as Nodejs already provides es2016 support. Internally, this makes more APIs available for@pulumi/pulumito use in its implementation. -
Fix the --stack option of the
pulumi newcommand. (#3131 fixes #2880)
- No significant changes.
-
Print a Welcome to Pulumi message for users during interactive logins to the Pulumi CLI. #3145
-
Filter the list of templates shown by default during
pulumi new. #3147
-
Fix a crash when using StackReference from the
1.0.0-beta.3version of@pulumi/pulumiand1.0.0-beta.2or earlier of the CLI. -
Allow Un/MashalProperties to reject Asset and AssetArchive types. (partial fix for pulumi/pulumi-kubernetes#737)
-
When using StackReference to fetch output values from another stack, do not mark a value as secret if it was not secret in the stack you referenced. (fixes #2744).
-
Allow resource IDs to be changed during
pulumi refreshoperations -
Do not crash when renaming a stack that has never been updated, when using the local backend. (fixes #2654)
-
Fix intermittet "NoSuchKey" issues when using the S3 based backend. (fixes #2714).
-
Support filting stacks by organization or tags when using
pulumi stack ls. (fixes #2712, #2769 -
Explicitly setting
deleteBeforeReplacetofalsenow overrides the provider's decision. #3118 -
Fail read steps (e.g. the step generated by a call to
aws.s3.Bucket.get()) if the requested resource does not exist. #3123
- Fix the package version compatibility checks in the NodeJS language host. #3083
-
Do not propagate input properties to missing output properties during preview. The old behavior can cause issues that are difficult to diagnose in cases where the actual value of the output property differs from the value of the input property, and can cause
applys to run at unexpected times. If this change causes issues in a Pulumi program, the original behavior can be enabled by setting thePULUMI_ENABLE_LEGACY_APPLYenvironment variable totrue. -
Fix a bug in the GitHub Actions program preventing errors from being rendered in the Actions log on github.com. #3036
-
Fix a bug in the Node.JS SDK that caused failure details for provider functions to go unreported. #3048
-
Fix a bug in the Python SDK that caused crashes when using asynchronous data sources. #3056
-
Fix crash when exporting secrets from a pulumi app #2962
-
Fix a panic in logger when a secret contains non-printable characters #3074
-
Check the uniqueness of the project name during pulumi new #3065
-
Retry renaming a temporary folder during plugin installation #3008
-
Add support for additional Pulumi secrets providers using AWS KMS, Azure KeyVault, Google Cloud KMS and HashiCorp Vault. These secrets providers can be configured at stack creation time using
pulumi stack init b --secrets-provider="awskms://alias/LukeTesting?region=us-west-2", and ensure that all encrypted data associated with the stack is encrypted using the target cloud platform encryption keys. This augments the previous choice between using the app.pulumi.com-managed secrets encryption or a fully-client-side local passphrase encryption. #2994 -
Add
Output.concatto Python SDK #3006 -
Add
requireOutputtoStackReference#3007 -
Arbitrary values can now be exported from a Python app. This includes dictionaries, lists, class instances, and the like. Values are treated as "plain old python data" and generally kept as simple values (like strings, numbers, etc.) or the simple collections supported by the Pulumi data model (specifically, dictionaries and lists).
-
Fix
get_secretin Python SDK always returning None. -
Make
pulumi.runtime.invokesynchronous in the Python SDK #3019 -
Fix a bug in the Python SDK that caused input properties that are coroutines to be awaited twice. #3024
- Deprecated functions in
@pulumi/pulumiwill now issue warnings if you call them. Please migrate off of these functions as they will be removed in a future release. The deprecated functions are.function computeCodePaths(extraIncludePaths?: string[], ...). Use thecomputeCodePathsoverload that takes aCodePathOptionsinstead.function serializeFunctionAsync. Please useserializeFunctioninstead.
-
Fix an error message from the logging subsystem which was introduced in v0.17.26 #2989
-
Add support for property paths in
ignoreChanges, and passignoreChangesto providers #3005. This allows differences between the actual and desired state of the resource that are not captured by differences in the resource's inputs to be ignored (including differences that may occur due to resource provider bugs).
-
Add
get_object,require_object,get_secret_objectandrequire_secret_objectAPIs to Pythonconfigmodule #2959 -
Fix unexpected provider replacements when upgrading from older CLIs and older providers pulumi/pulumi-kubernetes#645
-
Add Python support for renaming resources via the
aliasesresource option. Adding aliases allows new resources to match resources from previous deployments which used different names, maintaining the identity of the resource and avoiding replacements or re-creation of the resource. This was previously added to the JavaScript sdk in 0.17.15. #2974
- Support for Dynamic Providers in Python #2900
- Fix a crash when two different versions of
@pulumi/pulumiare used in the same Pulumi program #2942
-
pulumi newallows specifying a local path to templates (resolves #2672) -
Fix an issue where a file archive created on Windows would contain back-slashes #2784
-
Fix an issue where output values of a resource would not be present when they contained secret values, when using Python.
-
Fix an issue where emojis are printed in non-interactive mode. (fixes #2871)
-
Promises/Outputs can now be directly exported as the top-level (i.e. not-named) output of a Stack. (fixes #2910)
-
Add support for importing existing resources to be managed using Pulumi. A resource can be imported by setting the
importproperty in the resource options bag when instantiating a resource. In order to successfully import a resource, its desired configuration (i.e. its inputs) must not differ from its actual configuration (i.e. its state) as calculated by the resource's provider. -
Better error message for missing npm on
pulumi new(fixes #1511) -
Add the ability to pass a customTimeouts object from the providers across the engine to resource management. (fixes #2655)
- Defer to resource providers in all cases where the engine must determine whether or not a resource
has changed. Note that this can expose bugs in the resources providers that cause diffs to be
present even if the desired configuration matches the actual state of the resource: in these cases,
users can set the
PULUMI_ENABLE_LEGACY_DIFFenvironment variable to1ortrueto enable the old diff behavior. pulumi#2971 lists the known provider bugs exposed by these changes and links to appropriate workarounds or tracking issues.
- Improve update performance in cases where a large number of log messages are reported during an update.
-
Python SDK fix for a crash resulting from a KeyError if secrets were used in configuration.
-
Fix an issue where a secret would not be encrypted in the state file if it was a property of a resource which was used as a stack output (fixes #2862)
- SDK fix for crash that could occasionally happen if there were multiple identical aliases to the same Resource.
- Engine fix for crash that could occasionally happen if there were multiple identical aliases to the same Resource.
-
Allow setting backend URL explicitly in
Pulumi.yamlfile -
StackReferencenow has a.getOutputSyncfunction to retrieve exported values from an existing stack synchronously. This can be valuable when creating another stack that wants to base flow-control off of the values of an existing stack (i.e. importing the information about all AZs and basing logic off of that in a new stack). Note: this only works for importing values from Stacks that have not exportedsecrets. -
When the environment variable
PULUMI_TEST_MODEis set totrue, the Python runtime will now behave as ifpulumi.runtime.settings._set_test_mode_enabled(True)had been called. This mirrors the behavior for NodeJS programs (fixes #2818). -
Resources that are only 'read' will no longer be displayed in the terminal tree-display anymore. These ended up heavily cluttering the display and often meant that programs without updates still showed a bunch of resources that weren't important. There will still be a message displayed indicating that a 'read' has happened to help know that these are going on and that the program is making progress.
- docs(login): escape codeblocks, and add object store state instructions #2810
- The API for passing along a custom provider to a ComponentResource has been simplified. You can
now just say
new SomeComponentResource(name, props, { provider: awsProvider })instead ofnew SomeComponentResource(name, props, { providers: { "aws" : awsProvider } }) - Fix a bug where the path provided to a URL in
pulumi loginis lost are dropped, so if youpulumi login s3://bucketname/afolder, the Pulumi files will be inside ofs3://bucketname/afolder/.pulumirather thans3://bucketname/.pulumi(thanks, @bigkraig!). NOTE: If you have been logging in to the s3 backend with a path after the bucket name, you will need to either move the .pulumi folder in the bucket to the correct location or log in again without the path prefix to see your previous stacks. - Fix a crash that would happen if you ran
pulumi stack outputagainst an empty stack (fixes pulumi/pulumi#2792). - Unparented Pulumi
CustomResources now support calling.getProvider(...)on them.
- Fixed a bug that caused an assertion when dealing with unchanged resources across version upgrades.
- Pulumi now allows Python programs to "read" existing resources instead of just creating them. This feature enables Pulumi Python packages to expose ".get()" methods that allow for reading of resources that already exist.
- Support for referencing the outputs of other Pulumi stacks has been added to the Pulumi Python libraries via the
StackReferencetype. - Add CI system detection for Bitbucket Pipelines.
- Pulumi now tolerates changes in default providers in certain cases, which fixes an issue where users would see unexpected replaces when upgrading a Pulumi package.
- Add support for renaming resources via the
aliasesresource option. Adding aliases allows new resources to match resources from previous deployments which used different names, maintaining the identity of the resource and avoiding replacements or re-creation of the resource. pulumi plugin installgained a new optional argument--serverwhich can be used to provide a custom server to be used when downloading a plugin.
pulumi refreshnow tries to install any missing plugins automatically likepulumi destroyandpulumi updatedo (fixes pulumi/pulumi#2669).pulumi whoaminow outputs the URL of the currently connected backend.- Correctly suppress stack outputs when serializing previews to JSON, i.e.
pulumi preview --json --suppress-outputs. Fixes pulumi/pulumi#2765.
- Fix an issue where creating a first class provider would fail if any of the configuration values for the providers were secrets. (fixes pulumi/pulumi#2741).
- Fix an issue where when using
--diffor looking at details for a proposed updated, the CLI might print text like:<{%reset%}> --outputs:--<{%reset%}>instead of just--outputs:--. - Fixes local login on Windows. Specifically, windows local paths are properly understood and
backslashes
\are not converted to__5c__in paths. - Fix an issue where some operations would fail with
error: could not deserialize deployment: unknown secrets provider type. - Fix an issue where pulumi might try to replace existing resources when upgrading to the newest version of some resource providers.
- Pulumi now tells you much earlier when the
--secrets-providerargument toupinitornewhas the wrong value. In addition, supported values are now listed in the help text. (fixes pulumi/pulumi#2727). - Pulumi no longer prompts for your passphrase twice during operations when you are using the passphrase based secrets provider. (fixes pulumi/pulumi#2729).
- Fix an issue where complex inputs to a resource which contained secret values would not be stored correctly.
- Fix a panic during property diffing when comparing two secret arrays.
-
The Pulumi engine and Python and NodeJS SDKs now have support for tracking values as "secret" to ensure they are encrypted when being persisted in a state file.
[pulumi/pulumi#397](https://github.com/pulumi/pulumi/issues/397)Any existing value may be turned into a secret by calling
pulumi.secret(<value>)(NodeJS) orOutput.secret(<value>) (Python). In both cases, the returned value is an output which may be passed around like any other. If this value flows into a resource, the plaintext will not be stored in the state file, but instead It will be encrypted, just like values added to config withpulumi config set --secret.You can verify that values are being stored as you expect by running
pulumi stack export, When values are encrypted in the state file, they appear as an object with a special signature key and a ciphertext property.When outputs of a stack are secrets,
pulumi stack outputwill show[secret]as the value, by default. You can pass--show-secretstopulumi stack outputin order to see the actual raw value. -
When storing state with the Pulumi Service, you may now elect to use the passphrase based encryption for both secret configuration values and values that are encrypted in a state file. To use this new feature, pass
--secrets-provider passphrasetopulumi neworpulumi stack initwhen you initally create the stack. When you create the stack, you will be prompted for a passphrase (or ifPULUMI_CONFIG_PASSPHRASEis set, it will be used). This passphrase is used to generate a unique key for your stack, and config values and encrypted state values are encrypted using AES-256-GCM. The key is derived from your passphrase, and while information to re-create it when provided with your passphrase is stored in both thePulumi.<stack-name>.yamlfile and the state file for your stack, this information can not be used to recover the key. When using this mode, the Pulumi Service is unable to decrypt either your secret configuration values or and secret values in your state file.We will be adding gestures to move existing stacks managed by the service to use passphrase based encryption soon as well as gestures to change the passphrase for an existing stack.
** Note **
Stacks with encrypted secrets in their state files can only be managed by 0.17.11 or later of the CLI. Attempting to use a previous version of the CLI with these stacks will result in an error.
Fixes #397
- Add support for Azure Pipelines in CI environment detection.
- Minor fix to how Azure repository information is extracted to allow proper grouping of Azure repositories when various remote URLs are used to pull the repository.
- Fixes issue introduced in 0.17.9 where local-login broke on Windows due to the new support for
s3://,azblob://andgs://save locations. - Minor contributing document improvement.
- Warnings from
npmabout missing description, repository, and license fields in package.json are now suppressed whennpm installis run frompulumi new(vianpm install --loglevel=error). - Depend on newer version of gRPC package in the NodeJS SDK. This version has
prebuilt binaries for Node 12, which should make installing
@pulumi/pulumimore reliable when running on Node 12.
pulumi loginnow supportss3://,azblob://andgs://paths (on top offile://) for storing stack information. These are passed the location of a desired bucket for each respective cloud provider (i.e.pulumi login s3://mybucket). Pulumi artifacts (like thexxx.checkpoint.jsonfile) will then be stored in that bucket. Credentials for accessing the bucket operate in the normal manner for each cloud provider. i.e. for AWS this can come from the environment, or your.aws/credentialsfile, etc.- The pulumi version update check can be skipped by setting the environment variable
PULUMI_SKIP_UPDATE_CHECKto1ortrue. - Fix an issue where the stack would not be selected when an existing stack is specified when running
pulumi new <template> -s <existing-stack>. - Add a
--jsonflag (-jfor short) to thepreviewcommand. This allows basic serialization of a plan, including the anticipated set of deployment steps, list of diagnostics messages, and summary information. Each step includes deeply serialized information about the resource state and step metadata itself. This is part of ongoing work tracked in pulumi/pulumi#2390.
- Add a new
ignoreChangesoption to resource options to allow specifying a list of properties to ignore for purposes of updates or replacements. #2657 - Fix an engine bug that could lead to incorrect interpretation of the previous state of a resource leading to unexpected Update, Replace or Delete operations being scheduled. [#2650]pulumi#2650)
- Build/push
pulumi/actionscontainer to DockerHub with new SDK releases #2646
- A new "test mode" can be enabled by setting the
PULUMI_TEST_MODEenvironment variable totruein either the Node.js or Python SDK. This new mode allows you to unit test your Pulumi programs using standard test harnesses, without needing to run the program using the Pulumi CLI. In this mode, limited functionality is available, however basic resource object allocation with input properties will work. Note that no actual engine operations will occur in this mode, and that you'll need to use thePULUMI_CONFIG,PULUMI_NODEJS_PROJECT, andPULUMI_NODEJS_STACKenvironment variables to control settings the CLI would have otherwise managed for you.
refreshwill now warn instead of returning an error when it notices a resource is in an unhealthy state. This is in service of pulumi#2633.
- Correctly handle the case where we would fail to detect an archive type if the filename included a dot in it. (fixes pulumi/pulumi#2589)
- Make
Config's constructor'snameargument optional in Python, for consistency with our Node.js SDK. If it isn't supplied, the current project name is used as the default. pulumi logswill now display log messages from Google Cloud Functions.
- Don't print the
error:prefix when Pulumi exists because of a declined confirmation prompt (fixes pulumi/pulumi#458) - Fix issue where
Outputsproduced bypulumi.interpolatemight have values which could cause validation errors due to them containing the text<computed>during previews.
- A new command,
pulumi stack renamewas added. This allows you to change the name of an existing stack in a project. Note: When a stack is renamed, thepulumi.getStackfunction in the SDK will now return a new value. If a stack name is used as part of a resource name, the nextpulumi upwill 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 havepulumi upcreate 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.
- Show
brew upgrade pulumias the upgrade message when the currently runningpulumiexecutable is running on macOS from the brew install directory. - Resource diffs that are rendered to the console are now filtered to properties that have semantically-meaningful changes where possible.
pulumi newno longer runs an initial deployment after a project is generated for nodejs projects. Instead, instructions are printed indicating thatpulumi upcan be used to deploy the project.- Differences between the state of a refreshed resource and the state described in a Pulumi program are now properly detected when using newer providers.
- Differences between a resource's provider-internal properties are no longer displayed in the CLI.
- Pulumi will now install missing plugins on startup. Previously, Pulumi would error if a required plugin was not present and a bug in the Pulumi CLI made it common for users using Pulumi in their continuous integration setup to have problems with missing plugins. Starting with 0.17.2, if Pulumi detects that required plugins are missing, it will make an attempt to install the missing plugins before proceeding with the update.
- Slight tweak to
Output.applysignature to help TypeScript infer types better.
This update includes several changes to core @pulumi/pulumi constructs that will not play nicely
in side-by-side applications that pull in prior versions of this package. As such, we are rev'ing
the minor version of the package from 0.16 to 0.17. Recent version of pulumi will now detect,
and warn, if different versions of @pulumi/pulumi are loaded into the same application. If you
encounter this warning, it is recommended you move to versions of the @pulumi/... packages that
are compatible. i.e. keep everything on 0.16.x until you are ready to move everything to 0.17.x.
Output<T>now 'lifts' property members from the value it wraps, simplifying common coding patterns. For example:
interface Widget { text: string, x: number, y: number };
var v: Output<Widget>;
var widgetX = v.x;
// `widgetX` has the type Output<number>.
// This is equivalent to writing `v.apply(w => w.x)`Note: this 'lifting' only occurs for POJO values. It does not happen for Output<Resource>s.
Similarly, this only happens for properties. Functions are not lifted.
- Depending on a Component Resource will now depend on all other Resources parented by that Resource. This will help out the programming model for Component Resources as your consumers can just depend on a Component and have that automatically depend on all the child Resources created by that Component. Note: this does not apply to a Custom resource. Depending on a CustomResource will still only wait on that single resource being created, not any other Resources that consider that CustomResource to be a parent.
- Rolled back change where calling toString/toJSON on an Output would cause a message
to be logged to the
pulumidiagnostics stream.
- Fix an issue where the Pulumi CLI would load the newest plugin for a resource provider instead of the version that was
requested, which could result in the Pulumi CLI loading a resource provider plugin that is incompatible with the
program. This has the potential to disrupt users that previously had working configurations; if you are experiencing
problems after upgrading to 0.16.17, you can opt-in to the legacy plugin load behavior by setting the environnment
variable
PULUMI_ENABLE_LEGACY_PLUGIN_SEARCH=1. You can also install plugins that are missing with the commandpulumi plugin install resource <name> <version> --exact.
-
Attempting to convert an [Output] to a string or to JSON will now result in a warning message being printed, as well as information on how to rectify the situation. This is to help with diagnosing cryptic problems that can occur when Outputs are accidentally concatenated into a string in some part of the program.
-
Fixes incorrect closure serialization issue (pulumi#2497)
-
pulumiwill now check that all versions of@pulumi/pulumiare compatible in your node_modules folder, and will issue a warning message if not. To be compatible, the versions of@pulumi/pulumimust agree on their major and minor versions. Running incompatible versions is not something that will be blocked, but it is discouraged as it may lead to subtle problems if one version of@pulumi/pulumiis loaded and passes objects to/from an incompatible version.
-
Rolling back the change: "Depending on a Resource will now depend on all other Resource's parented by that Resource."
Unforeseen problems cropped up that caused deadlocks. Removing this change until we can have a high quality solution without these issues.
- Fix deadlock with resource dependencies (pulumi#2470)
- When trying to
stack rma stack managed by pulumi.com that has resources, the error message now informs you to pass--forceif you really want to remove a stack that still has resources under management, as this would orphan these resources (fixes pulumi/pulumi#2431). - Enabled Python programs to delete resources in parallel (fixes pulumi/pulumi#2382). If you are using Python 2, you should upgrade to Python 3 or else you may experience problems when deleting resources.
- Fixed an issue where Python programs would occasionally fail during preview with errors about empty IDs being passed to resources. (pulumi/pulumi#2450)
- Return an error from
pulumi stack tagcommands when using the--localmode. - Depending on a Resource will now depend on all other Resource's parented by that Resource. This will help out the programming model for Component Resources as your consumers can just depend on a Component and have that automatically depend on all the child Resources created by that Component.
- Fix a regression in
@pulumi/pulumiintroduced by 0.16.13 where an update could fail with an error like:
Diagnostics:
pulumi:pulumi:Stack (my-great-stack):
TypeError: resproto.InvokeRequest is not a constructor
at Object.<anonymous> (.../node_modules/@pulumi/pulumi/runtime/invoke.js:58:25)
at Generator.next (<anonymous>)
at fulfilled (.../node_modules/@pulumi/pulumi/runtime/invoke.js:17:58)
at <anonymous>
We appologize for the regression. (fixes pulumi/pulumi#2414)
- Individual resources may now be explicitly marked as requiring delete-before-replace behavior. This can be used e.g. to handle explicitly-named resources that may not be able to be replaced in the usual manner.
- When used in conjunction with the latest versions of the various language SDKs, the Pulumi CLI is now more precise about the dependent resources that must be deleted when a given resource must be deleted before it can be replaced (fixes pulumi/pulumi#2167).
NOTE: As part of the above change, once a stack is updated with v0.16.13, previous versions of pulumi will be unable to manage it.
- Issue a more prescriptive error when using StackReference and the name of the stack to reference is not of the form
<organization>/<project>/<stack>.
- When using the cloud backend, stack names now must only be unique within a project, instead of across your entire account. Starting with version of 0.16.12 the CLI, you can create stacks with duplicate names. If an account has multiple stacks with the same name across different projects, you must use 0.16.12 or later of the CLI to manage them.
BREAKING CHANGE NOTICE: As part of the above change, when using the 0.16.12 CLI (or a later version) the names passed to StackReference must be updated to be of the form (<organization>/<project>/<stack>) e.g. acmecorp/infra/dev to refer to the dev stack of the infra project in the acmecorp organization.
-
Add
--jsontopulumi config,pulumi config get,pulumi historyandpulumi plugin lsto request the output be in JSON. -
Changes to
pulumi new's output to improve the experience.
-
In the nodejs SDK,
pulumi.interpolateandpulumi.concathave been added as convenient ways to combine Output values into strings. -
Added
pulumi historyto show information about the history of updates to a stack. -
When creating a project with
pulumi newthe generatedPulumi.yamlfile no longer contains the template section, which was unused after creating a project -
In the Python SDK, the
is_dry_runfunction just always returnedtrue, even when an update (and not a preview) was being preformed. This has been fixed. -
Python programs will no longer deadlock due to exceptions in functions run during applies.
-
Support for first-class providers in Python.
-
Fix a bug where
StackReferenceoutputs were not updated when changes occured in the referenced stack. -
Added
pulumi stack tagcommands for managing stack tags stored in the cloud backend. -
Link directly to /account/tokens when prompting for an access token.
-
Exporting a Resource from an application Stack now exports it as a rich recursive pojo instead of just being an opaque URN (fixes pulumi#1858).
-
Update the error message when When
pulumicommands fail to detect your project to mention thatpulumi newcan be used to create a new project (fixes pulumi/pulumi#2234) -
Added a
--stackargument (short form-s) topulumi stack,pulumi stack init,pulumi state deleteandpulumi state unprotectto allow operating on a different stack than the currently selected stack. This brings these commands in line with the other commands that operate on stacks and already provided a--stackoption (fixes pulumi/pulumi#1648) -
Added
Output.allandOutput.from_inputto the Python SDK. -
During previews and updates, read operations (i.e. calls to
.getmethods) are no longer shown in the output unless they cause any changes. -
Fix a performance regression where
pulumi previewandpulumi upwould hang for a few moments at the end of a preview or update, in addition to the overall operation being slower.
- Fix an issue that caused panics due to shutting the Jaeger tracing infrastructure down before all traces had finished (pulumi/pulumi#1850)
-
Configuration and stack commands now take a
--config-fileoptions. This option allows the user to override the file used to fetch and store config information for a stack during the execution of a command. -
Fix an issue where ANSI escape codes would appear in messages printed from the CLI when running on Windows.
-
Fix an error about a bad icotl when trying to read sensitive input from the console and standard in was not connected to a terminal.
-
The dynamic provider would fail to launch if your
node_modulesfolder was non in the default location or had a non standard layout. This has been fixed so we correctly find yournode_modulesfolder in the same way node does. (fixes pulumi/pulumi#2261)
- When running a Python program, pulumi will now run
python3instead ofpython, sincepythonoften points at Python 2.7 binary, and Pulumi requires Python 3.6 or later. The environment variablePULUMI_PYTHON_CMDcan be used to provide a different binary to run.
-
Allow
Outputs in the dependsOn property ofResourceOptions(fixes pulumi/pulumi#991) -
Add a new
StackReferencetype to the node SDK which allows referencing an output of another stack (fixes pulumi/pulumi#109) -
Fix an issue where
pulumiwould not respect commonNO_PROXYsettings (fixes pulumi/pulumi#2134) -
The CLI wil now correctly report any output from a Python program which writes to
sys.stderr(fixes pulumi/pulumi#1542) -
Don't install packages by default for Python projects when creating a new project from a template using
pulumi new. Previously,pulumiwould install these packages usingpip installand they would be installed globally whenpulumiwas run outside a virtualenv. -
Fix an issue where
pulumicould panic during a peview when using a first class provider which was constructed using an output property of another resource (fixes pulumi/pulumi#2223) -
Fix an issue where
pulumiwould fail to load resource plugins for newer dev builds. -
Fix an issue where running two copies of
pulumi plugin installin parallel for the same plugin version could cause one to fail with an error about renaming a directory. -
Fix an issue where if the directory containing the
pulumiexecutable was not on the$PATHwe would fail to load language plugins. We now will also search next to the current running copy of Pulumi (fixes pulumi/pulumi#1956) -
Fix an issue where passing a key of the form
foo:config:bar:baztopulumi config setwould succeed but cause errors later when trying to interact with the stack. Setting this value is now blocked eagerly (fixes pulumi/pulumi#2171)
- Fix an issue where
pulumi plugin installwould fail on Windows with an access deined message.
- If you're using Pulumi with Python, this release removes Python 2.7 support in favor of Python 3.6 and greater. In addition, some members have been renamed. For example the
stack_outputfunction has been renamed toexport. All major features of Pulumi work with this release, including parallelism!
-
Download plugins to a temporary folder during
pulumi plugin installto ensure if the operation is canceled, the have downloaded plugin is not used. -
If an update is in progress when
pulumi stack lsis run, don't show its last update time as "a long time ago". -
Add
--preserve-configtopulumi stack rmwhich causes Pulumi to keep thePulumi.<stack-name>.yamlwhen removing a stack. -
Support passing template names to
pulumi upthe same aspulumi newdoes. -
When
-gor--generate-onlyis passed topulumi new, don't show a confusing message that says it will update a stack. -
Fix an issue where an output property of a resource would change its type during an update in some cases.
-
Provide richer detail on the properties during a multi-stage replace.
-
Fix
pulumi logsso it can collect log messages from Lambdas on AWS. -
Pulumi now reports metadata during CI runs on CircleCI, for later display on app.pulumi.com.
-
Fix an assert that could fire if a checkpoint had multiple resources with the same URN (which could happen in cases where a delete operation was pending on an old copy of a resource).
-
When
$TERMis set todumb, Pulumi should no longer try to use interactive reading from the terminal, which would fail. -
When displaying elapsed time for an update, round to the nearest second.
-
Add the
--jsonflag to thepulumi logscommand. -
Add an
iterablemodule to@pulumi/pulumiwith two helpful combinatorstoObjectandgroupByto help combine multipleOutput<T>'s into a single object. -
Pulumi no longer prompts you for confirmation when
--skip-previewis passed topulumi up. Instead, it just preforms the update as requested. -
Add the
--jsonflag to thepulumi stack lscommand. -
The
--color=alwaysflag should now be respected in all cases. -
Pulumi now reports metadata about GitLab repositories when doing an update, so they can be shown on app.pulumi.com.
-
Pulumi now uses compression when uploading your checkpoint file to the Pulumi service, which should speed up updates where your stack has many resources.
-
"First Class" providers used to be shown as changing during previews. This is no longer the case.
- Fully support Node 11 pulumi/pulumi#2101
-
Fix a regression that would cause resource operations to not be processed in parallel when using the latest CLI with a
@pulumi/pulumiolder than 0.16.1 pulumi/pulumi#2123 -
Fail with a better error message (and in fewer cases) on Node 11. We hope to have complete support for Node 11 later this week, but for now recommend using Node 10 or earlier. pulumi/pulumi#2098
- A new top-level CLI command “pulumi state” was added to assist in making targeted edits to the state of a stack. Two subcommands, “pulumi state delete” and “pulumi state unprotect”, can be used to delete or unprotect individual resources respectively within a Pulumi stack. pulumi/pulumi#2024
- Default to allowing as many parallel operations as possible pulumi/pulumi#2065
- Fixed an issue with the generated type for an Unwrap expression when using TypeScript pulumi/pulumi#2061
- Improve error messages when resource plugins can't be loaded or when a checkpoint is invalid pulumi/pulumi#2078
- Fix link to the Pulumi Web Console in the CLI for a stack pulumi/pulumi#2075
- Attach git commit metadata to Pulumi updates in some additional cases pulumi/pulumi#2062 and pulumi/pulumi#2069
Default colors that fit better for both light and dark terminals. Overall updates to rendering of previews/updates for consistency and simplicity of the display.
Parallel resource creation and updates were added in 0.15. In 0.16, this has been extended to include deletions, which are now conservatively parallelized based on dependency information. pulumi/pulumi#1963
The Pulumi GitHub App previously supported just TravisCI. With this release the pulumi CLI now supports configurable CI providers via environment variables. Thanks @jen20!
In addition to the above features, we've made a handfull of day to day improvements in the CLI:
- Support for
zshcompletions. Thanks to @Tirke!) pulumi/pulumi#1967 - JSON formatting support for
pulumi stack output. pulumi/pulumi#2000 - Added a
Dockerfilefor the Pulumi CLI and development environment for use in hosted environments. - Many improvements for Go development. Thanks to @justone!. pulumi/pulumi#1954 pulumi/pulumi#1955 pulumi/pulumi#1965
- Extend
pulumi.outputto deeply unwrapInputs. This significantly simplifies working withInputswhen building Pulumi components. pulumi/pulumi#1915
- Fix an assert in display code when a resource property transitions from an asset to an archive or the other way around
- Improved performance of
pulumi stack ls - Fix build authoring so the dynamic provider works for the CLI built by Homebrew (thanks to @Tirke!)
Major features of this release include:
Providers are now able to register "ephmeral" update messages which are shown in the "Info" column in the CLI during an update, but which are not printed at the end of the update. The new version of the @pulumi/kubernetes package uses this when printing messages about resource initialization.
The local backend (which stores your deployment's state file locally, instead of on pulumi.com) has been improved. You can now use pulumi login --local or pulumi login file://<path-to-storage-root> to select the local backend and control where state files are stored. In addition, older versions of the CLI would behave slightly differently when using the local backend vs pulumi.com, for example, some operations would not show previews before running. This has been fixed. When using the local backend, updates print the on disk location of the checkpoint file that was written. The local backend is covered in more detail in here.
We've made a bunch of improvements in pulumi refresh. Some of these improve the UI during a refresh (for example, clarifying text about the underyling operations) as well fixing bugs with refreshing certain types of objects (for example CloudFront CDNs).
You can now pass a URL to a Git repository to pulumi up <url> to deploy a project without having to manage its source code locally. This works like pulumi new <url>, but configures and deploys the project from a temporary directory that will be cleaned up automatically after the update.
pulumi new now outputs an error when the current working directory (or directory specified explicitly via the --dir flag) is not empty. Additionally, pulumi new now runs a preview of an initial update at the end of its operation and asks if you would like to perform the update.
Both pulumi up and pulumi new now support -c flags for specifying config values as arguments (e.g. pulumi up <url> -c aws:region=us-east-1).
In addition to the above features, we've made a handfull of day to day improvements in the CLI:
- Support
pulumiin a projects in a Yarn workspaces. pulumi/pulumi#1893 - Improve error message when there are errors decrypting secret configuration values. pulumi/pulumi#1815
- Don't fail
pulumi upwhen plugin discovery fails. pulumi/pulumi#1745 - New helpers for extracting and validating values from
pulumi.Config. pulumi/pulumi#1843 - Support serializng "factory" functions. pulumi/pulumi#1804
Pulumi now performs resource creates and updates in parallel, driven by dependencies in the resource graph. (Parallel deletes are coming in a future release.) If your program has implicit dependencies that Pulumi does not already see as dependencies, it's possible parallel will cause ordering issues. If this happens, you may set the dependsOn on property in the resourceOptions parameter to any resource. By default, Pulumi allows 10 parallel operations, but the -p flag can be used to override this. -p=1 disables parallelism altogether. Parallelism is supported for Node.js and Go programs, and Python support will come in a future release.
Pulumi now allows creation and configuration of resource providers programmatically. In addition to the default provider instance for each resource, you can also create an explicit version of the provider and configure it explicitly. This can be used to create some resources in a different region from your main deployment, or deploy resources to a programmatically configured Kubernetes cluster, for example. We have a multi-region deployment example for illustrative purposes.
The Pulumi CLI is now able to report more detailed information from individual resources during an update. This is used, for instance, in the Kubernetes provider, to provide incremental progress output for steps that may take a while to comeplete (such as deployment orchestration). We anticipate leveraging this feature in more places over time.
You can now pass a URL to a Git repository to pulumi new to install a custom template, enabling you to share common templates across your team. If you pass a simple name, or omit arguments altogether, pulumi new behaves as before, using the templates hosted by Pulumi.
By default, Pulumi now natively supports TypeScript, so you do not need to run tsc explicitly before deploying. (We often forget to do this too!) Simply run pulumi up, and the program will be recompiled on the fly before running it.
To use this new support, upgrade your @pulumi/pulumi version to 0.15.0, in addition to the CLI. Pulumi prefers JavaScript source to TypeScript source, so if you had been using TypeScript previously, we recommend you make the following changes:
- Remove the
mainandtypingsdirectives frompackage.json, as well as thebuildscript. - Remove the
binfolder that contained your previously compiled code. - You may remove the dependency on
typescriptfrom yourpackage.jsonas well, since@pulumi/pulumihas one.
While a tsconfig.json file is no longer required, as Pulumi uses intelligent defaults, other tools like VS Code behave
better when it is present, so you'll probably want to keep it.
We've improved our closure capturing logic, which should allow you to write more idiomatic code in lambda functions that are uploaded to the cloud. Previously, if you wanted to use a module, we required you to write either require('module') or await import('module') inside your lambda function. In addition, if you wanted to use a helper you defined in another file, you had to require that module in your function as well. With these changes, the following code now works:
import * as axios from "axios";
import * as cloud from "@pulumi/cloud-aws";
const api = new cloud.API("api");
api.get("/", async (req, res) => {
const statusText = (await axios.default.get("https://www.pulumi.com")).statusText;
res.write(`GET https://www.pulumi.com/ == ${statusText}`).end();
});The pulumi.Config object can now be created without an argument. When no argument is supplied, the value of the current project is used. This means that application level code can simply do new pulumi.Confg() without passing any argument. For library authors, you should continue to pass the name of your package as an argument.
The Pulumi GitHub application bridges the gap between GitHub (source code, pull requests) and Pulumi (cloud resources, stack updates). By installing the Pulumi GitHub application into your GitHub organization, and then running Pulumi as part of your CI build process, you can now see the results of stack updates and previews as part of pull requests. This allows you to see the potential impact a change would have on your cloud infrastructure before merging the code.
The Pulumi GitHub application is still in preview as we work to support more CI systems and provide richer output. For information on how to install the GitHub application and configure it with your CI system, please visit our documentation page.
- The CLI no longer emits warnings if it can't detect metadata about your git enlistement (for example, what GitHub project it coresponds to).
- The CLI now only warns about adding a plaintext configuration in cases where it appears likely you may be storing a secret.
-
Support empty text assets (pulumi/pulumi#1599).
-
When printing message in non-interactive mode, do not keep printing out the worst diagnostic (pulumi/pulumi#1640). When run in non interactive environments (e.g. docker) Pulumi would print duplicate messages to the screen related to a resource when the running Pulumi program was writing to standard out (e.g. if it was invoking a docker build). This no longer happens. The full output from the program continues to be printed at the end of execution.
-
Work around a potentially bad assert in the engine (pulumi/pulumi#1640). In some cases, when Pulumi failed to delete a resource as part of an update, future updates would crash with an assert message. This is no longer the case and Pulumi will try to delete the resource it had marked as should be deleted.
-
Print out a 'still working' message every 20 seconds when in non-interactive mode (pulumi/pulumi#1616). When Pulumi is waiting for a long running resource operation to create (e.g. waiting for an ECS service to become stable after creation), print some output to the console even when running non-interactively. This helps for cases like TravsCI where if output is not written for a while the job is assumed to have hung and is aborted.
-
Support the NO_COLOR env variable to suppress any colored output (pulumi/pulumi#1594). Pulumi now respects the
NO_COLORenvironment variable. When set to a truthy value, colors are suppressed from the CLI. In addition, the--colorflag can now be passed to allpulumicommands.
- Support -s in
stack {export, graph, import, output}(pulumi/pulumi#1572).pulumi stack export,pulumi stack graph,pulumi stack importandpulumi stack outputnow support a-sor--stackflag, which allows them to operate on a different stack that the currently selected one.
- Add
pulumi whoami(pulumi/pulumi#1572).pulumi whoamiwill report the account name of the current logged in user. In addition, we now display the name of the current user afterpulumi login.
-
Don't require
PULUMI_DEBUG_COMMANDSto be set to use local backend (pulumi/pulumi#1575). -
Improve misleading
pulumi newsummary message (pulumi/pulumi#1571). -
Fix printing out outputs in a pulumi program (pulumi/pulumi#1531). Pulumi now shows the values of output properties after a
pulumi upinstead of requiring you to runpulumi stack output. -
Do a better job preventing serialization of unnecessary objects in closure serialization (pulumi/pulumi#1543). We've improved our analysis when serializing functions. This yeilds smaller code when a function is serialized and prevents errors around unused native code being captured in some cases.
-
Publish to pypi.org (pulumi/pulumi#1497). Pulumi packages are now public on pypi.org!
-
Add optional
--dirflag topulumi new(pulumi/pulumi#1459). Thepulumi newcommand now has an optional flag--dir, for the directory to place the generated project. If it doesn't exist, it will be created. -
Support Pulumi programs written in Go (pulumi/pulumi#1456). Initial version for Pulumi programs written in Go. While it is not complete, basic resource registration works.
-
Allow overriding config location (pulumi/pulumi#1379). Support a new
configmember inPulumi.yaml, which specifies a relative path to a folder where per-stack configuration is stored. The path is relative to the location ofPulumi.yamlitself. -
Delete existing resources before replacing, for resources that must be singletons (pulumi/pulumi#1365). For resources where the cloud vendor does not allow multiple resources to exist, such as a mount target in EFS, Pulumi now deletes the existing resource before creating a replacement resource.
-
Compute required packages during closure serialization (pulumi/pulumi#1457). Closure serialization now keeps track of the
require'd packages it sees in the function bodies that are serialized during a call toserializeFunction. So, only required packages are uploaded to Lambda. -
Support browser based logins to the CLI (pulumi/pulumi#1439). The Pulumi CLI now has an option to login via a browser. When you are prompted for an access token, you can just hit enter. The CLI then opens a browser to app.pulumi.com so that you can authenticate.
-
Support better previews in Python by mocking out Unknown values (pulumi/pulumi#1482). During the preview phase of a deployment, computed values were
Unknownin Python, causing the preview to be empty. This issue is now resolved. -
Issue a better error message if you capture a V8 intrinsic (pulumi/pulumi#1423). It's possible to accidentally take a dependency on a Pulumi deployment-time library, which causes problems when creating a runtime function for AWS Lambda. There is now a better error message when this situation occurs.
- Improve the promise leak experience (pulumi/pulumi#1374). Fixes an issue where a promise leak could be erroneously reported. Also, show simple error message by default, unless the environment variable
PULUMI_DEBUG_PROMISE_LEAKSis set.
-
A new all-in-one installer script is now available at https://get.pulumi.com.
-
Many enhancements to
pulumi new(pulumi/pulumi#1307). The command now interactively walks through creating everything needed to deploy a new stack, including selecting a template, providing a name, creating a stack, setting default configuration, and installing dependencies. -
Several improvements to the
pulumi upCLI experience (pulumi/pulumi#1260): a tree view display, more details from logs during deployments, and rendering of stack outputs at the end of updates.
- (Breaking) Remove the
--previewflag inpulumi up, in favor of reintroducingpulumi preview(pulumi/pulumi#1290). Also, to accept an update without the interactive prompt, use the--yesflag, rather than--force.
-
Significant performance improvements for
pulumi up(pulumi/pulumi#1319). -
JavaScript
asyncfunctions in Node 7.6+ now work with Pulumi function serialization (pulumi/pulumi#1311. -
Support installation on Windows in folders which contain spaces in their name (pulumi/pulumi#1300).
- Add a
pulumi cancelcommand (pulumi/pulumi#1230). This command cancels any in-progress operation for the current stack.
-
(Breaking) Eliminate
pulumi initrequirement (pulumi/pulumi#1226). Thepulumi initcommand is no longer required and should not be used for new stacks. For stacks created prior to the v0.12.0 SDK,pulumi initshould still be run in the project directory if you are connecting to an existing stack. For new projects, stacks will be created under the currently logged in account. After upgrading the CLI, it is necessary to runpulumi stack select, as the location of bookkeeping files has been changed. For more information, see Creating Stacks. -
(Breaking) Remove the explicit 'pulumi preview' command (pulumi/pulumi#1170). The
pulumi previewoutput has now been merged in to thepulumi upcommand. Before an update is run, the preview is shown and you can choose whether to proceed or see more update details. To see just the preview operation, runpulumi up --preview. -
Switch to a more streamlined view for property diffs in
pulumi up(pulumi/pulumi#1212). -
Allow multiple versions of the
@pulumi/pulumipackage to be loaded (pulumi/pulumi#1209). This allows packages and dependencies to be versioned independently.
-
When running a
pulumi upordestroyoperation, a single ctrl-c will cancel the current operation, waiting for it to complete. A second ctrl-c will terminate the operation immediately. (pulumi/pulumi#1231). -
When getting update logs, get all results (pulumi/pulumi#1220). Fixes a bug where logs could sometimes be truncated in the pulumi.com console.
-
Switch to a resource-progress oriented view for pulumi preview, update, and destroy operations (pulumi/pulumi#1116). The operations
pulumi preview,updateanddestroyhave far simpler output by default, and show a progress view of ongoing operations. In addition, there is a structured component view, showing a parent operation as complete only when all child resources have been created. -
Remove strict dependency on Node v6.10.x (pulumi/pulumi#1139). It is now no longer necessary to use a specific version of Node to run Pulumi programs. Node versions after 6.10.x are supported, as long as they are under Active LTS or are the Current stable release.
- (Breaking) Require
pulumi loginbefore commands that need a backend (pulumi/pulumi#1114). ThepulumiCLI now requires you to log in to pulumi.com for most operations.
- Improve the error message arising from missing required configurations for resource providers (pulumi/pulumi#1097). The error message now prints all missing configuration keys, along with their descriptions.
-
Add a
pulumi newcommand to scaffold a project (pulumi/pulumi#1008). Usage ispulumi new [templateName]. If template name is not specified, the CLI will prompt with a list of templates. Currently, the templatesjavascript,pythonandtypescriptare available. Templates are defined in the GitHub repo pulumi/templates and contributions are welcome! -
Python is now a supported language in Pulumi (pulumi/pulumi#800). For more information, see Python documentation.
-
(Breaking) Change the way that configuration is stored (pulumi/pulumi#986). To simplify the configuration model, there is no longer a separate notion of project and workspace settings, but only stack settings. The switches
--alland--saveare no longer supported; any common settings across stacks must be set on each stack directly. Settings for a stack are stored in a file that is a sibling toPulumi.yaml, namedPulumi.<stack-name>.yaml. On first runpulumi, will migrate projects from the previous configuration format to the new one. The recommended practice is that developer stacks that are not shared between team members should be added to.gitignore, while stack setting files for shared stacks should be checked in to source control. For more information, see the section Defining and setting stack settings. -
(Breaking) Eliminate the superfluous
:configpart of configuration keys (pulumi/pulumi#995).pulumino longer requires configuration keys to have the string:configin them. Using the:configstring in keys for the object@pulumi/pulumi.Configis deprecated andpreviewandupdateshow warnings when it is used. Additionally, it is preferred to set keys in the formaws:regionrather thanaws:config:region. For compatibility, the old behavior is also supported, but will be removed in a future release. For more information, see the article Configuration. -
(Breaking) Modules are treated as normal values when serialized (pulumi/pulumi#1030). If you need to use a module at runtime, consider either using
requireorawait importat runtime, or pre-compute what you need and capture the resulting data or objects.
-
(Breaking) Serialize resource registration after inputs resolve (pulumi/pulumi#964). Previously, resources were most often created/updated in the order they were seen during the Pulumi program execution. In preparation for supporting parallel resource operations, these operations now run in an order that respects the dependencies between resources (via
Output), but may not match the order of program execution. This is mostly transparent to Pulumi program authors, but does mean that any missing dependencies will cause your program to fail in unexpected ways. For more information on how such failures manifest and what to do about them, see the article Programming Model. -
Hide secrets from CLI output (pulumi/pulumi#1002). To prevent secret values from being accidentally disclosed in command output or logs,
pulumireplaces secret values with the string[secret]. Inspired by the behavior of Travis CI. -
Change default of where stacks are created (pulumi/pulumi#971). If currently logged in to the Pulumi CLI,
stack initcreates a managed stack; otherwise, it creates a local stack. To force a local or remote stack, use the flags--localor--remote.
-
Improve error messages output by the CLI (pulumi/pulumi#1011). RPC endpoint errors have been improved. Errors such as "catastrophic error" and "fatal error" are no longer duplicated in the output.
-
Produce better error messages when the main module is not found (pulumi/pulumi#976). If you're running TypeScript but have not run
tscor your main JavaScript file does not exist, the CLI will print a helpfulinfo:message that points to the possible source of the error.
Note: The v0.10.0 SDK has a strict dependency on Node.js 6.10.2.
-
Support "force" option when deleting a managed stack.
-
Add a
pulumi historycommand (pulumi#636). For a managed stack, use thepulumi historyto view deployments of that stack's resources.
-
(Breaking) Use
npm installinstead ofnpm linkto reference the Pulumi SDK@pulumi/aws,@pulumi/cloud,@pulumi/cloud-aws. For more information, see Pulumi npm packages. -
(Breaking) Explicitly track resource dependencies via
InputandOutputtypes. 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 typepulumi.Output<T>.Output<T>contains both the value of the resource property and metadata that tracks resource dependencies. Inputs to a resource now acceptOutput<T>in addition toTandPromise<T>.
- Managed stacks sometimes return a 500 error when requesting logs
- Error when using
float64attributes using SDK v0.9.9 (pulumi-terraform#95) pulumi logsentries only return first line (pulumi#857)
-
Added the ability to control the upload context to the Pulumi Service. You may now set a
contextproperty inPulumi.yaml, which is combined with the location ofPulumi.yaml. This new path is the root of what is uploaded and can be used during deployment. This allows you to, for example, share common code that is located in a folder in your source tree above the directoryPulumi.yamlfor the project you are deploying. -
Added additional configuration for docker builds for a container. The
buildproperty of a container may now either be a string (which is treated as a path to the folder to do adocker buildin) or an object with propertiescontext,dockerfileandargs, which are passed todocker build. If unset,contextdefaults to the current working directory,dockerfiledefaults toDockerfileandargsdefault to no arguments.
-
Added the ability to import or export a stack's deployment in the Pulumi CLI. This command can be used for either local or managed stacks. There are two new verbs under the command
stack:exportwrites the current stack's latest deployment to stdout in JSON format.importreads a new JSON deployment from stdin and applies it to the current stack.
-
A basic progress spinner is displayed during deployment operations.
- When the Pulumi CLI is run in interactive mode, it displays an animated ASCII spinner
- When run in non-interactive mode, CLI prints a message that it is still working. For CI systems that kill jobs when there is no CLI output (such as TravisCI), this eliminates the need to create shell scripts that periodically print output.
-
To make the behavior of local and managed stacks consistent, the Pulumi CLI uses a separate encryption key for each stack, rather than one shared for all stacks. You can now use a different passphrase for different stacks. Similar to managed stacks, you cannot copy and paste an encrypted value from one stack to another in
Pulumi.yaml. Instead you must manage the value viapulumi config. -
The default behavior for
--coloris nowalways. To change this, specify--color alwaysor--color never. Previously, the value was based on the presence of the flag--debug. -
The command
pulumi logsnow defaults to returning one hour of logs and outputs the start time that is used.
- When a stack is removed,
puluminow deletes any configuration it had saved in either thePulumi.yamlfile or the workspace.
New in this release is the Pulumi Console and stacks that are managed by Pulumi. This is the recommended way to safely deploy cloud applications.
pulumi stack initnow creates a Pulumi managed stack. For a local stack, use--local.- All Pulumi CLI commands now work with managed stacks. Login to Pulumi via
pulumi login. - The Pulumi Console provides a management experience for stacks. You can view the currently deployed resources (along with the AWS ARNs) and see logs from the last update operation.
-
Support for component resources(pulumi #340), enabling grouping of resources into logical components. This provides an improved view of resources during
previewandupdateoperations in the CLI (pulumi #417).+ pulumi:pulumi:Stack: (create) [urn=urn:pulumi:donna-testing::url-shortener::pulumi:pulumi:Stack::url-shortener-donna-testing] + cloud:table:Table: (create) [urn=urn:pulumi:donna-testing::url-shortener::cloud:table:Table::urls] + aws:dynamodb/table:Table: (create) [urn=urn:pulumi:donna-testing::url-shortener::cloud:table:Table$aws:dynamodb/table:Table::urls] -
A stack can have output properties, defined as
export let varName = val. You can view the last deployed value for the output property usingpulumi stack output varNameor in the Pulumi Console.
Resource naming is now more consistent, but there is a new file format for checkpoint files for both local and managed stacks.
If you created stacks in the 0.8 release, you should destroy them with the 0.8 CLI, then recreate with the 0.9.x CLI.
- Store secrets securely in configuration via
pulumi config set --secret. chris - The verbs for
configare now consistent, viaget,set, andrm. See Consistent config verbs #552.
- [experimental] Support for the
pulumi logscommand (pulumi #527). These features now work:- To see new logs as they arrive, use
--follow - Use
--sinceto limit to recent logs, such aspulumi logs --since=1h - Filter to specific resources with
--resource. This filters to a particular component and its child resources (if any), such aspulumi logs --resource examples-todoc57917fa --since 1h
- To see new logs as they arrive, use
- Support for
.pulumiignore, for files that should not be uploaded when deploying a managed stack through Pulumi. - Allow overriding a
Pulumi.yaml's entry point #575. To specify the entry directory, specifymaininPulumi.yaml. For instance,main: a/path/to/main/. - Support for protected resources. A resource can be marked as
protect: true, which prevents deletion of the resource. For example,let res = new MyResource("precious", { .. }, { protect: true });. To "unprotect" the resource, changeprotect: falsethen runpulumi up. See Allow resources to be flagged "protected" #689. - Changed defaults for workspace and stack configuration. See Workspace configuration is error prone #714.
- Save configuration under the stack by default.
- Improved SDK installer. It automatically creates directories as needed, configures node modules, and prints out friendly error messages.
- Better diffing in CLI output, especially for Lambdas #454
maindoes not set working dir correctly for Lambda zip #667- Better error when invalid access token is used in
pulumi login#640 - Eliminate the top-level Stack from all URNs #647
- Service API for Encrypting and Decrypting secrets
- Make CLI resilient to network flakiness #763
- Support --since and --resource on
pulumi logswhen targeting the service - Pulumi unable to serialize non-integers #694
- Stop buffering CLI output #660