Skip to content

Commit

Permalink
Changelog and go.mod updates for v3.114.0 (#16075)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions <github-actions@github.com>
  • Loading branch information
pulumi-bot and github-actions committed Apr 27, 2024
1 parent 88e5625 commit 59efa58
Show file tree
Hide file tree
Showing 19 changed files with 51 additions and 51 deletions.
44 changes: 44 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,49 @@
# Changelog

## 3.114.0 (2024-04-26)


### Features

- [auto/{go,nodejs,python}] Add support for the continue-on-error parameter of the up command to the Automation API
[#15953](https://github.com/pulumi/pulumi/pull/15953)

- [engine] Add a --continue-on-error flag to pulumi up
[#15740](https://github.com/pulumi/pulumi/pull/15740)


### Bug Fixes

- [pkg] Deserialize assets with their sig
[#16073](https://github.com/pulumi/pulumi/pull/16073)

- [cli/display] Fix output of the diff display, making sure it shows diffs from refreshes
[#16065](https://github.com/pulumi/pulumi/pull/16065)

- [auto/python] Ensure async context is not shared between multiple programs
[#16063](https://github.com/pulumi/pulumi/pull/16063)

- [sdk/nodejs] Fix a race condition that could cause the NodeJS runtime to terminate before finishing all work
[#16005](https://github.com/pulumi/pulumi/pull/16005)

- [sdk/python] Fix an exception when setting providers resource option with a dict
[#16022](https://github.com/pulumi/pulumi/pull/16022)

- [sdk/python] Fix event loop tracking in the python SDK when using remote transforms
[#16039](https://github.com/pulumi/pulumi/pull/16039)

- [sdk/python] Workaround lazy module loading regression
[#16038](https://github.com/pulumi/pulumi/pull/16038)

- [sdk/python] Fix a memory leak in tracking outputs
[#16057](https://github.com/pulumi/pulumi/pull/16057)


### Miscellaneous

- [cli/plugin] Move PluginKind type definition into apitype and re-export for backward compatibility
[#15946](https://github.com/pulumi/pulumi/pull/15946)

## 3.113.3 (2024-04-19)


Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

2 changes: 1 addition & 1 deletion cmd/pulumi-test-language/go.mod
Expand Up @@ -11,7 +11,7 @@ require (
github.com/deckarep/golang-set/v2 v2.5.0
github.com/hexops/gotextdiff v1.0.3
github.com/pulumi/pulumi/pkg/v3 v3.98.0
github.com/pulumi/pulumi/sdk/v3 v3.113.3
github.com/pulumi/pulumi/sdk/v3 v3.114.0
github.com/segmentio/encoding v0.3.6
github.com/stretchr/testify v1.9.0
google.golang.org/grpc v1.63.2
Expand Down
2 changes: 1 addition & 1 deletion pkg/go.mod
Expand Up @@ -36,7 +36,7 @@ require (
github.com/nbutton23/zxcvbn-go v0.0.0-20180912185939-ae427f1e4c1d
github.com/opentracing/opentracing-go v1.2.0
github.com/pgavlin/goldmark v1.1.33-0.20200616210433-b5eb04559386
github.com/pulumi/pulumi/sdk/v3 v3.113.3
github.com/pulumi/pulumi/sdk/v3 v3.114.0
github.com/santhosh-tekuri/jsonschema/v5 v5.0.0
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3
github.com/spf13/cobra v1.8.0
Expand Down
2 changes: 1 addition & 1 deletion sdk/go/pulumi-language-go/go.mod
Expand Up @@ -12,7 +12,7 @@ require (
github.com/hashicorp/go-version v1.6.0
github.com/opentracing/opentracing-go v1.2.0
github.com/pulumi/pulumi/pkg/v3 v3.98.0
github.com/pulumi/pulumi/sdk/v3 v3.113.3
github.com/pulumi/pulumi/sdk/v3 v3.114.0
github.com/stretchr/testify v1.9.0
golang.org/x/mod v0.14.0
google.golang.org/grpc v1.63.2
Expand Down
2 changes: 1 addition & 1 deletion sdk/nodejs/cmd/pulumi-language-nodejs/go.mod
Expand Up @@ -14,7 +14,7 @@ require (
github.com/hashicorp/go-multierror v1.1.1
github.com/opentracing/opentracing-go v1.2.0
github.com/pulumi/pulumi/pkg/v3 v3.98.0
github.com/pulumi/pulumi/sdk/v3 v3.113.3
github.com/pulumi/pulumi/sdk/v3 v3.114.0
github.com/stretchr/testify v1.9.0
google.golang.org/grpc v1.63.2
google.golang.org/protobuf v1.33.0
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/cmd/pulumi-language-python/go.mod
Expand Up @@ -10,7 +10,7 @@ replace (
require (
github.com/blang/semver v3.5.1+incompatible
github.com/pulumi/pulumi/pkg/v3 v3.98.0
github.com/pulumi/pulumi/sdk/v3 v3.113.3
github.com/pulumi/pulumi/sdk/v3 v3.114.0
github.com/stretchr/testify v1.9.0
google.golang.org/grpc v1.63.2
google.golang.org/protobuf v1.33.0
Expand Down
2 changes: 1 addition & 1 deletion tests/go.mod
Expand Up @@ -18,7 +18,7 @@ require (
github.com/hexops/autogold v1.3.0
github.com/pulumi/appdash v0.0.0-20231130102222-75f619a67231
github.com/pulumi/pulumi/pkg/v3 v3.109.0
github.com/pulumi/pulumi/sdk/v3 v3.113.3
github.com/pulumi/pulumi/sdk/v3 v3.114.0
github.com/stretchr/testify v1.9.0
google.golang.org/grpc v1.63.2
google.golang.org/protobuf v1.33.0
Expand Down
Expand Up @@ -6,7 +6,7 @@ require (
github.com/blang/semver v3.5.1+incompatible
github.com/pulumi/pulumi-tls/sdk/v4 v4.10.0
github.com/pulumi/pulumi/pkg/v3 v3.98.0
github.com/pulumi/pulumi/sdk/v3 v3.113.3
github.com/pulumi/pulumi/sdk/v3 v3.114.0
)

replace (
Expand Down

0 comments on commit 59efa58

Please sign in to comment.