Skip to content

Commit

Permalink
Pin dependencies (#599)
Browse files Browse the repository at this point in the history
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

<details>
<summary>pulumi/providertest (github.com/pulumi/providertest)</summary>

###
[`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
[@&#8203;VenelinMartinov](https://redirect.github.com/VenelinMartinov)
in
[https://github.com/pulumi/providertest/pull/94](https://redirect.github.com/pulumi/providertest/pull/94)

**Full Changelog**:
pulumi/providertest@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
[@&#8203;thomas11](https://redirect.github.com/thomas11) in
[https://github.com/pulumi/providertest/pull/107](https://redirect.github.com/pulumi/providertest/pull/107)

**Full Changelog**:
pulumi/providertest@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
[@&#8203;danielrbradley](https://redirect.github.com/danielrbradley) in
[https://github.com/pulumi/providertest/pull/105](https://redirect.github.com/pulumi/providertest/pull/105)

**Full Changelog**:
pulumi/providertest@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
[@&#8203;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
[@&#8203;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
[@&#8203;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
[@&#8203;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
[@&#8203;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

- [@&#8203;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**:
pulumi/providertest@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
[@&#8203;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
[@&#8203;corymhall](https://redirect.github.com/corymhall) in
[https://github.com/pulumi/providertest/pull/93](https://redirect.github.com/pulumi/providertest/pull/93)

#### New Contributors

- [@&#8203;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)
- [@&#8203;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**:
pulumi/providertest@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
[@&#8203;VenelinMartinov](https://redirect.github.com/VenelinMartinov)
in
[https://github.com/pulumi/providertest/pull/91](https://redirect.github.com/pulumi/providertest/pull/91)

**Full Changelog**:
pulumi/providertest@v0.0.13...v0.0.14

</details>

<details>
<summary>pulumi/pulumi-go-provider
(github.com/pulumi/pulumi-go-provider)</summary>

###
[`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
[@&#8203;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
[@&#8203;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
[@&#8203;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

- [@&#8203;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**:
pulumi/pulumi-go-provider@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
[@&#8203;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
[@&#8203;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
[@&#8203;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
[@&#8203;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
[@&#8203;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
[@&#8203;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
[@&#8203;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
[@&#8203;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
[@&#8203;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
[@&#8203;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**:
pulumi/pulumi-go-provider@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
[@&#8203;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
[@&#8203;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
[@&#8203;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
[@&#8203;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
[@&#8203;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**:
pulumi/pulumi-go-provider@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
[@&#8203;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
[@&#8203;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
[@&#8203;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
[@&#8203;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
[@&#8203;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

- [@&#8203;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**:
pulumi/pulumi-go-provider@v0.20.0...v0.21.0

</details>

<details>
<summary>pulumi/pulumi (github.com/pulumi/pulumi/sdk/v3)</summary>

###
[`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
[#&#8203;17916](https://redirect.github.com/pulumi/pulumi/pull/17916)

-   \[cli] Suggest `state repair` as part of integrity panics
[#&#8203;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
[#&#8203;17821](https://redirect.github.com/pulumi/pulumi/pull/17821)

-   \[engine] Warn if `refresh` or `destroy` use older plugins
[#&#8203;12196](https://redirect.github.com/pulumi/pulumi/pull/12196)

-   \[protobuf] Add `Handshake` to the provider protocol
[#&#8203;17819](https://redirect.github.com/pulumi/pulumi/pull/17819)

-   \[sdk/dotnet] Upgrade pulumi-dotnet to 3.71.0
[#&#8203;17937](https://redirect.github.com/pulumi/pulumi/pull/17937)

-   \[sdkgen/dotnet] Codegen for .NET InvokeOutputOptions
[#&#8203;17890](https://redirect.github.com/pulumi/pulumi/pull/17890)

- \[programgen/{dotnet,nodejs,python}] Emit deferred outputs for
mutually dependant components
[#&#8203;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.
[#&#8203;17791](https://redirect.github.com/pulumi/pulumi/pull/17791)

-   \[sdk/nodejs] Add getSchema to Provider interface
[#&#8203;17950](https://redirect.github.com/pulumi/pulumi/pull/17950)

- \[sdk/{nodejs,python}] Update Python and NodeJS to use the new
GetRequiredPackage functionality
[#&#8203;17910](https://redirect.github.com/pulumi/pulumi/pull/17910)

- \[cli/package] Automatically set up package dependencies when adding a
package when possible
[#&#8203;17815](https://redirect.github.com/pulumi/pulumi/pull/17815)

-   \[sdk/python] Drop Python 3.8 support
[#&#8203;17883](https://redirect.github.com/pulumi/pulumi/pull/17883)

##### Bug Fixes

- \[backend/diy] Show a more correct URL for lock files in error
messages
[#&#8203;17961](https://redirect.github.com/pulumi/pulumi/pull/17961)

-   \[sdk/go] Inherit `protect` from `parent`s in the Go SDK
[#&#8203;17936](https://redirect.github.com/pulumi/pulumi/pull/17936)

-   \[sdk/go] Fix a `defer` leak when writing memory profiles
[#&#8203;17581](https://redirect.github.com/pulumi/pulumi/pull/17581)

-   \[sdk/go] Return when rejecting the InvokeOutput output on error
[#&#8203;18010](https://redirect.github.com/pulumi/pulumi/pull/18010)

-   \[sdkgen/go] Fix writing of go.mod files for parameterized packages
[#&#8203;17923](https://redirect.github.com/pulumi/pulumi/pull/17923)

- \[auto/{go,nodejs,python}] Expose `whoami` token information in
automation API types
[#&#8203;17735](https://redirect.github.com/pulumi/pulumi/pull/17735)

-   \[cli/install] Don't recreate virtualenvs when using venv
[#&#8203;17892](https://redirect.github.com/pulumi/pulumi/pull/17892)

-   \[auto/nodejs] Don't hang indefinitely on failed inputs
[#&#8203;17899](https://redirect.github.com/pulumi/pulumi/pull/17899)

-   \[auto/python] Catch BaseException in automation API server
[#&#8203;17909](https://redirect.github.com/pulumi/pulumi/pull/17909)

-   \[sdk/nodejs] Throw from `output()` on circular structures
[#&#8203;17852](https://redirect.github.com/pulumi/pulumi/pull/17852)

-   \[sdkgen/{nodejs,python}] Bump the minimum SDK version to 3.142.0
[#&#8203;17997](https://redirect.github.com/pulumi/pulumi/pull/17997)

##### Miscellaneous

-   \[pkg] Upgrade pulumi-java to v0.19.0
[#&#8203;18014](https://redirect.github.com/pulumi/pulumi/pull/18014)

-   \[sdk/python] Switch to ruff for linting and formatting
[#&#8203;17882](https://redirect.github.com/pulumi/pulumi/pull/17882)

-   \[sdkgen] Include parameterization details in pulumi-plugin.json
[#&#8203;17867](https://redirect.github.com/pulumi/pulumi/pull/17867)

</details>

---

### 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.

---

- [ ] <!-- rebase-check -->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).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4xNDIuNyIsInVwZGF0ZWRJblZlciI6IjM4LjE0Mi43IiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImRlcGVuZGVuY2llcyIsImltcGFjdC9uby1jaGFuZ2Vsb2ctcmVxdWlyZWQiXX0=-->

Co-authored-by: pulumi-renovate[bot] <189166143+pulumi-renovate[bot]@users.noreply.github.com>
  • Loading branch information
pulumi-renovate[bot] authored Dec 17, 2024
1 parent 73472a7 commit 0e384fd
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/regenerate-sdks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand Down
6 changes: 3 additions & 3 deletions provider/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
Expand Down
12 changes: 6 additions & 6 deletions sdk/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down Expand Up @@ -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
Expand Down
12 changes: 12 additions & 0 deletions sdk/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -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=
Expand Down Expand Up @@ -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=
Expand Down Expand Up @@ -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=
Expand All @@ -257,13 +263,17 @@ 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=
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=
Expand All @@ -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=
Expand Down
2 changes: 1 addition & 1 deletion sdk/nodejs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"build": "tsc"
},
"dependencies": {
"@pulumi/pulumi": "^3.136.0"
"@pulumi/pulumi": "3.143.0"
},
"devDependencies": {
"@types/node": "^14",
Expand Down

0 comments on commit 0e384fd

Please sign in to comment.