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

Pin dependencies #3388

Merged
merged 2 commits into from
Dec 27, 2024
Merged

Pin dependencies #3388

merged 2 commits into from
Dec 27, 2024

Conversation

pulumi-renovate[bot]
Copy link
Contributor

@pulumi-renovate pulumi-renovate bot commented Dec 20, 2024

This PR contains the following updates:

Package Type Update Change
@pulumi/gcp (source) dependencies pin ^5.4.0 -> 5.26.0
@pulumi/kubernetes (source) dependencies pin ^4.0.0 -> 4.19.0
@pulumi/kubernetes (source) dependencies pin ^3.24.0 -> 3.30.2
@pulumi/kubernetes (source) dependencies major 3.15.1 -> 4.19.0
@pulumi/kubernetes (source) dependencies pin ^3.2.0 -> 3.30.2
@pulumi/kubernetesx (source) dependencies pin ^0.1.5 -> 0.1.6
@pulumi/pulumi (source) dependencies pin ^3.0.0 -> 3.144.1
@pulumi/pulumi (source) dependencies pin ^3.2.1 -> 3.144.1
@pulumi/random (source) devDependencies pin ^4.13.2 -> 4.16.8
@pulumi/random (source) dependencies pin ^4.15.1 -> 4.16.8
@pulumi/random (source) dependencies pin ^4.4.2 -> 4.16.8
github.com/pulumi/providertest require minor v0.0.12 -> v0.1.3
github.com/pulumi/pulumi/pkg/v3 require minor v3.143.0 -> v3.144.1
github.com/pulumi/pulumi/sdk/v3 require minor v3.143.0 -> v3.144.1

Add the preset :preserveSemverRanges to your config if you don't want to pin your dependencies.


Release Notes

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

v4.19.0

Compare Source

Changed

v4.18.4

Compare Source

Changed
Fixed

v4.18.3

Compare Source

Fixed

v4.18.2

Compare Source

Fixed

v4.18.1

Compare Source

Added
Changed

v4.18.0

Compare Source

Added
  • The new enableSecretMutable provider configuration option treats changes to
    Secrets as updates instead of replacements (similar to the
    enableConfigMapMutable option).

    The default replacement behavior can be preserved for a particular Secret
    by setting its immutable field to true.
    https://github.com/pulumi/pulumi-kubernetes/issues/22912291)

    Note: These options (enableSecretMutable and enableConfigMapMutable)
    may become the default behavior in a future v5 release of the provider.
    Programs that depend on the replacement of Secrets and ConfigMaps (e.g.
    to trigger updates for downstream dependencies like Deployments) are
    recommended to explicitly specify immutable: true.

  • A warning is now emitted if an object has finalizers which might be blocking
    deletiohttps://github.com/pulumi/pulumi-kubernetes/issues/14181418)

  • EXPERIMENTAL: Generic await logic is now available as an opt-in feature.
    Running a program with PULUMI_K8S_AWAIT_ALL=true will now cause Pulumi to
    await readiness for all resources, including custom resources.

    Generic readiness is determined according to some well-known conventions (like
    the "Ready" condition) as determined by cli-utils.

    Pulumi's current behavior, without this feature enabled, is to assume some
    resources are immediately available, which can cause downstream resources to
    fail.

    Existing readiness logic is unaffected by this setting.
    https://github.com/pulumi/pulumi-kubernetes/issues/29962996)

  • EXPERIMENTAL: The pulumi.com/waitFor annotation was introduced to allow
    for custom readiness checks. This override Pulumi's own await logic for the
    resource (however the pulumi.com/skipAwait annotation still takes
    precedence).

    The value of this annotation can take 3 forms:

    1. A string prefixed with jsonpath= followed by a
      JSONPath
      expression and an optional value.

      The JSONPath expression accepts the same syntax as
      kubectl get -o jsonpath={...}.

      If a value is provided, the resource is considered ready when the
      JSONPath expression evaluates to the same value. For example this
      resource expects its "phase" field to have a value of "Running":

      `pulumi.com/waitFor: "jsonpath={.status.phase}=Running"`
      

      If a value is not provided, the resource will be considered ready when
      any value exists at the given path, similar to kubectl wait --for jsonpath=.... This resource will wait until it has a webhook configured
      with a CA bundle:

      `pulumi.com/waitFor: "jsonpath={.webhooks[*].clientConfig.caBundle}"`
      
    2. A string prefixed with condition= followed by the type of the
      condition and an optional status. This matches the behavior of
      kubectl wait --for=condition=... and will wait until the resource has a
      matching condition. The expected status defaults to "True" if not
      specified.

      `pulumi.com/waitFor: "condition=Synced"`
      
      `pulumi.com/waitFor: "condition=Reconciling=False"`
      
    3. A string containing a JSON array of multiple jsonpath= and
      condition= expressions.

      `pulumi.com/waitFor: '["jsonpath={.foo}", "condition=Bar"]'` 
      
  • Pulumi will now emit logs for any Kubernetes "Warning" Events associated with
    resources being created, updated or deletehttps://github.com/pulumi/pulumi-kubernetes/pull/3135ull/3135/files)

