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

fix(deps): update all non-major dependencies #59

Merged
merged 1 commit into from
Feb 23, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 22, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@pulumi/kubernetes (source) 4.1.1 -> 4.8.0 age adoption passing confidence dependencies minor
@pulumi/pulumi (source) 3.81.0 -> 3.107.0 age adoption passing confidence dependencies minor
@types/node (source) 16.18.82 -> 16.18.83 age adoption passing confidence devDependencies patch
@types/react (source) 18.2.17 -> 18.2.57 age adoption passing confidence devDependencies patch
@types/react-dom (source) 18.2.7 -> 18.2.19 age adoption passing confidence devDependencies patch
@types/semantic-ui (source) 2.2.7 -> 2.2.9 age adoption passing confidence dependencies patch
@typescript-eslint/eslint-plugin (source) 6.2.0 -> 6.21.0 age adoption passing confidence devDependencies minor
@typescript-eslint/parser (source) 6.2.0 -> 6.21.0 age adoption passing confidence devDependencies minor
@vitejs/plugin-react-swc 3.3.2 -> 3.6.0 age adoption passing confidence devDependencies minor
axios (source) 1.4.0 -> 1.6.7 age adoption passing confidence dependencies minor
eslint (source) 8.46.0 -> 8.56.0 age adoption passing confidence devDependencies minor
gradle (source) 7.5.1 -> 7.6.4 age adoption passing confidence minor
match-sorter 6.3.1 -> 6.3.4 age adoption passing confidence dependencies patch
pulumi/pulumi 3.69.0 -> 3.107.0 age adoption passing confidence image-name minor
react-router-dom (source) 6.14.2 -> 6.22.1 age adoption passing confidence dependencies minor
semantic-ui-react 3.0.0-beta.0 -> 3.0.0-beta.2 age adoption passing confidence dependencies patch
typescript (source) 5.1.6 -> 5.3.3 age adoption passing confidence devDependencies minor
vite (source) 4.4.7 -> 4.5.2 age adoption passing confidence devDependencies minor
io.insert-koin:koin-test (source) 3.4.1 -> 3.5.3 age adoption passing confidence dependencies minor
org.java-websocket:Java-WebSocket 1.5.4 -> 1.5.6 age adoption passing confidence dependencies patch
io.insert-koin:koin-logger-slf4j (source) 3.4.1 -> 3.5.3 age adoption passing confidence dependencies minor
io.insert-koin:koin-ktor (source) 3.4.1 -> 3.5.3 age adoption passing confidence dependencies minor
org.jetbrains:kotlin-css-jvm 1.0.0-pre.129-kotlin-1.4.20 -> 1.0.0-pre.156-kotlin-1.5.0 age adoption passing confidence dependencies patch
org.jetbrains.kotlin.plugin.serialization 1.9.0 -> 1.9.22 age adoption passing confidence plugin patch
org.jetbrains.kotlin.jvm 1.9.0 -> 1.9.22 age adoption passing confidence plugin patch
io.micrometer:micrometer-registry-prometheus 1.6.3 -> 1.12.3 age adoption passing confidence dependencies minor
ch.qos.logback:logback-classic (source) 1.4.8 -> 1.5.0 age adoption passing confidence dependencies minor
org.jetbrains.kotlin:kotlin-test-junit (source) 1.9.0 -> 1.9.22 age adoption passing confidence dependencies patch
io.ktor:ktor-client-content-negotiation 2.3.2 -> 2.3.8 age adoption passing confidence dependencies patch
io.ktor:ktor-server-tests-jvm 2.3.2 -> 2.3.8 age adoption passing confidence dependencies patch
io.ktor:ktor-server-html-builder-jvm 2.3.2 -> 2.3.8 age adoption passing confidence dependencies patch
io.ktor:ktor-serialization-kotlinx-json-jvm 2.3.2 -> 2.3.8 age adoption passing confidence dependencies patch
io.ktor:ktor-server-content-negotiation-jvm 2.3.2 -> 2.3.8 age adoption passing confidence dependencies patch
io.ktor:ktor-server-call-logging-jvm 2.3.2 -> 2.3.8 age adoption passing confidence dependencies patch
io.ktor:ktor-server-status-pages-jvm 2.3.2 -> 2.3.8 age adoption passing confidence dependencies patch
io.ktor:ktor-server-cors 2.3.2 -> 2.3.8 age adoption passing confidence dependencies patch
io.ktor:ktor-server-host-common-jvm 2.3.2 -> 2.3.8 age adoption passing confidence dependencies patch
io.ktor:ktor-server-sessions-jvm 2.3.2 -> 2.3.8 age adoption passing confidence dependencies patch
io.ktor:ktor-client-apache-jvm 2.3.2 -> 2.3.8 age adoption passing confidence dependencies patch
io.ktor:ktor-client-core-jvm 2.3.2 -> 2.3.8 age adoption passing confidence dependencies patch
io.ktor:ktor-server-auth-jvm 2.3.2 -> 2.3.8 age adoption passing confidence dependencies patch
io.ktor:ktor-server-core-jvm 2.3.2 -> 2.3.8 age adoption passing confidence dependencies patch

