fix(deps): update module github.com/pulumi/pulumi/pkg/v3 to v3.232.0#369
fix(deps): update module github.com/pulumi/pulumi/pkg/v3 to v3.232.0#369renovate[bot] wants to merge 6 commits intomainfrom
Conversation
ℹ️ Artifact update noticeFile name: go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
|
ac8b692 to
5c8938d
Compare
5c8938d to
710e61d
Compare
|
@claude fix the PR build error |
|
Claude finished @praneetloke's task in 14m 24s —— View job Fixing PR Build Error
SummaryPushed fad841f with two fixes:
|
Replace pulumi-dotnet dependency with local CSharpPropertyInfo struct since all available pulumi-dotnet versions use APIs removed in pulumi/pkg/v3 v3.232.0 (pcl.FixupPulumiPackageTokens, Resource.DecomposeToken). Migrate from glog to log/slog to fix Go 1.26 flag conflict where both glog and the testing framework register a -v flag, causing test panics. Co-authored-by: Praneet Loke <praneetloke@users.noreply.github.com> Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. |
|
@claude I don't want to remove |
|
Claude finished @praneetloke's task in 3m 28s —— View job Reverting pulumi-dotnet Removal and Pinning to Commit
SummaryPushed 8874df3 which:
The |
Instead of removing pulumi-dotnet and defining CSharpPropertyInfo locally, pin to the unreleased commit on main that already supports pulumi/pkg/v3@v3.232.0. Renovate will update to the tagged release once published. Co-authored-by: Praneet Loke <praneetloke@users.noreply.github.com> Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Updated golangci-lint version to a specific commit hash.
This PR contains the following updates:
v3.230.0→v3.232.0Release Notes
pulumi/pulumi (github.com/pulumi/pulumi/pkg/v3)
v3.232.0Compare Source
3.232.0 (2026-04-22)
Features
[cli] Add an experimental
pulumi neocommand that creates a Pulumi Neo agent task in CLItool-execution mode and runs the local tool loop. Filesystem and shell tool calls
issued by the agent run on the user's machine in their working directory; the
interactive chat continues to happen in the Pulumi Console at the URL the command
prints. Hidden behind PULUMI_EXPERIMENTAL.
#22473
[cli] Add support for handling user approval requests in the
pulumi neoterminal UI.When the agent requests confirmation for a sensitive action, the TUI prompts the
user and forwards their response back to the Pulumi Console. Hidden behind
PULUMI_EXPERIMENTAL.
#22589
[cli] Add an interactive terminal UI for
pulumi neobuilt with bubbletea, renderingagent messages, tool calls, and streaming output in the terminal alongside the
Pulumi Console session. Hidden behind PULUMI_EXPERIMENTAL.
#22570
[cli] Switch logging library from glog to slog.
BREAKING: any
if logging.V(x) {need to be changed toif logging.V(x).Enabled()#22548
[cli] Add a plan-mode toggle to the
pulumi neoTUI, bound to Shift+Tab. Whenplan mode is on, Neo explores and asks questions without writing files,
running
pulumi up, or opening PRs, and surfaces an approved plan via adedicated approval gate. The toggle must be set before the first message
(plan mode is task-level on the wire); approving the proposed plan exits
plan mode automatically.
#22634
[cli] The
pulumi neoTUI now drives its "thinking" spinner off a single declarativerule (the spinner stays on until a final event — final assistant message, approval
request, cancellation, or error — lands), so the indicator no longer flickers off
when the agent hands off tool calls to the CLI or when streaming text arrives
between tools. Press
Escduring a turn to ask the agent to cancel; the labelswitches to "Cancelling..." until the backend acknowledges.
#22637
[cli]
pulumi neonow executes theeditfilesystem tool locally, matching the schemaand response wording of the upstream mcp-claude-code tool so the agent sees
identical output whether the call ran on Cloud or CLI.
editperforms exact-stringreplacement with occurrence-count validation, and creates a new file when the
target is missing and
old_stringis empty.#22654
Bug Fixes
[cli] Render user messages in the
pulumi neoTUI as soon as they're submittedinstead of waiting for the Pulumi Cloud event stream to echo them back.
The initial prompt passed on the command line also appears in the
transcript at startup. Self-echoes from the server are de-duplicated;
user input that originated from another client (e.g. the web UI on the
same task) still renders.
#22629
[cli] Wrap warnings, errors, and user-message bubbles to the terminal width in the
pulumi neoTUI. Previously these blocks rendered as single long lines thatwere clipped at the right edge of the viewport. On resize, all width-dependent
transcript blocks (user messages, warnings, errors, assistant messages) now
reflow to the new terminal width.
#22635
[cli/policy] Fix
policy lsto use the default org name, not username#22656
[engine] Fix provider registry race condition in parallel delete-before-replace
#21487
[engine] Signal providers to cancel before closing them during replacement
[sdkgen] Error on 'id' in state inputs
#22636
[programgen/python] Add necessary casts between types in generated programs
#22567
[sdkgen/go] Fix caching of package references to be per-deployment not per-process
#22170
Miscellaneous
[java] Upgrade java to v1.25.0
#22673
[auto/go] Generate command methods for the Go Automation API codegen
#22612
[sdk] Clarify docs on the
remoteparameter ofComponentResource/Resourcein the Node and Python SDKs#22603
[sdk/dotnet] Upgrade dotnet to v3.103.1
#22676
[yaml] Upgrade yaml to v1.32.0
#22674
v3.231.0Compare Source
3.231.0 (2026-04-16)
Features
[cli] Auto-detect Mercurial repository metadata for
pulumi up/pulumi previewupdates, mirroring existing Git support#22618
[engine] Send Cancel RPC to plugins on host close for graceful shutdown
#22569
[engine] Pass resource options to hooks through the engine
#22582
[engine] Add GetDeploymentInfo to the resource monitor service
[auto/go] Add
Newcommand to Automation API#22439
[auto/{go,nodejs,python}] Add --diff to automation api for destroy
#22563
[auto/python] Add
newcommand to Automation API#22439
[pcl] Support for resource hooks in PCL
#22365
[sdk-nodejs] Warn when a non-ComponentResource class is passed in the explicit
componentslist tocomponentProviderHost#22619
[sdk-python] Warn when a non-ComponentResource class is passed in the explicit
componentslist tocomponent_provider_host#22619
[cli/import] Add support for providers to be defined in the same import file as their users
#21671
[cli/policy] ESC environment support for local policy packs
#22495
[sdk/nodejs] Support package.yaml when using pnpm
#22491
[sdk/python] Add function decorator variants for resource and error hooks
#22519
Bug Fixes
[auto/{nodejs,python}] Support --run-program for inline programs with preview_refresh/destroy
[backend/diy] Remove state lock for destroy and import with preview only for diy backend
#22561
[engine] Fix snapshot integrity error with component/provider resources in refresh --run-program
#21817
[pcl] Type list and tuple indices as integers not numbers
#22592
[pcl] Builtin functions element and range take int parameters not numbers
#22597
[programgen/{go,nodejs,python}] Fix some cases of name conflicts in program gen not being handled correctly
#22556
[programgen/nodejs] Add necessary casts between types in generated programs
#22557
[programgen/{nodejs,python}] Fix imports of camelCase modules
#22536
[sdk/python] Support Input[Optional[T]] in Python runtime type unwrapping
#22553
[sdkgen] Warn about modules nested under the index module which are not supported
#22531
Miscellaneous
[java] Upgrade java to v1.24.0
#22615
[yaml] Upgrade yaml to v1.31.1
#22610
[sdk/dotnet] Upgrade dotnet to v3.103.0
#22614
[sdk/nodejs] Replace
gotbyfetch#22533
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.