Skip to content

Commit

Permalink
Changelog and go.mod updates for v3.80.0 (#13856)
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 Sep 1, 2023
1 parent 5e3a86a commit 9d78958
Show file tree
Hide file tree
Showing 15 changed files with 43 additions and 41 deletions.
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,43 @@
# Changelog

## 3.80.0 (2023-08-31)


### Features

- [sdk/go] Add sdk/go/pulumix package with type-safe generics-based APIs to interact with Pulumi's core functionality.
[#13509](https://github.com/pulumi/pulumi/pull/13509)

- [sdk/go] Built-in Pulumi types all satisfy `pulumix.Input[T]` for their underlying types.
[#13509](https://github.com/pulumi/pulumi/pull/13509)

- [sdkgen/go] Generate types that are compatible with sdk/go/pulumix's type-safe APIs.
[#13510](https://github.com/pulumi/pulumi/pull/13510)

- [sdkgen/{nodejs,python}] NodeJS and Python packages no longer running plugin install scripts on package install.
[#13800](https://github.com/pulumi/pulumi/pull/13800)


### Bug Fixes

- [cli/new] Fix regression where `pulumi new -s org/project/stack` would fail if the project already exists.
[#13786](https://github.com/pulumi/pulumi/pull/13786)

- [sdk/nodejs] Fix provider used for resource methods
[#13796](https://github.com/pulumi/pulumi/pull/13796)


### Miscellaneous

- [cli] Some CLI prompts now support backspace, arrow keys, etc.
[#13815](https://github.com/pulumi/pulumi/pull/13815)

- [sdk/go] Add cmdutil.TerminateProcessGroup to terminate processes gracefully.
[#13792](https://github.com/pulumi/pulumi/pull/13792)

- [sdk/{go,nodejs,python}] Language plugins now clean up resources and exit cleanly on receiving SIGINT or CTRL_BREAK signals.
[#13809](https://github.com/pulumi/pulumi/pull/13809)

## 3.79.0 (2023-08-25)


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.

2 changes: 1 addition & 1 deletion pkg/go.mod
Original file line number Diff line number Diff line change
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.79.0
github.com/pulumi/pulumi/sdk/v3 v3.80.0
github.com/santhosh-tekuri/jsonschema/v5 v5.0.0
github.com/sergi/go-diff v1.3.1
github.com/spf13/cobra v1.7.0
Expand Down
2 changes: 1 addition & 1 deletion sdk/go/pulumi-language-go/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ require (
github.com/golang/protobuf v1.5.3
github.com/opentracing/opentracing-go v1.2.0
github.com/pulumi/pulumi/pkg/v3 v3.0.0-00010101000000-000000000000
github.com/pulumi/pulumi/sdk/v3 v3.79.0
github.com/pulumi/pulumi/sdk/v3 v3.80.0
github.com/stretchr/testify v1.8.3
golang.org/x/mod v0.10.0
google.golang.org/grpc v1.57.0
Expand Down
2 changes: 1 addition & 1 deletion sdk/nodejs/cmd/pulumi-language-nodejs/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,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.0.0-00010101000000-000000000000
github.com/pulumi/pulumi/sdk/v3 v3.79.0
github.com/pulumi/pulumi/sdk/v3 v3.80.0
github.com/stretchr/testify v1.8.3
google.golang.org/grpc v1.57.0
)
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/cmd/pulumi-language-python/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ require (
github.com/blang/semver v3.5.1+incompatible
github.com/golang/protobuf v1.5.3
github.com/pulumi/pulumi/pkg/v3 v3.0.0-00010101000000-000000000000
github.com/pulumi/pulumi/sdk/v3 v3.79.0
github.com/pulumi/pulumi/sdk/v3 v3.80.0
github.com/stretchr/testify v1.8.3
google.golang.org/grpc v1.57.0
)
Expand Down
2 changes: 1 addition & 1 deletion tests/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ require (
github.com/grapl-security/pulumi-hcp/sdk v0.1.14
github.com/hexops/autogold v1.3.0
github.com/pulumi/pulumi/pkg/v3 v3.0.0-00010101000000-000000000000
github.com/pulumi/pulumi/sdk/v3 v3.79.0
github.com/pulumi/pulumi/sdk/v3 v3.80.0
github.com/stretchr/testify v1.8.3
google.golang.org/grpc v1.57.0
sourcegraph.com/sourcegraph/appdash v0.0.0-20211028080628-e2786a622600
Expand Down

0 comments on commit 9d78958

Please sign in to comment.