Fixed

v4.17.1

Compare Source

Fixed

v4.17.0

Compare Source

Changed
Fixed

v4.16.0

Compare Source

Added
  • clusterIdentifier configuration can now be used to manually control the
    replacement behavior of a provider resourchttps://github.com/pulumi/pulumi-kubernetes/pull/3068ull/3068)

  • Pod errors now include the pod's last termination state, as well as the pod's
    termination message if availablhttps://github.com/pulumi/pulumi-kubernetes/pull/3091ull/3091)

    The pod's termination message can be helpful in CrashLoopBackOff situations but
    will only be reported if it was correctly configured.

    By default, the pod's termination message is read from
    /dev/termination-log. This location can be configured with
    terminationMessagePath.

    Use terminationMessagePolicy: FallbackToLogsOnError to use the pod's logs
    as its termination message.

  • Documentation is now generated for all languages supported by overlay types.
    https://github.com/pulumi/pulumi-kubernetes/pull/31073107)

Fixed

v4.15.0

Compare Source

Changed
Fixed

v4.14.0

Compare Source

Added
Changed
Fixed

v4.13.1

Compare Source

Added
Changed
Fixed

v4.12.0

Compare Source

Added
Changed
Fixed

v4.11.0

Compare Source

v4.10.0

Compare Source

New Features

A new MLC-based implementation of ConfigGroup and of ConfigFile is now available in the "yaml/v2" package. These resources are
usable in all Pulumi languages, including Pulumi YAML and in the Java Pulumi SDK.

Note that transformations aren't supported in this release (see https://github.com/pulumi/pulumi/issues/12996).

v4.9.1

Compare Source

v4.9.0

Compare Source

v4.8.1

Compare Source

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)

v4.1.1

Compare Source

v4.1.0

Compare Source

v4.0.3

Compare Source

v4.0.2

Compare Source

v4.0.1

Compare Source

v4.0.0

Compare Source

Breaking changes:

Other changes:

v3.30.2

Compare Source

v3.30.1

Compare Source

v3.30.0

Compare Source

v3.29.1

Compare Source

v3.29.0

Compare Source

v3.28.1

Compare Source

v3.28.0

Compare Source

v3.27.1

Compare Source

v3.27.0

Compare Source

v3.26.0

Compare Source

v3.25.0

Compare Source

  • Update Kubernetes to v1.27.0
New resources:
authentication.k8s.io/v1beta1.SelfSubjectReview
authentication.k8s.io/v1beta1.SelfSubjectReviewPatch
certificates.k8s.io/v1alpha1.ClusterTrustBundle
certificates.k8s.io/v1alpha1.ClusterTrustBundleList
certificates.k8s.io/v1alpha1.ClusterTrustBundlePatch
networking.k8s.io/v1alpha1.IPAddress
networking.k8s.io/v1alpha1.IPAddressList
networking.k8s.io/v1alpha1.IPAddressPatch
resource.k8s.io/v1alpha2.PodSchedulingContext
resource.k8s.io/v1alpha2.PodSchedulingContextList
resource.k8s.io/v1alpha2.PodSchedulingContextPatch
resource.k8s.io/v1alpha2.ResourceClaim
resource.k8s.io/v1alpha2.ResourceClaimList
resource.k8s.io/v1alpha2.ResourceClaimPatch
resource.k8s.io/v1alpha2.ResourceClaimTemplate
resource.k8s.io/v1alpha2.ResourceClaimTemplateList
resource.k8s.io/v1alpha2.ResourceClaimTemplatePatch
resource.k8s.io/v1alpha2.ResourceClass
resource.k8s.io/v1alpha2.ResourceClassList
resource.k8s.io/v1alpha2.ResourceClassPatch
Resources moved from v1alpha1 to v1alpha2
  • "kubernetes:resource.k8s.io/v1alpha1:ResourceClaimTemplateList"
  • "kubernetes:resource.k8s.io/v1alpha1:ResourceClassList"
  • "kubernetes:resource.k8s.io/v1alpha1:ResourceClassPatch"
  • "kubernetes:resource.k8s.io/v1alpha1:ResourceClaimList"
  • "kubernetes:resource.k8s.io/v1alpha1:ResourceClass"
  • "kubernetes:resource.k8s.io/v1alpha1:ResourceClaimTemplate"
  • "kubernetes:resource.k8s.io/v1alpha1:ResourceClaimTemplatePatch"
  • "kubernetes:resource.k8s.io/v1alpha1:ResourceClaim"
  • "kubernetes:resource.k8s.io/v1alpha1:ResourceClaimPatch"
