Skip to content

build(deps): bump github.com/pulumi/pulumi/sdk/v3 from 3.220.0 to 3.225.1 in /deploy#1034

Merged
rdimitrov merged 1 commit intomainfrom
dependabot/go_modules/deploy/github.com/pulumi/pulumi/sdk/v3-3.225.1
Mar 6, 2026
Merged

build(deps): bump github.com/pulumi/pulumi/sdk/v3 from 3.220.0 to 3.225.1 in /deploy#1034
rdimitrov merged 1 commit intomainfrom
dependabot/go_modules/deploy/github.com/pulumi/pulumi/sdk/v3-3.225.1

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Mar 5, 2026

Bumps github.com/pulumi/pulumi/sdk/v3 from 3.220.0 to 3.225.1.

Release notes

Sourced from github.com/pulumi/pulumi/sdk/v3's releases.

v3.225.1

3.225.1 (2026-03-05)

Bug Fixes

  • [engine] Fix inheritence of default providers across resources of different packages #22101

  • [programgen/go] Fix panic on digit-prefixed schema properties in Go code generation #21917

  • [programgen/go] Fix plain values not always being lifted to input/output values when needed #22084

  • [programgen/python] Fix generation of entries and lookup calls #22086

v3.225.0

3.225.0 (2026-03-04)

Features

  • [engine] Automatically make invoke outputs secret when there is a secret input, and the invoke provider does not support secrets #21959

  • [engine] The engine now handles the inheritance of the provider option in resource registrations #21999

  • [engine] Enable journaling by default. It can still be turned off using the PULUMI_DISABLE_JOURNALING env variable #22041

  • [programgen] PCL can now express config values should be read as secrets #22066

  • [yaml] Update yaml to v1.30.0

  • [cli/engine] Add a flag for automatically opening a Neo task on preview/up failure #21960

  • [cli/package] Support source-based packages in pulumi schema check, not just schema files #21897

Bug Fixes

  • [cli] Fix stack import panicking when importing a service stack into a DIY backend #22076

... (truncated)

Changelog

Sourced from github.com/pulumi/pulumi/sdk/v3's changelog.

Changelog

3.225.0 (2026-03-04)

Features

  • [engine] Automatically make invoke outputs secret when there is a secret input, and the invoke provider does not support secrets #21959

  • [engine] The engine now handles the inheritance of the provider option in resource registrations #21999

  • [engine] Enable journaling by default. It can still be turned off using the PULUMI_DISABLE_JOURNALING env variable #22041

  • [programgen] PCL can now express config values should be read as secrets #22066

  • [yaml] Update yaml to v1.30.0

  • [cli/engine] Add a flag for automatically opening a Neo task on preview/up failure #21960

  • [cli/package] Support source-based packages in pulumi schema check, not just schema files #21897

Bug Fixes

  • [cli] Fix stack import panicking when importing a service stack into a DIY backend #22076

  • [engine] Fix panic when a new component resource in the program is not targeted #21957

  • [sdk/nodejs] Implement GetProgramDependencies for bun and pnpm #22065

Miscellaneous

  • [cli] Build language plugins with the grpcnotrace tag to reduce the binary size #22012

3.224.0 (2026-02-26)

Features

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [github.com/pulumi/pulumi/sdk/v3](https://github.com/pulumi/pulumi) from 3.220.0 to 3.225.1.
- [Release notes](https://github.com/pulumi/pulumi/releases)
- [Changelog](https://github.com/pulumi/pulumi/blob/master/CHANGELOG.md)
- [Commits](pulumi/pulumi@v3.220.0...v3.225.1)

---
updated-dependencies:
- dependency-name: github.com/pulumi/pulumi/sdk/v3
  dependency-version: 3.225.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels Mar 5, 2026
@rdimitrov rdimitrov merged commit 2656448 into main Mar 6, 2026
4 checks passed
@rdimitrov rdimitrov deleted the dependabot/go_modules/deploy/github.com/pulumi/pulumi/sdk/v3-3.225.1 branch March 6, 2026 00:10
tadasant added a commit that referenced this pull request Mar 6, 2026
…ot Go to 1.25.8 (#1040)

## Summary

Fixes two CI issues:

### 1. Deploy workflows broken since PR #1034 (all staging deploys
failing)

The deploy-staging and deploy-production workflows install Go using the
**root** `go.mod`, but then build Pulumi infrastructure code from the
`deploy/` directory which has its own `go.mod`.

This started failing when PR #1034 (`build(deps): bump
github.com/pulumi/pulumi/sdk/v3 from 3.220.0 to 3.225.1 in /deploy`)
bumped `deploy/go.mod` from Go 1.24.11 to **Go 1.25.6** — a version
newer than the root module's Go 1.24.13. Every staging deploy since that
merge (Mar 6) has failed with:

```
go: go.mod requires go >= 1.25.6 (running go 1.24.13; GOTOOLCHAIN=local)
```

The last successful deploy was commit cb4807a on Mar 1, before the Go
version bump.

**Fix**: point `go-version-file` in both deploy workflows at
`deploy/go.mod` instead of the root `go.mod`.

### 2. `govulncheck` failing due to Go stdlib vulnerabilities

Five new Go stdlib vulnerabilities (GO-2026-4599 through GO-2026-4603)
were published on Mar 5-6 affecting Go 1.24.13, fixed in Go 1.25.8.
These cause `govulncheck` in the CI pipeline to fail.

**Fix**: bump root `go.mod` from Go 1.24.13 to Go 1.25.8.

## Test plan
- [ ] CI pipeline passes (govulncheck, build, lint, tests)
- [ ] Verify the deploy-staging workflow passes on the next push to main
after merge

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-authored-by: Claude <noreply@anthropic.com>
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 go Pull requests that update go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant