Skip to content

fix(deps): update all minor updates#279

Open
renovate[bot] wants to merge 1 commit intodevelopmentfrom
renovate/all-minor
Open

fix(deps): update all minor updates#279
renovate[bot] wants to merge 1 commit intodevelopmentfrom
renovate/all-minor

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Jan 19, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update
@pulumi/kubernetes (source) 4.21.04.30.0 age confidence dependencies minor
@pulumi/pulumi (source) 3.146.03.235.0 age confidence dependencies minor
@tanstack/react-query (source) 5.28.145.100.9 age confidence dependencies minor
@types/node (source) 22.18.1022.19.17 age confidence devDependencies minor
@types/react (source) ^19.0.0^18.3.28 age confidence devDependencies minor
@types/react-dom (source) ^19.0.0^18.3.7 age confidence devDependencies minor
@typescript-eslint/eslint-plugin (source) 7.4.07.18.0 age confidence devDependencies minor
@typescript-eslint/parser (source) 7.4.07.18.0 age confidence devDependencies minor
@vitejs/plugin-react-swc (source) 3.6.03.11.0 age confidence devDependencies minor
axios (source) 1.6.81.16.0 age confidence dependencies minor
eslint (source) 9.0.09.39.4 age confidence devDependencies minor
eslint-plugin-react-refresh ^0.4.3^0.5.0 age confidence devDependencies minor
gradle (source) 8.128.14.4 age confidence minor
pulumi/pulumi 3.145.03.235.0 age confidence image-name minor
react (source) ^19.0.0^18.2.0 age confidence dependencies minor
react-dom (source) ^19.0.0^18.2.0 age confidence dependencies minor
react-router-dom (source) 6.22.36.30.3 age confidence dependencies minor
typescript (source) 5.4.45.9.3 age confidence devDependencies minor
typescript (source) 5.7.35.9.3 age confidence dependencies minor
vite (source) 5.2.85.4.21 age confidence devDependencies minor
io.insert-koin:koin-test (source) 4.0.14.2.1 age confidence dependencies minor
org.java-websocket:Java-WebSocket 1.5.71.6.0 age confidence dependencies minor
io.insert-koin:koin-logger-slf4j (source) 4.0.14.2.1 age confidence dependencies minor
io.insert-koin:koin-ktor (source) 4.0.14.2.1 age confidence dependencies minor
org.jetbrains.kotlin.plugin.serialization 2.0.212.3.21 age confidence plugin minor
org.jetbrains.kotlin.jvm 2.0.212.3.21 age confidence plugin minor
io.micrometer:micrometer-registry-prometheus 1.14.31.16.5 age confidence dependencies minor
org.jetbrains.kotlin:kotlin-test-junit (source) 2.1.02.3.21 age confidence dependencies minor

Release Notes

pulumi/pulumi-kubernetes (@​pulumi/kubernetes)

v4.30.0

Compare Source

4.30.0 (April 24, 2026)
Fixed
  • #​4295Fix kustomize.v2.Directory resource output type in the schema to properly support array outputs.
    Previously, the resources field was incorrectly typed as a string in the schema. This fix updates the type to an array of Any, aligning the schema with the provider's Go implementation (pulumi.ArrayOutput). This resolves a regression that caused the Kustomize v2 resource to fail in the Python SDK.
  • #​2997 Stop stripping null values when unmarshaling, fixing Helm chart default deletion and valueYamlFiles null handling. Deprecate allowNullValues (no longer needed).
Changed
  • Upgrade Kubernetes schema and libraries to v1.35.4.
  • Upgrade Kubernetes schema and libraries to v1.36.0.

v4.29.0

Compare Source

Fixed
  • #​2926 Use client-side create for new resources instead of server-side apply.

    Users may observe stricter errors on some Create operations. Please read carefully.

    When a resource already exists in the cluster, the API server now returns an AlreadyExists error instead of silently updating the existing object.
    This prevents data loss from create-then-delete scenarios (e.g. renaming a Pulumi resource or replacing an explicitly-named resource).
    A new provider config option upsertExistingObjects (default false) restores the previous upsert behavior for users who intentionally adopt existing cluster resources.
    To manage fields on existing objects without owning their lifecycle, use Patch resources (e.g. NamespacePatch).

