From 0e384fd6e3d096f653ae2c0404fb2f6d0ff90992 Mon Sep 17 00:00:00 2001 From: "pulumi-renovate[bot]" <189166143+pulumi-renovate[bot]@users.noreply.github.com> Date: Tue, 17 Dec 2024 07:37:05 -0800 Subject: [PATCH] Pin dependencies (#599) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [@pulumi/pulumi](https://redirect.github.com/pulumi/pulumi) ([source](https://redirect.github.com/pulumi/pulumi/tree/HEAD/sdk/nodejs)) | dependencies | pin | [`^3.136.0` -> `3.143.0`](https://renovatebot.com/diffs/npm/@pulumi%2fpulumi/3.143.0/3.143.0) | | [github.com/pulumi/providertest](https://redirect.github.com/pulumi/providertest) | require | minor | `v0.0.13` -> `v0.1.3` | | [github.com/pulumi/pulumi-go-provider](https://redirect.github.com/pulumi/pulumi-go-provider) | require | minor | `v0.20.0` -> `v0.24.0` | | [github.com/pulumi/pulumi/sdk/v3](https://redirect.github.com/pulumi/pulumi) | require | minor | `v3.142.0` -> `v3.143.0` | | [pulumi/action-install-pulumi-cli](https://redirect.github.com/pulumi/action-install-pulumi-cli) | action | pinDigest | -> `b374ceb` | Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes
pulumi/providertest (github.com/pulumi/providertest) ### [`v0.1.3`](https://redirect.github.com/pulumi/providertest/releases/tag/v0.1.3) [Compare Source](https://redirect.github.com/pulumi/providertest/compare/v0.1.2...v0.1.3) #### What's Changed - Add replace program utility by [@​VenelinMartinov](https://redirect.github.com/VenelinMartinov) in [https://github.com/pulumi/providertest/pull/94](https://redirect.github.com/pulumi/providertest/pull/94) **Full Changelog**: https://github.com/pulumi/providertest/compare/v0.1.2...v0.1.3 ### [`v0.1.2`](https://redirect.github.com/pulumi/providertest/releases/tag/v0.1.2) [Compare Source](https://redirect.github.com/pulumi/providertest/compare/v0.1.1...v0.1.2) #### What's Changed - Sanitize exported stack state by scrubbing secrets by [@​thomas11](https://redirect.github.com/thomas11) in [https://github.com/pulumi/providertest/pull/107](https://redirect.github.com/pulumi/providertest/pull/107) **Full Changelog**: https://github.com/pulumi/providertest/compare/v0.1.1...v0.1.2 ### [`v0.1.1`](https://redirect.github.com/pulumi/providertest/releases/tag/v0.1.1) [Compare Source](https://redirect.github.com/pulumi/providertest/compare/v0.1.0...v0.1.1) #### What's Changed - Add `provider.ReplayInvokes` by [@​danielrbradley](https://redirect.github.com/danielrbradley) in [https://github.com/pulumi/providertest/pull/105](https://redirect.github.com/pulumi/providertest/pull/105) **Full Changelog**: https://github.com/pulumi/providertest/compare/v0.1.0...v0.1.1 ### [`v0.1.0`](https://redirect.github.com/pulumi/providertest/releases/tag/v0.1.0) [Compare Source](https://redirect.github.com/pulumi/providertest/compare/v0.0.15...v0.1.0) #### What's Changed - Upgrade tests with known source edits by [@​VenelinMartinov](https://redirect.github.com/VenelinMartinov) in [https://github.com/pulumi/providertest/pull/95](https://redirect.github.com/pulumi/providertest/pull/95) - Don't ignore UpdateSource errors by [@​blampe](https://redirect.github.com/blampe) in [https://github.com/pulumi/providertest/pull/96](https://redirect.github.com/pulumi/providertest/pull/96) - Rename Source to WorkingDir by [@​danielrbradley](https://redirect.github.com/danielrbradley) in [https://github.com/pulumi/providertest/pull/101](https://redirect.github.com/pulumi/providertest/pull/101) - Fix various warnings by [@​danielrbradley](https://redirect.github.com/danielrbradley) in [https://github.com/pulumi/providertest/pull/103](https://redirect.github.com/pulumi/providertest/pull/103) - Pass `T` explicitly to all methods by [@​danielrbradley](https://redirect.github.com/danielrbradley) in [https://github.com/pulumi/providertest/pull/102](https://redirect.github.com/pulumi/providertest/pull/102) #### ⚠️ Breaking change ⚠️ You must now pass T as the first parameter for any method which does asserts internally, as is the pattern in Go. You can fix pretty much all usages using the following batch of `gofmt` commands: ```bash gofmt -r 'a.Convert(b) -> a.Convert(t, b)' -w ./**/*_test.go gofmt -r 'a.CopyTo(b) -> a.CopyTo(t, b)' -w ./**/*_test.go gofmt -r 'a.CopyToTempDir() -> a.CopyToTempDir(t)' -w ./**/*_test.go gofmt -r 'a.Destroy() -> a.Destroy(t)' -w ./**/*_test.go gofmt -r 'a.ExportStack() -> a.ExportStack(t)' -w ./**/*_test.go gofmt -r 'a.GrpcLog() -> a.GrpcLog(t)' -w ./**/*_test.go gofmt -r 'a.ClearGrpcLog() -> a.ClearGrpcLog(t)' -w ./**/*_test.go gofmt -r 'a.Import(b, c, d, e, f, g) -> a.Import(t, b, c, d, e, f, g)' -w ./**/*_test.go gofmt -r 'a.Import(b, c, d, e, f) -> a.Import(t, b, c, d, e, f)' -w ./**/*_test.go gofmt -r 'a.Import(b, c, d, e) -> a.Import(t, b, c, d, e)' -w ./**/*_test.go gofmt -r 'a.Import(b, c, d) -> a.Import(t, b, c, d)' -w ./**/*_test.go gofmt -r 'a.Import(b, c) -> a.Import(t, b, c)' -w ./**/*_test.go gofmt -r 'a.Import(b) -> a.Import(t, b)' -w ./**/*_test.go gofmt -r 'a.ImportStack(b) -> a.ImportStack(t, b)' -w ./**/*_test.go gofmt -r 'a.Install() -> a.Install(t)' -w ./**/*_test.go gofmt -r 'a.InstallStack(b) -> a.InstallStack(t, b)' -w ./**/*_test.go gofmt -r 'a.Preview() -> a.Preview(t)' -w ./**/*_test.go gofmt -r 'a.Refresh() -> a.Refresh(t)' -w ./**/*_test.go gofmt -r 'a.SetConfig(b, c) -> a.SetConfig(t, b, c)' -w ./**/*_test.go gofmt -r 'a.Up() -> a.Up(t)' -w ./**/*_test.go gofmt -r 'a.UpdateSource(b) -> a.UpdateSource(t, b)' -w ./**/*_test.go gofmt -r 'a.NewStack(b) -> a.NewStack(t, b)' -w ./**/*_test.go gofmt -r 'a.Run(b) -> a.Run(t, b)' -w ./**/*_test.go ``` #### New Contributors - [@​blampe](https://redirect.github.com/blampe) made their first contribution in [https://github.com/pulumi/providertest/pull/96](https://redirect.github.com/pulumi/providertest/pull/96) **Full Changelog**: https://github.com/pulumi/providertest/compare/v0.0.15...v0.1.0 ### [`v0.0.15`](https://redirect.github.com/pulumi/providertest/releases/tag/v0.0.15) [Compare Source](https://redirect.github.com/pulumi/providertest/compare/v0.0.14...v0.0.15) #### What's Changed - Clarify the contract for this repo by [@​mjeffryes](https://redirect.github.com/mjeffryes) in [https://github.com/pulumi/providertest/pull/92](https://redirect.github.com/pulumi/providertest/pull/92) - Allow passing additional args to import command by [@​corymhall](https://redirect.github.com/corymhall) in [https://github.com/pulumi/providertest/pull/93](https://redirect.github.com/pulumi/providertest/pull/93) #### New Contributors - [@​mjeffryes](https://redirect.github.com/mjeffryes) made their first contribution in [https://github.com/pulumi/providertest/pull/92](https://redirect.github.com/pulumi/providertest/pull/92) - [@​corymhall](https://redirect.github.com/corymhall) made their first contribution in [https://github.com/pulumi/providertest/pull/93](https://redirect.github.com/pulumi/providertest/pull/93) **Full Changelog**: https://github.com/pulumi/providertest/compare/v0.0.14...v0.0.15 ### [`v0.0.14`](https://redirect.github.com/pulumi/providertest/releases/tag/v0.0.14) [Compare Source](https://redirect.github.com/pulumi/providertest/compare/v0.0.13...v0.0.14) #### What's Changed - Add import to pulumitest by [@​VenelinMartinov](https://redirect.github.com/VenelinMartinov) in [https://github.com/pulumi/providertest/pull/91](https://redirect.github.com/pulumi/providertest/pull/91) **Full Changelog**: https://github.com/pulumi/providertest/compare/v0.0.13...v0.0.14
pulumi/pulumi-go-provider (github.com/pulumi/pulumi-go-provider) ### [`v0.24.0`](https://redirect.github.com/pulumi/pulumi-go-provider/releases/tag/v0.24.0) [Compare Source](https://redirect.github.com/pulumi/pulumi-go-provider/compare/v0.23.0...v0.24.0) #### What's Changed - Support parameterization at the gRPC level by [@​iwahbe](https://redirect.github.com/iwahbe) in [https://github.com/pulumi/pulumi-go-provider/pull/281](https://redirect.github.com/pulumi/pulumi-go-provider/pull/281) - Bump the go_modules group across 7 directories with 1 update by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/pulumi/pulumi-go-provider/pull/284](https://redirect.github.com/pulumi/pulumi-go-provider/pull/284) - Upgrade pulumi sdk packages by [@​sklarsa](https://redirect.github.com/sklarsa) in [https://github.com/pulumi/pulumi-go-provider/pull/282](https://redirect.github.com/pulumi/pulumi-go-provider/pull/282) #### New Contributors - [@​sklarsa](https://redirect.github.com/sklarsa) made their first contribution in [https://github.com/pulumi/pulumi-go-provider/pull/282](https://redirect.github.com/pulumi/pulumi-go-provider/pull/282) **Full Changelog**: https://github.com/pulumi/pulumi-go-provider/compare/v0.23.0...v0.24.0 ### [`v0.23.0`](https://redirect.github.com/pulumi/pulumi-go-provider/releases/tag/v0.23.0) [Compare Source](https://redirect.github.com/pulumi/pulumi-go-provider/compare/v0.22.0...v0.23.0) #### Note Please upgrade your Pulumi CLI version to 3.135.0 or later for codegen purposes to take advantage of the improvements to Invokes generation compatible with this release. #### What's Changed - Update description of Provider SDK by [@​AaronFriel](https://redirect.github.com/AaronFriel) in [https://github.com/pulumi/pulumi-go-provider/pull/262](https://redirect.github.com/pulumi/pulumi-go-provider/pull/262) - Upgrade `golangci-lint` version to v1.60.x by [@​iwahbe](https://redirect.github.com/iwahbe) in [https://github.com/pulumi/pulumi-go-provider/pull/267](https://redirect.github.com/pulumi/pulumi-go-provider/pull/267) - Add support for Call by [@​iwahbe](https://redirect.github.com/iwahbe) in [https://github.com/pulumi/pulumi-go-provider/pull/263](https://redirect.github.com/pulumi/pulumi-go-provider/pull/263) - Upgrade the go.mod version to require 1.22 by [@​iwahbe](https://redirect.github.com/iwahbe) in [https://github.com/pulumi/pulumi-go-provider/pull/268](https://redirect.github.com/pulumi/pulumi-go-provider/pull/268) - Interpret JSON Config values by [@​iwahbe](https://redirect.github.com/iwahbe) in [https://github.com/pulumi/pulumi-go-provider/pull/269](https://redirect.github.com/pulumi/pulumi-go-provider/pull/269) - Add a main build and codecov integration by [@​mikhailshilkov](https://redirect.github.com/mikhailshilkov) in [https://github.com/pulumi/pulumi-go-provider/pull/273](https://redirect.github.com/pulumi/pulumi-go-provider/pull/273) - Bump pu/pu version to v3.132.0 by [@​iwahbe](https://redirect.github.com/iwahbe) in [https://github.com/pulumi/pulumi-go-provider/pull/271](https://redirect.github.com/pulumi/pulumi-go-provider/pull/271) - Prevent directly nested output failure for TestRapidDeepEqual by [@​iwahbe](https://redirect.github.com/iwahbe) in [https://github.com/pulumi/pulumi-go-provider/pull/275](https://redirect.github.com/pulumi/pulumi-go-provider/pull/275) - Apply secrets to function result properties marked as such by [@​mikhailshilkov](https://redirect.github.com/mikhailshilkov) in [https://github.com/pulumi/pulumi-go-provider/pull/272](https://redirect.github.com/pulumi/pulumi-go-provider/pull/272) - Extend code coverage to be more meaningful by [@​mikhailshilkov](https://redirect.github.com/mikhailshilkov) in [https://github.com/pulumi/pulumi-go-provider/pull/278](https://redirect.github.com/pulumi/pulumi-go-provider/pull/278) **Full Changelog**: https://github.com/pulumi/pulumi-go-provider/compare/v0.21.0...v0.23.0 ### [`v0.22.0`](https://redirect.github.com/pulumi/pulumi-go-provider/releases/tag/v0.22.0) [Compare Source](https://redirect.github.com/pulumi/pulumi-go-provider/compare/v0.21.0...v0.22.0) #### What's Changed - Update description of Provider SDK by [@​AaronFriel](https://redirect.github.com/AaronFriel) in [https://github.com/pulumi/pulumi-go-provider/pull/262](https://redirect.github.com/pulumi/pulumi-go-provider/pull/262) - Upgrade `golangci-lint` version to v1.60.x by [@​iwahbe](https://redirect.github.com/iwahbe) in [https://github.com/pulumi/pulumi-go-provider/pull/267](https://redirect.github.com/pulumi/pulumi-go-provider/pull/267) - Add support for Call by [@​iwahbe](https://redirect.github.com/iwahbe) in [https://github.com/pulumi/pulumi-go-provider/pull/263](https://redirect.github.com/pulumi/pulumi-go-provider/pull/263) - Upgrade the go.mod version to require 1.22 by [@​iwahbe](https://redirect.github.com/iwahbe) in [https://github.com/pulumi/pulumi-go-provider/pull/268](https://redirect.github.com/pulumi/pulumi-go-provider/pull/268) - Interpret JSON Config values by [@​iwahbe](https://redirect.github.com/iwahbe) in [https://github.com/pulumi/pulumi-go-provider/pull/269](https://redirect.github.com/pulumi/pulumi-go-provider/pull/269) **Full Changelog**: https://github.com/pulumi/pulumi-go-provider/compare/v0.21.0...v0.22.0 ### [`v0.21.0`](https://redirect.github.com/pulumi/pulumi-go-provider/releases/tag/v0.21.0) [Compare Source](https://redirect.github.com/pulumi/pulumi-go-provider/compare/v0.20.0...v0.21.0) #### What's Changed - Descriptive types for `infer.Annotator.AddAlias` by [@​iwahbe](https://redirect.github.com/iwahbe) in [https://github.com/pulumi/pulumi-go-provider/pull/249](https://redirect.github.com/pulumi/pulumi-go-provider/pull/249) - Bump the version of pulumi used to v3.126.0 by [@​iwahbe](https://redirect.github.com/iwahbe) in [https://github.com/pulumi/pulumi-go-provider/pull/254](https://redirect.github.com/pulumi/pulumi-go-provider/pull/254) - Add `autoname` implementation as an example by [@​iwahbe](https://redirect.github.com/iwahbe) in [https://github.com/pulumi/pulumi-go-provider/pull/255](https://redirect.github.com/pulumi/pulumi-go-provider/pull/255) - Inject secrets from `provider:"secret"` tags by [@​iwahbe](https://redirect.github.com/iwahbe) in [https://github.com/pulumi/pulumi-go-provider/pull/252](https://redirect.github.com/pulumi/pulumi-go-provider/pull/252) - `DefaultCheck` with `context.Context` by [@​iwahbe](https://redirect.github.com/iwahbe) in [https://github.com/pulumi/pulumi-go-provider/pull/253](https://redirect.github.com/pulumi/pulumi-go-provider/pull/253) #### New Contributors - [@​zbuchheit](https://redirect.github.com/zbuchheit) made their first contribution in [https://github.com/pulumi/pulumi-go-provider/pull/250](https://redirect.github.com/pulumi/pulumi-go-provider/pull/250) **Full Changelog**: https://github.com/pulumi/pulumi-go-provider/compare/v0.20.0...v0.21.0
pulumi/pulumi (github.com/pulumi/pulumi/sdk/v3) ### [`v3.143.0`](https://redirect.github.com/pulumi/pulumi/releases/tag/v3.143.0) [Compare Source](https://redirect.github.com/pulumi/pulumi/compare/v3.142.0...v3.143.0) #### 3.143.0 (2024-12-12) ##### Features - \[cli] Autonaming configuration in experimental mode [#​17916](https://redirect.github.com/pulumi/pulumi/pull/17916) - \[cli] Suggest `state repair` as part of integrity panics [#​17919](https://redirect.github.com/pulumi/pulumi/pull/17919) - \[engine] Add PULUMI_DEBUG_LANGUAGES much like PULUMI_DEBUG_PROVIDERS so we can attach debuggers to languages easily [#​17821](https://redirect.github.com/pulumi/pulumi/pull/17821) - \[engine] Warn if `refresh` or `destroy` use older plugins [#​12196](https://redirect.github.com/pulumi/pulumi/pull/12196) - \[protobuf] Add `Handshake` to the provider protocol [#​17819](https://redirect.github.com/pulumi/pulumi/pull/17819) - \[sdk/dotnet] Upgrade pulumi-dotnet to 3.71.0 [#​17937](https://redirect.github.com/pulumi/pulumi/pull/17937) - \[sdkgen/dotnet] Codegen for .NET InvokeOutputOptions [#​17890](https://redirect.github.com/pulumi/pulumi/pull/17890) - \[programgen/{dotnet,nodejs,python}] Emit deferred outputs for mutually dependant components [#​17859](https://redirect.github.com/pulumi/pulumi/pull/17859) - \[sdk/go] Allow specifying dependencies for output invokes. Go code generation for Output form invokes will use the new `Context.InvokeOutput` method. [#​17791](https://redirect.github.com/pulumi/pulumi/pull/17791) - \[sdk/nodejs] Add getSchema to Provider interface [#​17950](https://redirect.github.com/pulumi/pulumi/pull/17950) - \[sdk/{nodejs,python}] Update Python and NodeJS to use the new GetRequiredPackage functionality [#​17910](https://redirect.github.com/pulumi/pulumi/pull/17910) - \[cli/package] Automatically set up package dependencies when adding a package when possible [#​17815](https://redirect.github.com/pulumi/pulumi/pull/17815) - \[sdk/python] Drop Python 3.8 support [#​17883](https://redirect.github.com/pulumi/pulumi/pull/17883) ##### Bug Fixes - \[backend/diy] Show a more correct URL for lock files in error messages [#​17961](https://redirect.github.com/pulumi/pulumi/pull/17961) - \[sdk/go] Inherit `protect` from `parent`s in the Go SDK [#​17936](https://redirect.github.com/pulumi/pulumi/pull/17936) - \[sdk/go] Fix a `defer` leak when writing memory profiles [#​17581](https://redirect.github.com/pulumi/pulumi/pull/17581) - \[sdk/go] Return when rejecting the InvokeOutput output on error [#​18010](https://redirect.github.com/pulumi/pulumi/pull/18010) - \[sdkgen/go] Fix writing of go.mod files for parameterized packages [#​17923](https://redirect.github.com/pulumi/pulumi/pull/17923) - \[auto/{go,nodejs,python}] Expose `whoami` token information in automation API types [#​17735](https://redirect.github.com/pulumi/pulumi/pull/17735) - \[cli/install] Don't recreate virtualenvs when using venv [#​17892](https://redirect.github.com/pulumi/pulumi/pull/17892) - \[auto/nodejs] Don't hang indefinitely on failed inputs [#​17899](https://redirect.github.com/pulumi/pulumi/pull/17899) - \[auto/python] Catch BaseException in automation API server [#​17909](https://redirect.github.com/pulumi/pulumi/pull/17909) - \[sdk/nodejs] Throw from `output()` on circular structures [#​17852](https://redirect.github.com/pulumi/pulumi/pull/17852) - \[sdkgen/{nodejs,python}] Bump the minimum SDK version to 3.142.0 [#​17997](https://redirect.github.com/pulumi/pulumi/pull/17997) ##### Miscellaneous - \[pkg] Upgrade pulumi-java to v0.19.0 [#​18014](https://redirect.github.com/pulumi/pulumi/pull/18014) - \[sdk/python] Switch to ruff for linting and formatting [#​17882](https://redirect.github.com/pulumi/pulumi/pull/17882) - \[sdkgen] Include parameterization details in pulumi-plugin.json [#​17867](https://redirect.github.com/pulumi/pulumi/pull/17867)
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - "every weekday" (UTC). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). Co-authored-by: pulumi-renovate[bot] <189166143+pulumi-renovate[bot]@users.noreply.github.com> --- .github/workflows/regenerate-sdks.yml | 4 ++-- provider/go.mod | 6 +++--- sdk/go.mod | 12 ++++++------ sdk/go.sum | 12 ++++++++++++ sdk/nodejs/package.json | 2 +- 5 files changed, 24 insertions(+), 12 deletions(-) diff --git a/.github/workflows/regenerate-sdks.yml b/.github/workflows/regenerate-sdks.yml index 0d241e5f..719ea504 100644 --- a/.github/workflows/regenerate-sdks.yml +++ b/.github/workflows/regenerate-sdks.yml @@ -32,7 +32,7 @@ jobs: with: repo: pulumi/pulumictl - name: Install Pulumi CLI - uses: pulumi/action-install-pulumi-cli@v2 + uses: pulumi/action-install-pulumi-cli@b374ceb6168550de27c6eba92e01c1a774040e11 # v2 - name: Build codegen binaries run: make codegen - name: Build Provider @@ -84,7 +84,7 @@ jobs: with: repo: pulumi/pulumictl - name: Install Pulumi CLI - uses: pulumi/action-install-pulumi-cli@v2 + uses: pulumi/action-install-pulumi-cli@b374ceb6168550de27c6eba92e01c1a774040e11 # v2 - name: Setup Node uses: actions/setup-node@v2 with: diff --git a/provider/go.mod b/provider/go.mod index eba02e9f..2ec198c6 100644 --- a/provider/go.mod +++ b/provider/go.mod @@ -6,9 +6,9 @@ require ( github.com/gliderlabs/ssh v0.3.7 github.com/gobwas/glob v0.2.3 github.com/pkg/sftp v1.13.6 - github.com/pulumi/providertest v0.0.13 - github.com/pulumi/pulumi-go-provider v0.20.0 - github.com/pulumi/pulumi/sdk/v3 v3.142.0 + github.com/pulumi/providertest v0.1.3 + github.com/pulumi/pulumi-go-provider v0.24.0 + github.com/pulumi/pulumi/sdk/v3 v3.143.0 github.com/stretchr/testify v1.9.0 golang.org/x/crypto v0.31.0 ) diff --git a/sdk/go.mod b/sdk/go.mod index fae33d5f..df1a6d54 100644 --- a/sdk/go.mod +++ b/sdk/go.mod @@ -4,7 +4,7 @@ go 1.21 require ( github.com/blang/semver v3.5.1+incompatible - github.com/pulumi/pulumi/sdk/v3 v3.142.0 + github.com/pulumi/pulumi/sdk/v3 v3.143.0 ) require ( @@ -74,14 +74,14 @@ require ( github.com/xanzy/ssh-agent v0.3.3 // indirect github.com/zclconf/go-cty v1.13.2 // indirect go.uber.org/atomic v1.9.0 // indirect - golang.org/x/crypto v0.26.0 // indirect + golang.org/x/crypto v0.31.0 // indirect golang.org/x/exp v0.0.0-20240604190554-fc45aab8b7f8 // indirect golang.org/x/mod v0.18.0 // indirect golang.org/x/net v0.28.0 // indirect - golang.org/x/sync v0.8.0 // indirect - golang.org/x/sys v0.24.0 // indirect - golang.org/x/term v0.23.0 // indirect - golang.org/x/text v0.17.0 // indirect + golang.org/x/sync v0.10.0 // indirect + golang.org/x/sys v0.28.0 // indirect + golang.org/x/term v0.27.0 // indirect + golang.org/x/text v0.21.0 // indirect golang.org/x/tools v0.22.0 // indirect google.golang.org/genproto/googleapis/rpc v0.0.0-20240814211410-ddb44dafa142 // indirect google.golang.org/grpc v1.67.1 // indirect diff --git a/sdk/go.sum b/sdk/go.sum index 402b8ba7..02c61781 100644 --- a/sdk/go.sum +++ b/sdk/go.sum @@ -152,6 +152,8 @@ github.com/pulumi/esc v0.10.0 h1:jzBKzkLVW0mePeanDRfqSQoCJ5yrkux0jIwAkUxpRKE= github.com/pulumi/esc v0.10.0/go.mod h1:2Bfa+FWj/xl8CKqRTWbWgDX0SOD4opdQgvYSURTGK2c= github.com/pulumi/pulumi/sdk/v3 v3.142.0 h1:SmcVddGuvwAh3g3XUVQQ5gVRQUKH1yZ6iETpDNHIHlw= github.com/pulumi/pulumi/sdk/v3 v3.142.0/go.mod h1:PvKsX88co8XuwuPdzolMvew5lZV+4JmZfkeSjj7A6dI= +github.com/pulumi/pulumi/sdk/v3 v3.143.0 h1:z1m8Fc6l723eU2J/bP7UHE5t6WbBu4iIDAl1WaalQk4= +github.com/pulumi/pulumi/sdk/v3 v3.143.0/go.mod h1:OFpZabILGxrFqzcABFpMCksrHGVp4ymRM2BkKjlazDY= github.com/rivo/uniseg v0.1.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= github.com/rivo/uniseg v0.4.4 h1:8TfxU8dW6PdqD27gjM8MVNuicgxIjxpm4K7x4jp8sis= @@ -205,6 +207,8 @@ golang.org/x/crypto v0.3.1-0.20221117191849-2c476679df9a/go.mod h1:hebNnKkNXi2Uz golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU= golang.org/x/crypto v0.26.0 h1:RrRspgV4mU+YwB4FYnuBoKsUapNIL5cohGAmSH3azsw= golang.org/x/crypto v0.26.0/go.mod h1:GY7jblb9wI+FOo5y8/S2oY4zWP07AkOJ4+jxCqdqn54= +golang.org/x/crypto v0.31.0 h1:ihbySMvVjLAeSH1IbfcRTkD/iNscyz8rGzjF/E5hV6U= +golang.org/x/crypto v0.31.0/go.mod h1:kDsLvtWBEx7MV9tJOj9bnXsPbxwJQ6csT/x4KIN4Ssk= golang.org/x/exp v0.0.0-20240604190554-fc45aab8b7f8 h1:LoYXNGAShUG3m/ehNk4iFctuhGX/+R1ZpfJ4/ia80JM= golang.org/x/exp v0.0.0-20240604190554-fc45aab8b7f8/go.mod h1:jj3sYF3dwk5D+ghuXyeI3r5MFf+NT2An6/9dOA95KSI= golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= @@ -235,6 +239,8 @@ golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.8.0 h1:3NFvSEYkUoMifnESzZl15y791HH1qU2xm6eCJU5ZPXQ= golang.org/x/sync v0.8.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= +golang.org/x/sync v0.10.0 h1:3NQrjDixjgGwUOCaF8w2+VYHv0Ve/vGYSbdkTa98gmQ= +golang.org/x/sync v0.10.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -257,6 +263,8 @@ golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.24.0 h1:Twjiwq9dn6R1fQcyiK+wQyHWfaz/BJB+YIpzU/Cv3Xg= golang.org/x/sys v0.24.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.28.0 h1:Fksou7UEQUWlKvIdsqzJmUmCX3cZuD2+P3XyyzwMhlA= +golang.org/x/sys v0.28.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.2.0/go.mod h1:TVmDHMZPmdnySmBfhjOoOdhjzdE1h4u1VwSiw2l1Nuc= @@ -264,6 +272,8 @@ golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= golang.org/x/term v0.6.0/go.mod h1:m6U89DPEgQRMq3DNkDClhWw02AUbt2daBVO4cn4Hv9U= golang.org/x/term v0.23.0 h1:F6D4vR+EHoL9/sWAWgAR1H2DcHr4PareCbAaCo1RpuU= golang.org/x/term v0.23.0/go.mod h1:DgV24QBUrK6jhZXl+20l6UWznPlwAHm1Q1mGHtydmSk= +golang.org/x/term v0.27.0 h1:WP60Sv1nlK1T6SupCHbXzSaN0b9wUmsPoRS9b61A23Q= +golang.org/x/term v0.27.0/go.mod h1:iMsnZpn0cago0GOrHO2+Y7u7JPn5AylBrcoWkElMTSM= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= @@ -273,6 +283,8 @@ golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.8.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= golang.org/x/text v0.17.0 h1:XtiM5bkSOt+ewxlOE/aE/AKEHibwj/6gvWMl9Rsh0Qc= golang.org/x/text v0.17.0/go.mod h1:BuEKDfySbSR4drPmRPG/7iBdf8hvFMuRexcpahXilzY= +golang.org/x/text v0.21.0 h1:zyQAAkrwaneQ066sspRyJaG9VNi/YJ1NfzcGB3hZ/qo= +golang.org/x/text v0.21.0/go.mod h1:4IBbMaMmOPCJ8SecivzSH54+73PCFmPWxNTLm+vZkEQ= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20181030221726-6c7e314b6563/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= diff --git a/sdk/nodejs/package.json b/sdk/nodejs/package.json index f6ac5938..b8493dcb 100644 --- a/sdk/nodejs/package.json +++ b/sdk/nodejs/package.json @@ -14,7 +14,7 @@ "build": "tsc" }, "dependencies": { - "@pulumi/pulumi": "^3.136.0" + "@pulumi/pulumi": "3.143.0" }, "devDependencies": { "@types/node": "^14",