Skip to content

Commit

Permalink
Freeze v3.144.0 (#18083)
Browse files Browse the repository at this point in the history
Stacked on top of #18082

---

Tentative changelog:

### Features

- [engine] Warn if `refresh` or `destroy` use older parameterized
packages
  [#18029](#18029)

- [sdk/dotnet] Update dotnet to 3.71.1
  [#18084](#18084)

- [auto/go] Add ConfigFile to GetConfig and SetConfig operations, add
GetAllConfigWithOptions to extend GetAllConfig
  [#17939](#17939)

- [cli/plugin] Log plugin unstructured output to debug instead of info
  [#17943](#17943)

- [sdk/yaml] Update pulumi-yaml to 1.13.0
  [#18077](#18077)


### Bug Fixes

- [backend/diy] Retry deletes of lock files if they fail
  [#18059](#18059)

- [auto/go] Fix potential race condition when using automation API
  [#18044](#18044)

- [auto/go] Fix "debug" flag in automation api
  [#18071](#18071)

- [cli/install] Avoid unnecessary Node.js installations
  [#18041](#18041)

- [engine] Use package load v2 in loader server so it can include
paramaterization
  [#18072](#18072)
  [#18021](#18021)

- [programgen/dotnet] Emit local dependencies in restore sources
deterministically
  [#18026](#18026)

- [sdk/go] Ignore DependsOn for direct form invokes instead of raising
an error

- [sdk/nodejs] Respect the noCheck option from tsconfig.json

- [sdk/nodejs] Gracefully handle errors that don't implement toString
  [#18080](#18080)

- [sdk/python] Fix hang on error when using uv on Windows
  [#18054](#18054)

- [sdkgen/dotnet] Compute restore sources from local dependencies and
referenced packages
  [#18042](#18042)


### Miscellaneous

- [sdkgen/go] Skip TestPackageAddGoParameterized
  [#18049](#18049)
  • Loading branch information
justinvp authored Dec 20, 2024
1 parent 1dd3669 commit d3d2892
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.144.0
3.144.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.144.0",
"version": "3.144.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.144.0";
export const version = "3.144.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.144.0"
_VERSION = "3.144.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.144.0"
VERSION = "3.144.1"

def readme():
try:
Expand Down

0 comments on commit d3d2892

Please sign in to comment.