Skip to content

Commit

Permalink
Freeze v3.114.0 (#16062)
Browse files Browse the repository at this point in the history
Will wait to merge this until after
#16057 merges

### Features

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

- [engine] Add a --continue-on-error flag to pulumi up
  [#15740](#15740)


### Bug Fixes

- [sdk/nodejs] Fix a race condition that could cause the NodeJS runtime
to terminate before finishing all work
  [#16005](#16005)

- [sdk/python] Fix an exception when setting providers resource option
with a dict
  [#16022](#16022)

- [sdk/python] Fix event loop tracking in the python SDK when using
remote transforms
  [#16039](#16039)

- [sdk/python] Workaround lazy module loading regression
  [#16038](#16038)


### Miscellaneous

- [cli/plugin] Move PluginKind type definition into apitype and
re-export for backward compatibility
  [#15946](#15946)
  • Loading branch information
justinvp committed Apr 26, 2024
1 parent 88b0dd1 commit 88e5625
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion sdk/.version
@@ -1 +1 @@
3.114.0
3.114.1
2 changes: 1 addition & 1 deletion sdk/nodejs/package.json
@@ -1,6 +1,6 @@
{
"name": "@pulumi/pulumi",
"version": "3.114.0",
"version": "3.114.1",
"description": "Pulumi's Node.js SDK",
"license": "Apache-2.0",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion sdk/nodejs/version.ts
Expand Up @@ -12,4 +12,4 @@
// See the License for the specific language governing permissions and
// limitations under the License.

export const version = "3.114.0";
export const version = "3.114.1";
2 changes: 1 addition & 1 deletion sdk/python/lib/pulumi/_version.py
Expand Up @@ -14,7 +14,7 @@

from semver import VersionInfo

_VERSION = "3.114.0"
_VERSION = "3.114.1"

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

VERSION = "3.114.0"
VERSION = "3.114.1"

def readme():
try:
Expand Down

0 comments on commit 88e5625

Please sign in to comment.