Resources moved from v1beta1 to v1
  • "kubernetes:storage.k8s.io/v1beta1:CSIStorageCapacity"
  • "kubernetes:storage.k8s.io/v1beta1:CSIStorageCapacityPatch"
  • "kubernetes:storage.k8s.io/v1beta1:CSIStorageCapacityList"
Resources renamed
  • "kubernetes:resource.k8s.io/v1alpha1:PodSchedulingList"
    • Renamed to kubernetes:resource.k8s.io/v1alpha2:PodSchedulingContextList
  • "kubernetes:resource.k8s.io/v1alpha1:PodSchedulingPatch"
    • Renamed to kubernetes:resource.k8s.io/v1alpha2:PodSchedulingContextPatch
  • "kubernetes:resource.k8s.io/v1alpha1:PodScheduling"
    • Renamed to kubernetes:resource.k8s.io/v1alpha2:PodSchedulingContext
New Features

v3.24.3

Compare Source

v3.24.2

Compare Source

v3.24.1

Compare Source

v3.24.0

Compare Source

v3.23.1

Compare Source

v3.23.0

Compare Source

v3.22.2

Compare Source

v3.22.1

Compare Source

Note: Enabling SSA mode by default was causing problems for a number of users, so we decided to revert this change.
We plan to re-enable this as the default behavior in the next major (v4.0.0) release with additional documentation
about the expected differences.

v3.22.0

Compare Source

Important Note -- This release changes the Provider default to enable Server-Side Apply mode. This change is
backward compatible, and should not require further action from users. The enableServerSideApply flag is
still present, so you may explicitly opt out if you run into any problems using one of the following methods:

  1. Set the enableServerSideApply parameter to false on your Provider resource.
  2. Set the environment variable PULUMI_K8S_ENABLE_SERVER_SIDE_APPLY="false"
  3. Set the stack config pulumi config set kubernetes:enableServerSideApply false

See the how-to guide for additional information about using Server-Side Apply with Pulumi's Kubernetes provider.

v3.21.4

Compare Source

New tag to fix a publishing error for the Java SDK

v3.21.3

Compare Source

[v3.21.2](https://redirect.github.com/pulumi/pul


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - "every weekday" (UTC).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 Renovate Bot.

@pulumi-renovate pulumi-renovate bot added dependencies Pull requests that update a dependency file impact/no-changelog-required This issue doesn't require a CHANGELOG update labels Dec 20, 2024
@pulumi-renovate pulumi-renovate bot enabled auto-merge (squash) December 20, 2024 20:31
Copy link

Does the PR have any schema changes?

Looking good! No breaking changes found.
No new resources/functions.

Copy link

codecov bot commented Dec 20, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 41.08%. Comparing base (f5355f6) to head (0ed893c).
Report is 1 commits behind head on master.

Additional details and impacted files
@@           Coverage Diff           @@
##           master    #3388   +/-   ##
=======================================
  Coverage   41.08%   41.08%           
=======================================
  Files          87       87           
  Lines       12900    12900           
=======================================
  Hits         5300     5300           
  Misses       7205     7205           
  Partials      395      395           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@pulumi-renovate pulumi-renovate bot changed the title Update module github.com/pulumi/pulumi/sdk/v3 to v3.144.0 Update first-party Pulumi dependencies to v3.144.0 Dec 20, 2024
@pulumi-renovate pulumi-renovate bot changed the title Update first-party Pulumi dependencies to v3.144.0 Update first-party Pulumi dependencies Dec 21, 2024
@pulumi-renovate pulumi-renovate bot changed the title Update first-party Pulumi dependencies Update first-party Pulumi dependencies to v3.144.1 Dec 21, 2024
@pulumi-renovate pulumi-renovate bot force-pushed the renovate/pulumi branch 3 times, most recently from 3b7d8c4 to bb8be30 Compare December 23, 2024 23:47
@pulumi-renovate pulumi-renovate bot changed the title Update first-party Pulumi dependencies to v3.144.1 Pin dependencies Dec 27, 2024
@pulumi-renovate
Copy link
Contributor Author

Edited/Blocked Notification

Renovate 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.

⚠️ Warning: custom changes will be lost.

@pulumi-renovate pulumi-renovate bot merged commit 495205a into master Dec 27, 2024
19 checks passed
@pulumi-renovate pulumi-renovate bot deleted the renovate/pulumi branch December 27, 2024 18:27
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 impact/no-changelog-required This issue doesn't require a CHANGELOG update
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant