Skip to content

Commit

Permalink
Freeze v3.121.0 (#16447)
Browse files Browse the repository at this point in the history
Waiting on #16441, but there are
also a few other fixes in the queue that I'll opportunistically wait on
as well.

Tentative changelog:

### Features

- [engine] Resolve provider in the engine before passing it to
transforms
  [#16409](#16409)

- [sdk/go] Suggest valid attributes with similar names to unrecognised
ones when validating project definitions
  [#16097](#16097)

- [cli/new] Allow passing runtime options as args in pulumi new
  [#16346](#16346)

- [cli/new] Query language runtime for options during “pulumi new”
  [#16346](#16346)

- [cli/new] Add packagemanager prompt to pulumi new for nodejs
  [#16417](#16417)

- [sdk/nodejs] Detect pnpm workspaces when running pulumi install
  [#15525](#15525)

- [sdk/nodejs] Add options to Workspace::removeStack()
  [#16333](#16333)

- [sdk/python] Automatically convert requirements.txt to pyproject.toml
when using Poetry
  [#16346](#16346)

- [sdkgen/python] Generate TypedDict types for inputs
  [#15957](#15957)


### Bug Fixes

- [engine] Fix a panic when ignoring wildcard values with arrays of
different length
  [#16406](#16406)

- [cli/engine] Fix --continue-on-error running indefinitely when a
resource fails to be created or updated
  [#16371](#16371)

- [sdk/nodejs] Avoid an unhandled error when `dependencies` is missing
from `package.json` during closure serialization
  [#16433](#16433)

- [cli/plugin] Fix plugin install command when plugin type is tool
  [#16407](#16407)

- [sdk/python] Fix Python SDK docs by escaping the trailing underscore
in a docstring
  [#14866](#14866)

- [sdk/python] Don't incorrectly emit deprecation warnings for
non-deprecated properties
  [#16400](#16400)

- [sdk/python] Handle extra CLI arguments passed policy packs plugins
  [#16402](#16402)

- [sdk/python] Add VIRTUAL_ENV environment variable when running inside
a virtual environment
  [#16425](#16425)

- [sdk/python] Don't lift dunder attributes on `Output`s


### Miscellaneous

- [sdk/{go,nodejs,python}] Add register resource transform alias for
register stack transform

- [cli/new] Instruct the user to use 'pulumi install' when using
--generate-only
  [#16411](#16411)
  • Loading branch information
justinvp committed Jun 22, 2024
1 parent 79e814f commit 12ee8f2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion sdk/.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.121.0
3.121.1
2 changes: 1 addition & 1 deletion sdk/nodejs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pulumi/pulumi",
"version": "3.121.0",
"version": "3.121.1",
"description": "Pulumi's Node.js SDK",
"license": "Apache-2.0",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion sdk/nodejs/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
// See the License for the specific language governing permissions and
// limitations under the License.

export const version = "3.121.0";
export const version = "3.121.1";
2 changes: 1 addition & 1 deletion sdk/python/lib/pulumi/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

from semver import VersionInfo

_VERSION = "3.121.0"
_VERSION = "3.121.1"

version = VersionInfo.parse(_VERSION)
"""Version is the Pulumi SDK's release version."""
2 changes: 1 addition & 1 deletion sdk/python/lib/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import os
from setuptools import find_packages, setup

VERSION = "3.121.0"
VERSION = "3.121.1"

def readme():
try:
Expand Down

0 comments on commit 12ee8f2

Please sign in to comment.