Skip to content

Commit

Permalink
Prepare for v3.123.0 release (#16607)
Browse files Browse the repository at this point in the history
Tentative changelog:

### Features

- [docs] Add ability to constrain supported languages of resource and
function overlays

- [engine] Guess references to properties 'name' and 'arn' between
dependant resources during import
  [#16234](#16234)

- [sdk/nodejs] Add `dependsOn` to `InvokeOptions` in the NodeJS SDK
  [#16560](#16560)


### Bug Fixes

- [cli/new] Use default values for language specific prompts when using
--yes
  [#16595](#16595)

- [docs] Fix generating constructor syntax examples for kubernetes
  [#16574](#16574)

- [docs] Fix generating constructor syntax examples in Go for package
awsx
  [#16583](#16583)

- [backend/service] Retry POST requests that time out during handshake
timeouts
  [#16576](#16576)

- [engine] Avoid computing refresh `Diff`s for external resources
  [#16544](#16544)

- [engine] Fix program hanging when the import resource option is used
and the inputs don't match
  [#16572](#16572)

- [programgen/go] Do not emit index module for resources without a
schema
  [#16588](#16588)

- [sdk/go] Fix out-of-range panic when sanitizing PATH env var
  [#16575](#16575)

- [sdk/nodejs] Fix creating a closure with object getters and setters
  [#16568](#16568)

- [programgen/python] Fix Python program generation for remote assets
  [#16556](#16556)


### Miscellaneous

- [sdk/nodejs] Bump `@opentelemetry` packages in the NodeJS SDK
  [#16558](#16558)
  • Loading branch information
justinvp authored Jul 10, 2024
1 parent 74e8928 commit c0ecc09
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.122.1
3.123.0
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.122.1",
"version": "3.123.0",
"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.122.1";
export const version = "3.123.0";
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.122.1"
_VERSION = "3.123.0"

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.122.1"
VERSION = "3.123.0"

def readme():
try:
Expand Down

0 comments on commit c0ecc09

Please sign in to comment.