Added
  • #​2280 Add enablePatchForce provider config option to force SSA patch conflicts on a per-stack basis.
Changed
  • Upgrade Kubernetes schema and libraries to v1.35.3.

v4.28.0

Compare Source

Changed
  • Upgrade Kubernetes schema and libraries to v1.35.2.

v4.27.0

Compare Source

Fixed
  • #​4181 Fix PVC timeout when updating to a storage class with WaitForFirstConsumer bind mode.
Added
  • #​3661 Support for OCI login inside the provider process. Providing a username/password to Chart v4 and Release v3 will now login to private OCI
    registries as expected.
    (#​2911 and #​1914)

v4.26.0

Compare Source

Fixed
  • #​4122 Implements a new provider config option, alwaysRender, which sets Diff_Someto true when used in combination with renderYAMLtoDirectory.
    This allows for user-defined opt-in behavior for YAML manifests to be idempotently generated on every pulumi up, and for Update() to show these changes to a user.

  • Fixed a race condition in StatefulSet await logic where Pulumi could
    incorrectly report a rollout as complete before the controller had processed
    the update. This occurred when Pulumi checked status fields before the
    controller updated observedGeneration, causing stale "ready" values to be
    trusted.

  • Fixed a regression of
    #​2943 which could
    cause Deployments to erroneously report diffs.

Changed
  • Upgraded helm.sh/helm to v3.18.6. (#​3969)

  • #​4156 Upgrade Kubernetes schema and libraries to v1.35.1

v4.25.0

Compare Source

v4.24.1

Compare Source

Fixed
  • Fixed a regression of #​2943 which could cause Deployments to erroneously report diffs.
Changed
  • Upgraded helm.sh/helm to v3.18.6. (#​3969)

v4.24.0

Compare Source

Added
  • Added a plainHttp option to the v4.Chart resource. (#​3250)
Changed
  • The pulumi.com/waitFor annotation now uses an
    RFC9535-compliant JSONPath
    parser. This makes it possible to wait for more complex scenarios.

    For example:

    • To wait for a Pod's status.phase to be "Running" or "Succeeded":

      pulumi.com/waitFor: "jsonpath={.status[?@​ == 'Running' || @​ == 'Succeeded' ]}"

    • To wait for for an object to have a "Failed" or "Complete" condition with
      a "True" value:

      pulumi.com/waitFor: "jsonpath={.conditions[?(@​.type=='Failed'||@​.type=='Complete')].status}=True

    (Tools like jsonpath.com are very helpful for
    ensuring your JSONPath expression works as expected.)

    Importantly, please note that kubectl wait --for=jsonpath=... supports only
    a subset of RFC9535. This means some complex waitFor annotations will not
    be reproducible with kubectl.

    Existing expressions should continue to work normally with one notable
    exception: a selector like .items[] now requires an explicit wildcard, i.e.
    .items[*].

    As a reminder, the pulumi.com/waitFor annotation is experimental and
    subject to change. Similarly, RFC9535 is still only proposed and may also
    change in the future.

  • enableConfigMapMutable and enableSecretMutable are now stable.
    (#​3886)

Fixed
  • Helm resources all now use the correct registry/config.json file for
    credentials. For backward-compatibility registry.json is preferred if
    it exists. (#​3606)

  • Fixed an issue where deletions could take longer than necessary. (#​3317)

  • Significantly reduced memory usage. (#​3713)

  • Fixed incorrect deprecation warnings for VolumeAttributesClass. (#​3772)

  • SecretPatch inputs are now automatically marked as secret.

v4.23.0

Compare Source

Changed
  • Updated Kubernetes schemas and libraries to v1.33.0. (#​3619)

v4.22.2

Compare Source

Fixed
  • Fix panic when valueYamlFiles field in helm.v3.Release resources are nil (#​3601)

v4.22.1

Compare Source

Fixed
  • Fix race condition in Deleted condition (#​3550)

v4.22.0

Compare Source

Changed
  • Update Pulumi dependency to v3.153.1 (#​3534)
  • Update ESC dependency to v0.13.0 (#​3551)
Fixed
  • Fix race condition in Deleted condition. (#​3550)

v4.21.1

Compare Source

Added
  • Windows executable releases are now signed. (#​3455)
pulumi/pulumi (@​pulumi/pulumi)

v3.235.0

Compare Source

3.235.0 (2026-05-05)

Features
  • [cli] Add pulumi logs decrypt command for viewing logs
    #​22523

  • [cli] Bundle the hcl language host (from pulumi-labs/pulumi-hcl)
    #​22807

  • [cli] Automatically install the hcl converter from pulumi-labs/pulumi-hcl when running pulumi convert --from hcl
    #​22816

  • [pcl] Add read blocks to PCL to read resources via ID and query instead of registering them
    #​22641

  • [cli/cloud] Add pulumi cloud api <op-or-path> for calling any Pulumi Cloud API
    endpoint, with --field/--header/--input/--body flag handling, path
    template binding, content negotiation via --format, and --dry-run

    #​22771

  • [cli/cloud] Add --paginate to pulumi cloud api: follow continuation cursors,
    accumulate items into a single JSON envelope, and surface progress
    events to stderr with --emit-events (page, complete, truncated,
    partial_failure, cancelled).

    #​22772

Bug Fixes
  • [cli] Fix the pulumi neo shell tool to honor the agent-supplied timeout and to terminate the whole process tree (and unblock cmd.Wait) when the deadline fires, so commands like kubectl logs -f no longer hang Neo indefinitely.
    #​22820

  • [cli] Surface the error and exit when pulumi neo fails to create the underlying task, instead of leaving the TUI stuck in Thinking…
    #​22825

  • [codegen/go] Correctly generate []pulumi.Asset & []pulumi.Archive
    #​22827

  • [cli/neo] Exit cleanly when the user presses Ctrl+C twice in pulumi neo instead of hanging until a third press
    #​22821

  • [engine] The engine now caches schemas at PULUMI_HOME/schemas, and will cache for parameterised packages as well
    #​22812

  • [sdk-python] Preserve __-prefixed keys (e.g. __type discriminators) across RPC deserialization, matching the behavior of the other language SDKs
    #​22834

  • [programgen/{nodejs,python}] Fix programgen to emit the right length check for string length
    #​22802

Miscellaneous
  • [cli] Replace the Pulumipus mascot in the pulumi neo welcome banner with new Neo-branded ASCII art.
    #​22817

v3.234.0

Compare Source

Features
  • [cli/cloud] Add pulumi cloud api describe for inspecting the parameters, request
    body, and response schema of any Pulumi Cloud API operation, with
    text, markdown, and JSON output

    #​22770

  • [cli/cloud] Add pulumi cloud api list for browsing every endpoint exposed by the Pulumi
    Cloud OpenAPI spec, with table and JSON output

    #​22769

Bug Fixes
  • [engine] Revert changes to property path parsing that resulted in errors for currently valid paths

v3.233.0

Compare Source

Features
  • [auto/python] Expose the auto-generated Pulumi CLI interface as workspace.cli_api
    #​22638

  • [cli] Add encrypted logging to ~/.pulumi/logs; use the PULUMI_ENABLE_AUTOMATIC_LOGGING feature flag to turn it on
    #​22494

  • [cli] Implement the filesystem__grep and filesystem__content_replace local tools
    for pulumi neo. grep runs a regex search across files in the project root
    with an optional include glob filter and returns results in path:lineno: line
    form. content_replace performs a literal multi-file search-and-replace with a
    file_pattern glob and dry_run preview mode. Both tools skip binary files,
    hidden directories, and node_modules, and reject paths outside the project
    root. Their input schemas match the cloud-side tool definitions.

    #​22655

  • [cli] Add pulumi_preview and pulumi_up as local tools for the experimental pulumi neo
    agent. The Neo TUI renders a persistent bordered block for each operation that
    streams changed resources and diagnostics as the engine runs and finalizes with a
    summary of the op counts. Hidden behind PULUMI_EXPERIMENTAL.

    #​22697

  • [engine] Add List to the provider protocol and schema
    #​22693

Bug Fixes
  • [engine] Return a clear error when two installed plugins claim the same default provider package name (for example, a native scaleway provider alongside a terraform-provider bridge parameterized as scaleway) instead of panicking with "Should not have seen an older plugin if sorting is correct!"
    #​22679

  • [programgen] Do not wrap a call(...) on a method whose return type is marked plain in an Output. Previously
    PCL bound every method call's return type as Output<T>, which caused downstream program-gen
    to emit broken .apply(...)/.ApplyT(...) traversals against plain struct returns (e.g.
    methods with liftSingleValueMethodReturns=true or ReturnTypePlain=true).

    #​22696

  • [backend/diy] When using a backend url containing creds (e.g. PostgreSQL conn string), mask user:pass as in lock-related error messages
    #​22701

  • [codegen/go] Generate unqualified Provider references for the package's own provider resource. Previously
    the Go codegen always emitted <pkg>.Provider even when the reference appeared inside <pkg>
    itself, producing identifiers that would not compile. Affects generated code for method return
    types (and other schema positions) that reference pulumi:providers:<pkg>.

    #​22696

  • [codegen/nodejs] Generate unqualified Provider references for the package's own provider resource when emitting
    TypeScript code inside that package. Previously the generator always qualified the name as
    <pkg>.Provider, which does not resolve when no <pkg> namespace import is in scope.

    #​22696

  • [codegen/nodejs] Import the correct class name for a provider resource. Imports for pulumi:providers:<pkg> used
    the title-cased package name instead of Provider, producing a phantom identifier that clashed
    with the containing package's component/resource classes.

    #​22696

  • [programgen/nodejs] Emit await for call(...) invocations of methods whose return type is marked plain, and
    force the generated program into an async export = async () => ... wrapper whenever such a
    call is present. The Node SDK returns Promise<T> for plain methods; previously program-gen
    used the result directly, which did not match its runtime type.

    #​22696

  • [codegen/python] Avoid a self-import (import pulumi_<pkg> inside pulumi_<pkg>/<module>.py) when referencing
    the package's own provider resource. Python referenced the Provider as pulumi_<pkg>.Provider
    even inside that package, which caused a circular import at runtime.

    #​22696

  • [sdk/python] Reduce internal Output[T] data to a single asyncio.Future
    #​22661

  • [sdkgen/{nodejs,python}] Generate optional input types that accept undefined/None values
    #​22552

Miscellaneous
  • [auto/go] Drop the "With" prefix from generated option helpers so they match the naming of the existing optXxx packages
    #​22682

v3.232.0

Compare Source

Features
  • [cli] Add an experimental pulumi neo command that creates a Pulumi Neo agent task in CLI
    tool-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 neo terminal 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 neo built with bubbletea, rendering
    agent 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 to if logging.V(x).Enabled()

#​22548

  • [cli] Add a plan-mode toggle to the pulumi neo TUI, bound to Shift+Tab. When
    plan mode is on, Neo explores and asks questions without writing files,
    running pulumi up, or opening PRs, and surfaces an approved plan via a
    dedicated 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 neo TUI now drives its "thinking" spinner off a single declarative
    rule (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 Esc during a turn to ask the agent to cancel; the label
    switches to "Cancelling..." until the backend acknowledges.

    #​22637

  • [cli] pulumi neo now executes the edit filesystem tool locally, matching the schema
    and response wording of the upstream mcp-claude-code tool so the agent sees
    identical output whether the call ran on Cloud or CLI. edit performs exact-string
    replacement with occurrence-count validation, and creates a new file when the
    target is missing and old_string is empty.

    #​22654

Bug Fixes
  • [cli] Render user messages in the pulumi neo TUI as soon as they're submitted
    instead 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 neo TUI. Previously these blocks rendered as single long lines that
    were 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 ls to 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 remote parameter of ComponentResource / Resource in 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.0

Compare Source

Features
  • [cli] Auto-detect Mercurial repository metadata for pulumi up / pulumi preview updates, 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 New command to Automation API
    #​22439

  • [auto/{go,nodejs,python}] Add --diff to automation api for destroy
    #​22563

  • [auto/python] Add new command 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 components list to componentProviderHost
    #​22619

  • [sdk-python] Warn when a non-ComponentResource class is passed in the explicit components list to component_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

v3.230.0

Compare Source

Features
  • [cli] Detect AI agents and send in update metadata
    #​22497

  • [auto/nodejs] Add "org" commands (get-default, set-default, search, search ai) to the auto-generated interface
    #​22395

  • [auto/nodejs] Add "new" command to the auto-generated interface
    #​22421

  • [sdk/{nodejs,python}] Add Cancel handler to Python & Node.js providers
    #​22516

  • [cli/policy] Add ESC environment resolution for policy packs
    #​22425

Bug Fixes
  • [auto/go] Insert --non-interactive flag before "--" positional separator to avoid misinterpretation as a positional argument
    #​22462

  • [ci] Add code coverage collection for Node.js automation tools tests
    #​22412

  • [pcl] Allow key indexing into a map of resources created by range
    #​22498

  • [programgen/go] Fix an issue with formatted index modules not importing correctly

  • [cli/state] Check for Pulumi.yaml projects and backend option in state upgrade
    #​22483

  • [sdk/go] Fix Go program generation for ternary expressions inside apply callbacks, add Go predeclared identifiers to reserved words, handle optional list types in union type codegen, and fix unmarshalOutput for known outputs with null elements.
    #​22460

  • [sdk/nodejs] Fix inherited input properties missing from component schema when args interface extends another interface
    #​22446

  • [sdk/python] Fix inherited input properties missing from component schema when args class inherits from a base class
    #​22484

Miscellaneous
  • [java] Upgrade java to v1.23.0

  • [sdk/dotnet] Upgrade dotnet to v3.102.1

  • [yaml] Upgrade to v1.31.0
    #​22501

  • [programgen/{dotnet,go,java,nodejs,pcl,python,yaml}] Remove mimeType & readDir from PCL
    #​22449

v3.229.0

Compare Source

Features
  • [auto/python] Add org get-default and set-default commands to Automation API

  • [backend/diy] Avoid unnecessary S3 bucket HEAD calls to improve performance
    #​22373

  • [cli] Allow TRACEPARENT to be set for CLI invocations, parenting the pulumi spans under an existing parent span
    #​22369

  • [cli/display] Add --urns flag to display full resource URNs instead of short names in preview, up, destroy, refresh, import, and watch commands
    #​22007

  • [pcl] Type integer literals as integers rather than numbers in PCL
    #​22268

  • [pcl] Support parameterized providers in PCL
    #​22251

  • [protobuf] Add RunPlugin2 bidirectional streaming RPC to LanguageRuntime proto
    #​22389

  • [yaml] Update YAML runtime to 1.30.2
    #​22426

  • [sdk/go] Add org get-default and set-default commands to Automation API

  • [sdk/nodejs] Modernize generated tsconfig.json to align with TypeScript defaults
    #​22370

  • [cli/policy] Add a new policy analyze command to run a policy pack against existing state
    #​22250

Bug Fixes
  • [backend/diy] Remove state lock for refresh --preview-only for diy backend
    #​22385

  • [cli] Fix OTEL flushing on provider shutdown
    #​22358

  • [cli/display] Fix deadlock in message renderer when cancelling an operation
    #​22433

  • [engine] Fix --include and --exclude not working for program-based refresh (RefreshV2)
    #​22404

  • [engine] Parallelize plugin cancellation in SignalCancellation
    #​22431

  • [pcl] Fix looking up variables in parent scopes
    #​22379

  • [pcl] Apply default values from resource schemas
    #​22393

  • [sdk/{bun,go,nodejs,python}] Wire Cancel RPC to language host Run
    #​22397

  • [sdk/nodejs] Allow TypeScript 6 as a peer dependency
    #​22340

  • [sdk/nodejs] Fix closure serialization for __importStar-wrapped modules
    #​22388

  • [sdk/python] Cache type metadata and class references in Python SDK to reduce CPU overhead during serialization
    #​22422

  • [sdk/python] Replace busy-wait polling in wait_for_rpcs with asyncio.wait
    #​22411

Miscellaneous
  • [cli] Add update metadata to the otel root span
    #​22357

  • [java] Update to v1.22.0
    #​22437

  • [sdk/nodejs] Use nodenext for moduleResolution and module
    #​22363

v3.228.0

Compare Source

Features
  • [cli] Don't apply the secrets filter to true and false (case-insensitive)
    #​22269

  • [cli] Add grpcs:// support and header authentication to OTLP exporter
    #​22320

  • [cli] Read OTEL_RESOURCE_ATTRIBUTES
    #​22329

  • [auto/nodejs] Add low-level "cancel" command to the auto-generated interface
    #​22156

  • [cli/state] Allow pulumi state delete to accept multiple resource URNs and delete them in a dependency-safe order

Bug Fixes
  • [cli] Allow relative file paths for --otel-traces
    #​22300

  • [cli] Bridge opentracing spans from providers into OTel
    #​22313

  • [cli] Correctly end spans for GRPC streams
    #​22304

  • [cli/about] Do not include the access token in plain text
    #​22347

  • [display] Fix detailed diff indentation so changed resources are not visually nested under unrelated visible resources when unchanged parents are hidden.
    #​22317

  • [cli/import] Fix import codegen when generating references to non-standard names
    #​22319

  • [engine] Update golang version
    #​22277

  • [pcl] Typecheck component inputs in PCL programs
    #​22292

  • [programgen/{nodejs,python}] Fix literal conversion when calling into local components
    #​22306

Miscellaneous
  • [cli] Add CLI metadata to the root span
    #​22305

  • [cli] Add more OTel interceptors for GRPC clients
    #​22309

  • [cli] Add spans for plugin installation and add more attributes for dependency installation
    #​22303

  • [cli] Allow setting a GRPC endpoint for performance tests
    #​22330

  • [backend/diy] Start deprecation of non-project mode for DIY backends
    #​19625

v3.227.0

Compare Source

Features
  • [engine] The engine will fill in Name and Type for ResourceReference values on the wire protocol
    #​22208

  • [sdk/bun] Add support for running policy packs with bun
    #​22206

  • [cli/policy] Auto-install missing policy analyzer plugins
    #​22196

  • [sdk/python] Add lock file detection for picking the Python toolchain
    #​22234

Bug Fixes
  • [cli] Use distinct exit codes for different types of error
    #​22205

  • [cli] Improve SAML SSO reauthorization error message

  • [engine] Fix snapshot integrity error in refresh v2 with changed parents
    #​22190

  • [pcl] Continue running after errors when running with --continue-on-error
    #​22171

  • [pcl] Deprecate labels on package blocks
    #​22253

  • [programgen] Preserve traversal parts in rewriteRelativeTraversalExpression
    #​22249

  • [sdk/bun] Check for an SDK version compatible with bun
    #​22262

  • [programgen/nodejs] Correctly generate for expressions
    #​22219

  • [sdk/go] Add support for Azure DevOps git URLs in pulumi package publish code paths
    #​22217

  • [programgen/python] Correctly generate list & dictionary comprehension in Python code
    #​22182

Miscellaneous
  • [backend] Move CloudConsoleURL from httpstate to httpstate/client
    #​22258

  • [docs] Move remaining content from /developer-docs to /docs
    #​22225

  • [sdk/bun] Add a test for the function serialization error message when using bun
    #​22207

  • [sdk/bun] Run policy language tests for bun
    #​22209

  • [sdk/bun] Mark pulumi-language-bun as a bundled plugin
    #​22265

  • [sdk/{bun,nodejs}] Use defaultErrorMessage in run-plugin and run-policy-pack
    #​22210

v3.226.0

Compare Source

Features
  • [backend/service] Automatically repair snapshot integrity issues, while sending an error event to the backend for further diagnosis
    #​22179

  • [cli] Add a --otel-traces flag, that allows writing otel traces to a file, or directly to a grpc interface
    #​22129

  • [engine] Engine will use provider references from __self__ arguments to calls
    #​22114

  • [sdk/bun] Support bun as a runtime
    #​22177
    #​22049

  • [sdk/bun] Add debugger support for the bun runtime
    #​22177

  • [sdk/bun] Add support for Bun as a plugin runtime
    #​22189

Bug Fixes
  • [engine] Fix ReplacementTrigger firing due to dependency changes
    #​22119

  • [engine] Correctly serialize output values to the snapshot rather than always recording them as computed even when known
    #​22120

  • [pcl] Support resource ranges in PCL
    #​22144

  • [cli/config] Include environments used when refreshing a stack's config
    #​22103

  • [cli/display] Fix pulumi destroy not showing parent resource hierarchy
    #​22148

  • [cli/package] Correctly parse package URLs with .git in them
    #​22174

  • [cli/plugin] Fix package get-schema for binary providers at relative paths
    #​22107

  • [sdk/python] Handle null detailedDiff in automation StepEventMetadata JSON parsing
    #​22140

  • [cli/state] Fix state move integrity errors when copied providers depend on resources left in source stack
    #​22141

Miscellaneous
  • [cli/about] Show b

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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 was generated by Mend Renovate. View the repository job log.

@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented Jan 19, 2025

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: frontend/package-lock.json
npm warn Unknown env config "store". This will stop working in the next major version of npm. See `npm help npmrc` for supported config options.
npm error code ERESOLVE
npm error ERESOLVE unable to resolve dependency tree
npm error
npm error While resolving: frontend@0.0.0
npm error Found: eslint@9.39.4
npm error node_modules/eslint
npm error   dev eslint@"^9.0.0" from the root project
npm error
npm error Could not resolve dependency:
npm error peer eslint@"^8.56.0" from @typescript-eslint/parser@7.18.0
npm error node_modules/@typescript-eslint/parser
npm error   dev @typescript-eslint/parser@"^7.0.0" from the root project
npm error   peer @typescript-eslint/parser@"^7.0.0" from @typescript-eslint/eslint-plugin@7.18.0
npm error   node_modules/@typescript-eslint/eslint-plugin
npm error     dev @typescript-eslint/eslint-plugin@"^7.0.0" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry this command with --force or --legacy-peer-deps to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /runner/cache/others/npm/_logs/2026-05-05T19_52_50_646Z-eresolve-report.txt
npm error A complete log of this run can be found in: /runner/cache/others/npm/_logs/2026-05-05T19_52_50_646Z-debug-0.log

@renovate renovate Bot force-pushed the renovate/all-minor branch 4 times, most recently from cd7574e to d68f376 Compare January 27, 2025 08:59
@renovate renovate Bot force-pushed the renovate/all-minor branch 2 times, most recently from b620c39 to d98eab1 Compare February 8, 2025 01:58
@renovate renovate Bot force-pushed the renovate/all-minor branch from d98eab1 to 1478aa9 Compare February 11, 2025 16:40
@renovate renovate Bot force-pushed the renovate/all-minor branch 6 times, most recently from 0b8cd70 to fc2ed0d Compare February 27, 2025 22:56
@renovate renovate Bot force-pushed the renovate/all-minor branch 4 times, most recently from c69dd7b to ba614df Compare March 7, 2025 18:39
@renovate renovate Bot force-pushed the renovate/all-minor branch 3 times, most recently from 9b3fb4a to 6a50ca0 Compare March 14, 2025 21:50
@renovate renovate Bot force-pushed the renovate/all-minor branch 6 times, most recently from 4845763 to dc3160b Compare March 25, 2025 03:50
@renovate renovate Bot force-pushed the renovate/all-minor branch 3 times, most recently from 66367da to 120e3d7 Compare April 1, 2025 16:25
@renovate renovate Bot force-pushed the renovate/all-minor branch 5 times, most recently from eea1a4b to 4a4cf98 Compare May 8, 2025 16:54
@renovate renovate Bot force-pushed the renovate/all-minor branch 4 times, most recently from c0cd29e to ab53171 Compare May 15, 2025 22:27
@renovate renovate Bot force-pushed the renovate/all-minor branch 4 times, most recently from 200840a to 249f4fb Compare May 27, 2025 14:39
@renovate renovate Bot force-pushed the renovate/all-minor branch 3 times, most recently from e533bce to 7e0c901 Compare June 5, 2025 01:36
@renovate renovate Bot force-pushed the renovate/all-minor branch 5 times, most recently from f1bbd57 to eb20517 Compare June 13, 2025 15:36
@renovate renovate Bot force-pushed the renovate/all-minor branch 2 times, most recently from bcde1f9 to aa3bb24 Compare June 20, 2025 12:37
@renovate renovate Bot force-pushed the renovate/all-minor branch 6 times, most recently from 434a9e0 to 6a1ebd9 Compare June 28, 2025 09:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants