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 (main) #274

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

Conversation

pulumi-bot
Copy link
Collaborator

@pulumi-bot pulumi-bot commented Oct 4, 2024

This PR contains the following updates:

Package Type Update Change
github.com/pulumi/providertest require minor v0.0.13 -> v0.1.3
github.com/pulumi/pulumi-dotnet/pulumi-language-dotnet require digest fa77721 -> 9462eb2
github.com/pulumi/pulumi/pkg/v3 require minor v3.134.1 -> v3.135.1
github.com/pulumi/pulumi/sdk/go/pulumi-language-go/v3 require patch v3.0.0-20240910123829-a0ad0ad24344 -> v3.0.0-20241007134904-3d2b7dedcc62
github.com/pulumi/pulumi/sdk/nodejs/cmd/pulumi-language-nodejs/v3 require patch v3.0.0-20240910123829-a0ad0ad24344 -> v3.0.0-20241007134904-3d2b7dedcc62
github.com/pulumi/pulumi/sdk/python/cmd/pulumi-language-python/v3 require patch v3.0.0-20240910123829-a0ad0ad24344 -> v3.0.0-20241007134904-3d2b7dedcc62
github.com/pulumi/pulumi/sdk/v3 require minor v3.134.1 -> v3.135.1

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

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

v3.135.1

Compare Source

3.135.1 (2024-10-04)
Features
  • [sdk/nodejs] Enable better error messsages to be returned from provider construct failures
    #​17325
Bug Fixes
  • [auto] Fix regression in automation API for deployments where events for a Pulumi operation are not received
    #​17334

  • [cli/new] Respect existing stack configuration when initialising secret managers
    #​17465

  • [sdk/yaml] Fix pulumi config set behaviour to append to end of file
    #​17452

v3.135.0

Compare Source

3.135.0 (2024-10-01)
Features
  • [backend/{diy,service}] Send secrets managers as initial state when creating stacks
    #​17387

  • [sdk/python] Search upwards for pyproject.toml when using Poetry
    #​17388

Bug Fixes
  • [cli/config] Improve usage string for config env add/rm commands
    #​17407

  • [cli/new] Check zipped templates for Pulumi.yaml files
    #​17437

  • [engine] Disable the enviromental GITHUB_TOKEN on 401 responses
    #​17351

  • [engine] Fix a panic when multiple component provider construct calls fail
    #​17439

  • [sdkgen/go] Fix nested string map map map properties
    #​17417

  • [sdk/nodejs] Fix dependency installation for nodejs projects with a main property
    #​17391

  • [sdk/python] Add missing package_ref paramater to ProviderResource
    #​17432

Miscellaneous
  • [sdkgen] Validate schema version is provided when package supports packing
    #​17420

  • [sdk/python] Replace asyncio.ensure_future with create_task
    #​17406

  • [sdkgen/{nodejs,python}] Bump minimum valid SDK version to v3.134.1 so that output-invokes work and maintain secrets
    #​17390


Configuration

📅 Schedule: Branch creation - "before 6pm" (UTC), Automerge - "before 4am on Monday" (UTC).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, 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-bot pulumi-bot added dependencies Pull requests that update a dependency file impact/no-changelog-required This issue doesn't require a CHANGELOG update labels Oct 4, 2024
@pulumi-bot pulumi-bot enabled auto-merge (rebase) October 4, 2024 18:01
Copy link

github-actions bot commented Oct 4, 2024

Does the PR have any schema changes?

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

Copy link

codecov bot commented Oct 4, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 87.78%. Comparing base (9d3d071) to head (f4e27fc).

Additional details and impacted files

Continue to review full report in Codecov by Sentry.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 9d3d071...f4e27fc. Read the comment docs.

@pulumi-bot pulumi-bot force-pushed the renovate/main-pulumi branch 12 times, most recently from 365af0d to fc45709 Compare October 7, 2024 16:01
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.

2 participants