Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update first-party Pulumi dependencies #1844

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

pulumi-renovate[bot]
Copy link

@pulumi-renovate pulumi-renovate bot commented Nov 22, 2024

This PR contains the following updates:

Package Type Update Change
github.com/pulumi/providertest require minor v0.0.10 -> v0.1.3
github.com/pulumi/pulumi-go-provider require minor v0.14.1-0.20240312115843-96cd54a979b1 -> v0.23.0
github.com/pulumi/pulumi/pkg/v3 require minor v3.140.0 -> v3.141.0
github.com/pulumi/pulumi/sdk/v3 require minor v3.140.0 -> v3.141.0
pulumi/actions action major v5 -> v6
pulumi/provider-version-action action pinDigest -> 7c54f13

Release Notes

pulumi/providertest (github.com/pulumi/providertest)

v0.1.3

Compare Source

What's Changed

Full Changelog: pulumi/providertest@v0.1.2...v0.1.3

v0.1.2

Compare Source

What's Changed

Full Changelog: pulumi/providertest@v0.1.1...v0.1.2

v0.1.1

Compare Source

What's Changed

Full Changelog: pulumi/providertest@v0.1.0...v0.1.1

v0.1.0

Compare Source

What's Changed

⚠️ 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:

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

Full Changelog: pulumi/providertest@v0.0.15...v0.1.0

v0.0.15

Compare Source

What's Changed

New Contributors

Full Changelog: pulumi/providertest@v0.0.14...v0.0.15

v0.0.14

Compare Source

What's Changed

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

v0.0.13

Compare Source

What's Changed

New Contributors

Full Changelog: pulumi/providertest@v0.0.12...v0.0.13

v0.0.12

Compare Source

What's Changed

New Contributors

Full Changelog: pulumi/providertest@v0.0.11...v0.0.12

v0.0.11

Compare Source

What's Changed

New Contributors

Full Changelog: pulumi/providertest@v0.0.10...v0.0.11

pulumi/pulumi-go-provider (github.com/pulumi/pulumi-go-provider)

v0.23.0

Compare Source

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

Full Changelog: pulumi/pulumi-go-provider@v0.21.0...v0.23.0

v0.22.0

Compare Source

What's Changed

Full Changelog: pulumi/pulumi-go-provider@v0.21.0...v0.22.0

v0.21.0

Compare Source

What's Changed

New Contributors

Full Changelog: pulumi/pulumi-go-provider@v0.20.0...v0.21.0

v0.20.0

Compare Source

What's Changed

Full Changelog: pulumi/pulumi-go-provider@v0.19.0...v0.20.0

v0.19.0

Compare Source

What's Changed

Full Changelog: pulumi/pulumi-go-provider@v0.18.0...v0.19.0

v0.18.0

Compare Source

Breaking changes

  • #​239: DefaultCheck now applies default values as specified by Annotator.SetDefault. Check already did this and this change aligns the behavior.

What's Changed

Full Changelog: pulumi/pulumi-go-provider@v0.17.0...v0.18.0

v0.17.0

Compare Source

Breaking Changes

What's Changed

Full Changelog: pulumi/pulumi-go-provider@v0.16.0...v0.17.0

v0.16.0

Compare Source

What's Changed

New Contributors

Full Changelog: pulumi/pulumi-go-provider@v0.15.0...v0.16.0

pulumi/pulumi (github.com/pulumi/pulumi/pkg/v3)

v3.141.0

Compare Source

3.141.0 (2024-11-22)
Features
  • [sdk/dotnet] Update dotnet to 3.69.0
    #​17828

  • [cli/new] Allow URLs without a scheme for downloading templates
    #​17824

  • [sdk/nodejs] Allow specifiying additional dependencies for output invokes
    #​17632

  • [sdk/{nodejs,python}] Implement deferred output for nodejs and python
    #​17793

  • [sdk/python] Allow specifiying dependencies for output invokes
    #​17751

  • [sdk/yaml] Update yaml to 1.12.0
    #​17811

Bug Fixes
  • [engine] Send the same program arguments to shimless and binary plugins
    #​17833

  • [auto/go] Work around a race where the summary event in the automation API sometimes cannot be found
    #​17825

  • [sdk/nodejs] Fix mocks when multiple versions of @​pulumi/pulumi are loaded in a project
    #​17769

Miscellaneous
  • [sdk/go] Split public and internal representation of InvokeOptions
    #​17818
pulumi/actions (pulumi/actions)

v6

Compare Source


Configuration

📅 Schedule: Branch creation - "before 6pm" (UTC), Automerge - "before 4am on Monday" (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 if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@pulumi-renovate pulumi-renovate bot added dependencies Pull requests that update a dependency file impact/no-changelog-required This issue doesn't require a CHANGELOG update labels Nov 22, 2024
@pulumi-renovate pulumi-renovate bot enabled auto-merge (rebase) November 22, 2024 00:13
@pulumi-renovate
Copy link
Author

ℹ Artifact update notice

File name: provider/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • The go directive was updated for compatibility reasons

Details:

Package Change
go 1.21 -> 1.23.3

Copy link
Contributor

Does the PR have any schema changes?

Looking good! No breaking changes found.
No new resources/functions.

@pulumi-renovate pulumi-renovate bot force-pushed the renovate/pulumi branch 3 times, most recently from 6695634 to d01cd7d Compare November 22, 2024 18:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file impact/no-changelog-required This issue doesn't require a CHANGELOG update
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants