fix(deps): update all non-major dependencies #59
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
4.1.1
->4.8.0
3.81.0
->3.107.0
16.18.82
->16.18.83
18.2.17
->18.2.57
18.2.7
->18.2.19
2.2.7
->2.2.9
6.2.0
->6.21.0
6.2.0
->6.21.0
3.3.2
->3.6.0
1.4.0
->1.6.7
8.46.0
->8.56.0
7.5.1
->7.6.4
6.3.1
->6.3.4
3.69.0
->3.107.0
6.14.2
->6.22.1
3.0.0-beta.0
->3.0.0-beta.2
5.1.6
->5.3.3
4.4.7
->4.5.2
3.4.1
->3.5.3
1.5.4
->1.5.6
3.4.1
->3.5.3
3.4.1
->3.5.3
1.0.0-pre.129-kotlin-1.4.20
->1.0.0-pre.156-kotlin-1.5.0
1.9.0
->1.9.22
1.9.0
->1.9.22
1.6.3
->1.12.3
1.4.8
->1.5.0
1.9.0
->1.9.22
2.3.2
->2.3.8
2.3.2
->2.3.8
2.3.2
->2.3.8
2.3.2
->2.3.8
2.3.2
->2.3.8
2.3.2
->2.3.8
2.3.2
->2.3.8
2.3.2
->2.3.8
2.3.2
->2.3.8
2.3.2
->2.3.8
2.3.2
->2.3.8
2.3.2
->2.3.8
2.3.2
->2.3.8
2.3.2
->2.3.8
Release Notes
pulumi/pulumi-kubernetes (@pulumi/kubernetes)
v4.8.0
Compare Source
v4.7.1
Compare Source
v4.7.0
Compare Source
Breaking Changes
In previous versions of the pulumi-kubernetes .NET SDK, the
ConfigFile
andConfigGroup
component resources inadvertently assigned the wrong parent to the child resource(s).This would happen when the component resource itself had a parent; the child would be assigned that same parent. This also had the effect of disregarding the component resource's provider in favor of the parent's provider.
For example, here's a before/after look at the component hierarchy:
Before:
After:
This release addresses this issue and attempts to heal existing stacks using aliases. This is effective at avoiding a replacement except in the case where the child was created with the wrong provider. In this case, Pulumi will suggest a replacement of the child resource(s), such that they use the correct provider.
v4.6.1
Compare Source
v4.6.0
Compare Source
PULUMI_KUBERNETES_MANAGED_BY_LABEL
env var with SSA created objects (https://github.com/pulumi/pulumi-kubernetes/pull/2711)Resources Renamed:
#/types/kubernetes:core/v1:ResourceRequirements
#/types/kubernetes:core/v1:VolumeResourceRequirements
#/types/kubernetes:core/v1:ResourceRequirementsPatch
#/types/kubernetes:core/v1:VolumeResourceRequirementsPatch
New Resources:
flowcontrol.apiserver.k8s.io/v1.FlowSchema
flowcontrol.apiserver.k8s.io/v1.FlowSchemaList
flowcontrol.apiserver.k8s.io/v1.FlowSchemaPatch
flowcontrol.apiserver.k8s.io/v1.PriorityLevelConfiguration
flowcontrol.apiserver.k8s.io/v1.PriorityLevelConfigurationList
flowcontrol.apiserver.k8s.io/v1.PriorityLevelConfigurationPatch
networking.k8s.io/v1alpha1.ServiceCIDR
networking.k8s.io/v1alpha1.ServiceCIDRList
networking.k8s.io/v1alpha1.ServiceCIDRPatch
storage.k8s.io/v1alpha1.VolumeAttributesClass
storage.k8s.io/v1alpha1.VolumeAttributesClassList
storage.k8s.io/v1alpha1.VolumeAttributesClassPatch
v4.5.6
Compare Source
v4.5.5
Compare Source
v4.5.4
Compare Source
v4.5.3
Compare Source
v4.5.2
Compare Source
v4.5.1
Compare Source
v4.5.0
Compare Source
v4.4.0
Compare Source
v4.3.0
Compare Source
v4.2.0
Compare Source
source-based and wheel distributions are now published. For most users the installs will now favor
the wheel distribution, but users invoking pip with
--no-binary :all:
will continue havinginstalls based on the source distribution.
pulumi/pulumi (@pulumi/pulumi)
v3.107.0
Compare Source
Features
[cli/config] Adds an
--open
flag topulumi config
command which resolves the environment listed in the stack configuration.#15469
[auto/go] Automation API support for
pulumi refresh --preview-only
#15340
[engine] Add support for remote transforms to the engine.
#15290
[pkg/testing] Add a InstallDevReleases option to ProgramTest, to install pulumi dev SDKs
#15387
[programgen/{dotnet,nodejs,python}] Emit Output-returning JSON serialization methods without rewriting applies for top-level function expression
#15371
[sdk/nodejs] Detect npm and yarn workspaces setups when installing dependencies
#15421
[sdk/nodejs] Use pnpm as package manager if we find a pnpm-lock.yaml file
#15456
Bug Fixes
[docs] Fixes docs generator parent module computation
#15035
[engine] Test and fix the engine filling in args dependencies to provider calls.
#15450
[programgen] Fix infinite recursion when binding invoke signature into promises without accounting for recursive type references
#15463
v3.106.0
Features
[components] Component providers can return output values in their response to the engine.
#15408
[programgen/{dotnet,go,nodejs,python}] Emit missing trivia for resources and local variables
#15419
[sdk/{nodejs,python}] Publish dev versions of the nodejs and python SDKs
#15299
Bug Fixes
[cli] Fix
pulumi destroy
to fill in stack config with the secret config from state, not fresh secret config.#15432
[engine] Engine no longer assumes program dependencies are specified as semantic versions.
#15409
[components/go] Component providers now correctly return output values to the engine.
#15405
Miscellaneous
[protobuf] Split CallRequest into ResourceCallRequest for the ResourceMonitor service.
#15404
[backend/diy] Add a warning that non-project mode will be deprecated at some point.
#15411
v3.105.0
Features
[auto/go] Adds support for
--refresh
to Stack.Up(), Stack.Preview() and Stack.Destroy() via go automation api#15350
[cli] Adds a
preview-only
flag topulumi refresh
.#15330
[cli] Adds
preview-only
flag forpulumi destroy
andpulumi import
#15336
[engine] Translate all Computed and Secret values to OutputValues for Construct and Call methods.
#15362
[cli/display] Add --suppress-progress option to not print dots
#14690
[sdk/go] Add
UpgradeToOutputValues
toMarshalOptions
.#15349
[cli/plugin] Add experimental
plugin run
command for running plugin binaries directly.#12613
[sdkgen/python] Update the default minimum required version of Python to 3.8 or greater for generated provider SDKs.
#15368
Bug Fixes
[backend/diy] Fix an issue where state stored on a mounted device would result in errors
#15375
[cli/state] Fix a panic when trying to delete a provider from the state that's still referenced.
#15322
[cli/state] Fix a nil reference panic in the
state edit
command.#15354
Miscellaneous
[docs] Add kubernetes as a supported pulumi convert language
#15359
[sdk/python] Require Python 3.8 or greater.
#15363
[sdk/python] Upgrade grpcio to 1.60.1
#15366
v3.104.2
Compare Source
Bug Fixes
#15334
v3.104.1
Compare Source
Bug Fixes
#15333
v3.104.0
Compare Source
Features
[backend] Allows the PULUMI_SKIP_CHECKPOINTS environment variable to be set without requiring the PULUMI_EXPERIMENTAL flag.
#15318
[auto/go] Add new API to install the Pulumi CLI from the Automation API
#15049
[auto/nodejs] Allow disabling version validation when using a custom PulumiCommand instance
#15242
[auto/python] Add new API to install the Pulumi CLI
#15204
[auto/python] Inline programs can now be defined as async functions.
#15278
[pkg/testing] Add RequireEmptyPreviewAfterRefresh option to ProgramTest
Bug Fixes
[engine] Fix a hang in preview --import-file.
#15203
[engine] Engine will now error if aliases request a parent with no URN.
#15232
[engine] Fix stack name validation when PULUMI_DISABLE_VALIDATION isn't set.
#15245
[engine] Fix a performance issue doing unneeded secret encryption.
#15306
[sdk/go] Include error message in local workspace validation.
#15279
[sdkgen/go] Remove pulumix references from generated enums
#15280
[programgen/nodejs] Fixes generated expression for filebase64 function to use fs.readFileSync directly with base64 encoding option
#15253
[sdkgen/python] Use importlib.metadata instead of pkg_resources
#15266
Miscellaneous
[auto/go] Remove obsolete note from FullyQualifiedStackName comment.
#15281
[backend/filestate] Upgrade gocloud.dev to the latest version
#15202
[sdk/python] Remove compatability code for Python 3.7 and below.
#15276
v3.103.1
Compare Source
3.103.1 (2024-01-25)
Bug Fixes
#15251
v3.103.0
Compare Source
3.103.0 (2024-01-24)
Features
[engine] Allow import plugins to define components and logical names.
#15199
[cli/display] Incremental improvement on the output when installing plugins
#15201
[sdk] Bake the release version into the SDK
#15185
[sdk/go] Parse config paths strictly
#15173
[cli/new] Adds pulumi:template tag to
pulumi new
created projects#15056
[auto/nodejs] Add new API to install the Pulumi CLI from the Automation API
#14991
[sdk/python] Add support for Python 3.12
#15190
Bug Fixes
[engine] Fix a bug where mapping lookup could sometimes lead to an infinite loop.
#15200
[engine] Remove an incorrect assert that resources must have inputs.
[#15197](https://togithub.com/pulumi/pulumi/pull/1
Configuration
📅 Schedule: 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.
This PR has been generated by Mend Renovate. View repository job log here.