Release Notes

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

v4.8.0

Compare Source

v4.7.1

Compare Source

  • Fix deployment await logic for accurate rollout detection

v4.7.0

Compare Source

Breaking Changes

In previous versions of the pulumi-kubernetes .NET SDK, the ConfigFile and ConfigGroup 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:

├─ pkg:index:MyComponent            parent                                               
│  ├─ kubernetes:core/v1:ConfigMap  cg-options-cg-options-cm-1                           
│  ├─ kubernetes:yaml:ConfigFile    cg-options-testdata/options/configgroup/manifest.yaml
│  ├─ kubernetes:core/v1:ConfigMap  cg-options-configgroup-cm-1                          
│  ├─ kubernetes:yaml:ConfigFile    cg-options-testdata/options/configgroup/empty.yaml   
│  └─ kubernetes:yaml:ConfigGroup   cg-options  

After:

└─ pkg:index:MyComponent                  parent                                               
   └─ kubernetes:yaml:ConfigGroup         cg-options                                           
      ├─ kubernetes:yaml:ConfigFile       cg-options-testdata/options/configgroup/manifest.yaml
      │  └─ kubernetes:core/v1:ConfigMap  cg-options-configgroup-cm-1                          
      └─ kubernetes:core/v1:ConfigMap     cg-options-cg-options-cm-1     

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

Resources Renamed:
  • #/types/kubernetes:core/v1:ResourceRequirements
    • renamed to: #/types/kubernetes:core/v1:VolumeResourceRequirements
  • #/types/kubernetes:core/v1:ResourceRequirementsPatch
    • renamed to: #/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

  • Reintroduce switching builds to pyproject.toml; when publishing the package to PyPI both
    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 having
    installs based on the source distribution.
  • Return mapping information for terraform conversions (https://github.com/pulumi/pulumi-kubernetes/pull/2457)
  • feature: added skipUpdateUnreachable flag to proceed with the updates without failing (https://github.com/pulumi/pulumi-kubernetes/pull/2528)
pulumi/pulumi (@​pulumi/pulumi)

v3.107.0

Compare Source

Features
  • [cli/config] Adds an --open flag to pulumi 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 to pulumi refresh.
    #​15330

  • [cli] Adds preview-only flag for pulumi destroy and pulumi 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 to MarshalOptions.
    #​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
  • [backend/diy] Upgrade gocloud.dev and fix an issue with azurekeyvault keys.
    #​15334

v3.104.1

Compare Source

Bug Fixes
  • [backend/diy] Revert gocloud.dev upgrade
    #​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

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

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.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4dff535 to 14f9bb3 Compare February 22, 2024 22:54
@B-urb B-urb merged commit c727e76 into development Feb 23, 2024
2 of 3 checks passed
@B-urb
Copy link
Owner

B-urb commented Mar 1, 2024

🎉 This PR is included in version 1.0.4-rc.4 🎉

The release is available on GitHub release

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant