Skip to content

Releases: argoproj/argo-rollouts

v1.9.0-rc3

28 Nov 22:42
32c5a5a

Choose a tag to compare

v1.9.0-rc3 Pre-release
Pre-release

v1.9.0-rc3 (2025-11-26)

  • Had to release a 1.9.0-rc3 due to release pipeline issues. No changes from RC2

v1.9.0-rc2 (2025-11-18)

Chore

  • switch to *bool for clusterScope (#4551)

Fix

  • controller: Skip analysis runs if no templates are specified (#4544)

Revert

Full Changelog: v1.9.0-rc1...v1.9.0-rc3

v1.9.0-rc1

08 Nov 02:52
29ed7a9

Choose a tag to compare

v1.9.0-rc1 Pre-release
Pre-release

BREAKING CHANGE

We reverted this breaking change it will not be in RC2 or the final release for 1.9

We are changing rollouts .status.selector field to report only the stable replicaset for traffic routed canaries that do not use dynamicStableScale. This is needed in order to be able to use HPA's reliably. A little explanation on how HPA. calculate desired pods. There are two methods and formulas for calculating desired pods counts we will be focusing on Value type metrics.

The formula for Value type metrics is as follows desiredReplicas = ceil[currentReplicas * ( currentMetricValue / desiredMetricValue )] The currentReplicas count comes from the selector defined in .status.selector for Argo Rollouts. Before we merge this PR this would be all pods under the Rollout (stable+canary). This causes issues because as we shift traffic to the desired state we end up with a whole bunch of pods not taking any traffic. In theory the number of pods taking traffic will always be equal to .spec.replicas which is also the same value as the stable replicaset, therefore we should report to the HPA the number of pods behind the stable replicaset as a proxy to .spec.replicas.

This change does have the possibility to affect your current HPA configurations. You should make sure that you understand the new behavior and that it works with your HPA's metrics. Chances are high that what you currently have configured is actually broken due to this issue.

Two examples before and after of the formula:

Before this PR

.spec.replicas = 10
setWeight = 50
desiredMetricValue = 50
currentMetricValue = 50
canaryPodCount = 5
stablePodCont = 10
 
desiredReplicas = ceil[currentReplicas * ( currentMetricValue / desiredMetricValue )]
15 = ceil[ (10 + 5) * ( 50 / 50) ]

Here we would want to scale up to 15 pods incorrectly.

After this PR

.spec.replicas = 10
setWeight = 50
desiredMetricValue = 50
currentMetricValue = 50
canaryPodCount = 5
stablePodCont = 10
 
desiredReplicas = ceil[currentReplicas * ( currentMetricValue / desiredMetricValue )]
10 = ceil[ (10) * ( 50 / 50) ]

Here we keep the pod count at 10 correctly.

This is a simplified example due to the dynamic nature of shifting weights during a rollout and metrics changing during those shifts. However, this new behavior is more correct and allows you to construct a metric that is more reliable.

There is also an assumption that all pods are taking traffic according to their weight. If you detach the number of pods from the weight by using setCanaryScale your risk affecting scaling again.

BREAKING CHANGE

We are changing the behavior of Rollouts .spec.selector to be immutable. This change matches the behavior of the Deployment kind which is a goal of the Rollouts kind to stay as close as possible to the Deployment resource. This change fixes issues and confusion when we abandon ReplicaSets if the selector is change. Going forward in order to change the selector you would have to delete the Rollout.

Upstream Reference: kubernetes/kubernetes#50808

fixes: #1761, #2105, #4070

Build

  • tmate.io is no longer active (#4417)

Chore

  • Change enhancement proposal issue wording (#4414)
  • security fix https://nvd.nist.gov/vuln/detail/CVE-2023-46402 (#4083)
  • Make sure rollouts abort always has some more detailed message (#3957) (#4175)
  • bump k8s libraries and go to current supported versions (#4497)
  • use internal errors util instead of pkg's (#4171)
  • Add Verkada to the list of users (#4176)
  • Add Doubble to official USERS.md (#4214)
  • Fix Traefik name (#4217)
  • enrich controller startup log with namespace, ports, and insta… (#4218)
  • Improve logging (#4266)
  • add canaryStepString route msg (#4490)
  • fix deprecation (pointer -> ptr) (#4286)
  • Adding Red Hat to the list (#4361)
  • make api-proto to support go module style (#4402)
  • Add UiPath to the list of users (#4476)
  • deps: bump codecov/codecov-action from 5.3.1 to 5.4.0 (#4157)
  • deps: bump github.com/aws/smithy-go from 1.22.2 to 1.22.3 (#4136)
  • deps: bump amannn/action-semantic-pull-request from 5 to 6 (#4454)
  • deps: bump sigstore/cosign-installer from 3.8.2 to 3.10.0 (#4448)
  • deps: bump docker/login-action from 3.4.0 to 3.6.0 (#4473)
  • deps: bump actions/download-artifact from 4.3.0 to 6.0.0 (#4512)
  • deps: bump github.com/aws/smithy-go from 1.22.4 to 1.23.1 (#4494)
  • deps: bump github.com/aws/aws-sdk-go-v2/service/cloudwatch from 1.45.1 to 1.45.4 (#4366)
  • deps: bump golang.org/x/sync from 0.11.0 to 0.16.0 (#4353)
  • deps: bump docker/setup-buildx-action from 3.10.0 to 3.11.1 (#4328)
  • deps: bump github.com/aws/aws-sdk-go-v2/service/cloudwatch from 1.44.1 to 1.45.1 (#4313)
  • deps: bump codecov/codecov-action from 5.4.2 to 5.4.3 (#4283)
  • deps: bump docker/build-push-action from 6.16.0 to 6.18.0 (#4298)
  • deps: bump actions/stale from 9 to 10 (#4493)
  • deps: bump codecov/codecov-action from 5.4.3 to 5.5.1 (#4492)
  • deps: bump softprops/action-gh-release from 2.2.1 to 2.2.2 (#4243)
  • deps: bump actions/download-artifact from 4.2.1 to 4.3.0 (#4254)
  • deps: bump docker/build-push-action from 6.15.0 to 6.16.0 (#4255)
  • deps: bump github.com/aws/aws-sdk-go-v2/config from 1.29.8 to 1.29.14 (#4230)
  • deps: bump codecov/codecov-action from 5.4.0 to 5.4.2 (#4237)
  • deps: bump sigstore/cosign-installer from 3.8.1 to 3.8.2 (#4247)
  • deps: bump github.com/golang-jwt/jwt to 4.5.2 (#4235) (#4236)
  • deps: bump google.golang.org/grpc from 1.70.0 to 1.71.1 (#4227)
  • deps: bump golangci-lang from v1.61.0 to v1.64.8 (#4213)
  • deps: bump softprops/action-gh-release from 2.1.0 to 2.2.0 (#3999)
  • deps: bump golang.org/x/oauth2 from 0.26.0 to 0.29.0 (#4219)
  • deps: bump actions/checkout from 4 to 5 (#4518)
  • deps: bump actions/upload-artifact from 4 to 5 (#4519)
  • deps: bump actions/setup-go from 5.3.0 to 5.4.0 (#4197)
  • deps: bump actions/download-artifact from 4.2.0 to 4.2.1 (#4198)
  • deps: bump docker/login-action from 3.3.0 to 3.4.0 (#4191)
  • deps: bump actions/download-artifact from 4.1.9 to 4.2.0 (#4194)
  • deps: Updated go version in go.mod file (#4182)
  • deps: bump github.com/aws/aws-sdk-go-v2/service/cloudwatch from 1.44.0 to 1.44.1 (#4172)
  • deps: bump github/codeql-action from 3 to 4 (#4517)
  • deps: bump github.com/stretchr/testify from 1.10.0 to 1.11.1 (#4516)
  • deps: bump slsa-framework/slsa-github-generator from 2.0.0 to 2.1.0 (#4152)
  • deps: bump docker/setup-buildx-action from 3....
Read more

v1.8.3

05 Jun 17:13
49fa151

Choose a tag to compare

What's Changed

Chore

  • deps: bump github.com/golang-jwt/jwt to 4.5.2 (#4235) (#4236)
  • deps: bump golang.org/x/oauth2 from 0.24.0 to 0.29.0 to fix CVE-2025-22868 (#4225)

Docs

  • explain skew policy between the kubectl plugin and the controller (#4300)
  • blue green w/ ALB not supported without downtime (#4259)

Fix

  • abort scenario where canary/stable service is not provided (#4299)
  • restarts during updates could cause downtime (#4221)
  • experiments: fire rollout event on experiment step (#4124)
  • trafficrouting: patch VirtualService when there is only one named route (#4055)

Full Changelog: v1.8.2...v1.8.3

v1.8.2

21 Mar 20:37
0775302

Choose a tag to compare

Fix

  • Revert "fix(controller): rollout stuck in Progressing. fixes #3988" (#4201)
  • analysis: prevent promotion on inconclusive background run. Fixes: #3850 (#3873)

Full Changelog: v1.8.1...v1.8.2

v1.8.1

20 Mar 16:40
1ad2c6a

Choose a tag to compare

Chore

  • deps: Updated go version in go.mod file (#4182)

Docs

  • new syntax for docs conf (#4012)

Fix

  • guardrail to not overload stable replicaset (#3878)
  • redo PR 3639 (#4114)
  • check ephemeral metadata is set before delete (#4089)
  • correct typo in linter settings key name (#4094)
  • loop when paused and completed (#4134)
  • nil pointer on logging (#4127)
  • Upgrade go-retryablehttp to v0.7.7 (#3743)
  • controller: rollout stuck in Progressing. fixes #3988 (#4072)
  • dashboard: Revert react-scripts upgrade due to performance regression. Fixes #4122 (#4166)
  • metricprovider: not require address in kubernetes secret for Datadog. Fixes #4103 (#4145)

Full Changelog: v1.8.0...v1.8.1

v1.8.0

30 Jan 18:24
9c5d75d

Choose a tag to compare

What's Changed

  • chore: remove some k8s e2e test versions by @zachaller in #3495
  • docs: Update Changelog by @github-actions in #3507
  • chore(deps): bump codecov/codecov-action from 4.1.1 to 4.2.0 by @dependabot in #3500
  • chore(deps): bump golang.org/x/oauth2 from 0.18.0 to 0.19.0 by @dependabot in #3506
  • chore(deps): bump github.com/prometheus/client_model from 0.6.0 to 0.6.1 by @dependabot in #3499
  • chore(deps): bump google.golang.org/grpc from 1.62.1 to 1.63.0 by @dependabot in #3497
  • docs: Add technique for ConfigMap change detection in Rollout by @OpenGuidou in #3515
  • chore(deps): bump docker/setup-buildx-action from 3.2.0 to 3.3.0 by @dependabot in #3514
  • chore(deps): bump peaceiris/actions-gh-pages from 3 to 4 by @dependabot in #3513
  • fix: Change indentation to properly render Markdown - fixes #3509 by @bmuschko in #3511
  • chore(deps): bump github.com/aws/aws-sdk-go-v2/config from 1.27.10 to 1.27.11 by @dependabot in #3510
  • chore(deps): bump google.golang.org/grpc from 1.63.0 to 1.63.2 by @dependabot in #3512
  • chore(deps): bump go version to 1.22 by @agaudreault in #3516
  • chore(deps): bump codecov/codecov-action from 4.2.0 to 4.3.0 by @dependabot in #3517
  • fix(controller): Corrects the logic of comparing sha256 has. Fixes #3519 by @dhawani in #3520
  • docs: Add Amadeus to Users.md by @OpenGuidou in #3527
  • chore(deps): bump slsa-framework/slsa-github-generator from 1.10.0 to 2.0.0 by @dependabot in #3537
  • chore(deps): bump sigstore/cosign-installer from 3.4.0 to 3.5.0 by @dependabot in #3522
  • chore(deps): bump golangci/golangci-lint-action from 4 to 5 by @dependabot in #3540
  • docs: provide recommendation for strategies by @kostis-codefresh in #3531
  • feat(dashboard): change the color of the current rollout step by @alopezsanchez in #3526
  • chore(deps): bump github.com/aws/aws-sdk-go-v2/service/cloudwatch from 1.37.0 to 1.38.0 by @dependabot in #3525
  • chore(deps): bump actions/setup-go from 5.0.0 to 5.0.1 by @dependabot in #3552
  • chore(deps): bump codecov/codecov-action from 4.3.0 to 4.3.1 by @dependabot in #3550
  • chore(deps): bump google.golang.org/protobuf from 1.33.0 to 1.34.0 by @dependabot in #3548
  • chore: upgrade react-scripts by @rbreeze in #3584
  • chore(deps): bump github.com/aws/aws-sdk-go-v2/config from 1.27.11 to 1.27.16 by @dependabot in #3597
  • chore(deps): bump codecov/codecov-action from 4.3.1 to 4.4.1 by @dependabot in #3588
  • chore(deps): bump softprops/action-gh-release from 2.0.4 to 2.0.5 by @dependabot in #3561
  • chore(deps): bump google.golang.org/protobuf from 1.34.0 to 1.34.1 by @dependabot in #3557
  • chore(deps): bump golangci/golangci-lint-action from 5 to 6 by @dependabot in #3556
  • chore(deps): bump golang.org/x/oauth2 from 0.19.0 to 0.20.0 by @dependabot in #3554
  • chore(deps): bump github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2 from 1.30.5 to 1.31.1 by @dependabot in #3608
  • chore(deps): bump google.golang.org/grpc from 1.63.2 to 1.64.0 by @dependabot in #3607
  • chore(deps): bump github.com/hashicorp/go-plugin from 1.6.0 to 1.6.1 by @dependabot in #3606
  • chore(deps): bump docker/login-action from 3.1.0 to 3.2.0 by @dependabot in #3604
  • fix: Update loader-utils to 2.0.4 by @keithchong in #3601
  • fix: rs conflict with fallback to patch by @zachaller in #3559
  • chore(deps): bump github.com/aws/aws-sdk-go-v2 from 1.27.0 to 1.27.2 by @dependabot in #3621
  • chore: add codecov token by @zachaller in #3623
  • fix: verify the weight of the alb at the end of the rollout by @zachaller in #3627
  • fix: when Rollout has pingpong and stable/canary service defined, only alb traffic management uses pingpong. by @mayzhang2000 in #3628
  • chore(deps): bump github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2 from 1.31.1 to 1.31.3 by @dependabot in #3620
  • fix: protocol missing in ambassador canary mapping creation. Fixes #3593 by @umjoshua in #3603
  • chore(deps): bump golang.org/x/oauth2 from 0.20.0 to 0.21.0 by @dependabot in #3631
  • chore(deps): bump docker/build-push-action from 5.3.0 to 5.4.0 by @dependabot in #3624
  • docs: Update Changelog by @github-actions in #3632
  • chore(deps): bump codecov/codecov-action from 4.4.1 to 4.5.0 by @dependabot in #3634
  • chore(deps): bump google.golang.org/protobuf from 1.34.1 to 1.34.2 by @dependabot in #3633
  • chore(deps): bump github.com/aws/aws-sdk-go-v2/config from 1.27.16 to 1.27.18 by @dependabot in #3625
  • chore(deps): bump github.com/aws/aws-sdk-go-v2/service/cloudwatch from 1.38.0 to 1.38.6 by @dependabot in #3619
  • fix: Add volume for plugin and tmp folder by @tommy351 in #3546
  • chore(deps): bump github.com/spf13/cobra from 1.8.0 to 1.8.1 by @dependabot in #3640
  • chore: fix and add more cli usage case by @yyzxw in #3592
  • fix: don't default datadog aggregator by @zachaller in #3643
  • chore(deps): bump github.com/aws/aws-sdk-go-v2/service/cloudwatch from 1.38.6 to 1.38.7 by @dependabot in #3647
  • chore(deps): bump docker/build-push-action from 5.4.0 to 6.0.0 by @dependabot in #3644
  • chore(deps): bump github.com/aws/aws-sdk-go-v2/config from 1.27.18 to 1.27.19 by @dependabot in #3646
  • chore: don't fail code-cov on failure by @zachaller in #3661
  • chore(deps): bump docker/build-push-action from 6.0.0 to 6.0.2 by @dependabot in #3659
  • fix: docs site version selector broken by @yyzxw in #3590
  • chore(deps): bump docker/build-push-action from 6.0.2 to 6.1.0 by @dependabot in #3662
  • docs: Update Changelog by @github-actions in #3666
  • chore(deps): bump github.com/aws/aws-sdk-go-v2/config from 1.27.19 to 1.27.22 by @dependabot in #3680
  • chore(deps): bump docker/build-push-action from 6.1.0 to 6.2.0 by @dependabot in #3676
  • fix: add update verb to ClusterRole permissions for scaleDown feature. Fixes #3672 by @EnriqueTejeda in #3675
  • fix(analysis): Take RollbackWindow into account when Reconciling Analysis Runs. Fixes #3669 by @Psukhe in #3670
  • chore(deps): bump softprops/action-gh-release from 2.0.5 to 2.0.6 by @dependabot in #3656
  • chore(deps): bump github.com/aws/aws-sdk-go-v2/service/cloudwatch from 1.38.7 to 1.40.1 by @dependabot in #3687
  • chore(deps): bump github.com/aws/smithy-go from 1.20.2 to 1.20.3 by @dependabot in #3685
  • chore: add example for updating all container images in set command by @EnriqueTejeda in #3667
  • chore(deps): bump github.com/aws/aws-sdk-go-v2/config from 1.27.22 to 1.27.23 by @dependabot in #3695
  • chore(deps): bump google.golang.org/grpc from 1.64.0 to 1.65.0 by @dependabot in #3694
  • chore(deps): bump docker/setup-buildx-action from 3.3.0 to 3.4.0 by @dependabot in https://github.com/argoproj/argo-ro...
Read more

v1.8.0-rc2

16 Jan 19:43
9c5d75d

Choose a tag to compare

v1.8.0-rc2 Pre-release
Pre-release

Ci

  • add testing for k8s 1.30 and 1.31 (#3858)

Docs

  • analysis: add docs for consecutiveSuccessLimit (#3996)

Fix

  • don't over reconcile on error (#4005)
  • remove ReplicaSet write-back (#4044)
  • controller: Fixed broken pprof links #4037 (#4038)
  • experiments: move recorder event to after experiment reconciliation, fixes #4021 (#4022)

v1.8.0-rc1

09 Dec 14:28
a4d50d8

Choose a tag to compare

v1.8.0-rc1 Pre-release
Pre-release

v1.8.0-rc1 (2024-12-06)

Chore

  • update the link of DCO in PR template (#3944)
  • remove some k8s e2e test versions (#3495)
  • upgrade react-scripts (#3584)
  • update golangci-lint to v1.61.0 (#3857)
  • fix and add more cli usage case (#3592)
  • don't fail code-cov on failure (#3661)
  • add example for updating all container images in set command (#3667)
  • add codecov token (#3623)
  • code coverage for e2e (#3740)
  • use codecov config and only send merged coverage file (#3751)
  • Add Cloudflare to users (#3768)
  • capitalize AS in Dockerfile (#3781)
  • move ReplicaSet creation and Rollout validation earlier during the reconciliation process. (#3657)
  • Add Trustly to USERS.md (#3837)
  • add step plugin proposal (#3480)
  • deps: bump docker/setup-buildx-action from 3.4.0 to 3.5.0 (#3738)
  • deps: bump github.com/aws/aws-sdk-go-v2/service/cloudwatch from 1.42.2 to 1.42.3 (#3923)
  • deps: bump github.com/newrelic/newrelic-client-go/v2 from 2.48.2 to 2.50.1 (#3924)
  • deps: bump softprops/action-gh-release from 2.0.8 to 2.0.9 (#3928)
  • deps: bump github.com/aws/aws-sdk-go-v2/config from 1.27.38 to 1.28.1 (#3917)
  • deps: bump github.com/hashicorp/go-plugin from 1.6.1 to 1.6.2 (#3908)
  • deps: bump actions/setup-go from 5.0.2 to 5.1.0 (#3912)
  • deps: bump github.com/aws/aws-sdk-go-v2 from 1.32.2 to 1.32.3 (#3919)
  • deps: bump github.com/newrelic/newrelic-client-go/v2 from 2.50.1 to 2.51.3 (#3939)
  • deps: bump google.golang.org/grpc from 1.66.2 to 1.67.1 (#3903)
  • deps: bump docker/setup-buildx-action from 3.6.1 to 3.7.1 (#3876)
  • deps: bump github.com/aws/aws-sdk-go-v2/service/cloudwatch from 1.40.8 to 1.42.2 (#3901)
  • deps: bump github.com/aws/smithy-go from 1.21.0 to 1.22.0 (#3885)
  • deps: bump github.com/aws/aws-sdk-go-v2 from 1.31.0 to 1.32.2 (#3886)
  • deps: bump google.golang.org/protobuf from 1.34.2 to 1.35.1 (#3887)
  • deps: bump golang.org/x/oauth2 from 0.22.0 to 0.23.0 (#3841)
  • deps: bump codecov/codecov-action from 4.5.0 to 4.6.0 (#3865)
  • deps: bump github.com/newrelic/newrelic-client-go/v2 from 2.45.0 to 2.48.2 (#3874)
  • deps: bump sigstore/cosign-installer from 3.6.0 to 3.7.0 (#3875)
  • deps: bump docker/build-push-action from 6.8.0 to 6.9.0 (#3863)
  • deps: bump docker/build-push-action from 6.7.0 to 6.8.0 (#3860)
  • deps: bump github.com/aws/aws-sdk-go-v2/config from 1.27.33 to 1.27.38 (#3851)
  • deps: bump github.com/aws/aws-sdk-go-v2/service/cloudwatch from 1.40.5 to 1.40.8 (#3838)
  • deps: bump github.com/newrelic/newrelic-client-go/v2 from 2.43.1 to 2.45.0 (#3829)
  • deps: bump google.golang.org/grpc from 1.65.0 to 1.66.2 (#3831)
  • deps: bump softprops/action-gh-release from 2.0.9 to 2.1.0 (#3938)
  • deps: bump peter-evans/create-pull-request from 6 to 7 (#3819)
  • deps: bump github.com/aws/aws-sdk-go-v2/config from 1.27.31 to 1.27.33 (#3822)
  • deps: bump github.com/aws/aws-sdk-go-v2/config from 1.27.30 to 1.27.31 (#3807)
  • deps: bump github.com/aws/aws-sdk-go-v2/service/cloudwatch from 1.40.3 to 1.40.5 (#3808)
  • deps: bump github.com/aws/aws-sdk-go-v2/config from 1.27.27 to 1.27.30 (#3804)
  • deps: bump github.com/aws/aws-sdk-go-v2/service/cloudwatch from 1.42.3 to 1.42.4 (#3935)
  • deps: bump github.com/newrelic/newrelic-client-go/v2 from 2.41.2 to 2.43.1 (#3793)
  • deps: bump github.com/aws/smithy-go from 1.20.3 to 1.20.4 (#3794)
  • deps: bump docker/build-push-action from 6.6.1 to 6.7.0 (#3791)
  • deps: bump github.com/influxdata/influxdb-client-go/v2 from 2.13.0 to 2.14.0 (#3786)
  • deps: bump github.com/aws/aws-sdk-go-v2 from 1.32.3 to 1.32.4 (#3934)
  • deps: bump docker/build-push-action from 6.5.0 to 6.6.1 (#3776)
  • deps: bump sigstore/cosign-installer from 3.5.0 to 3.6.0 (#3777)
  • deps: bump golang.org/x/oauth2 from 0.21.0 to 0.22.0 (#3766)
  • deps: bump docker/build-push-action from 6.9.0 to 6.10.0 (#3963)
  • deps: bump docker/setup-buildx-action from 3.5.0 to 3.6.1 (#3755)
  • deps: bump google.golang.org/protobuf from 1.35.1 to 1.35.2 (#3950)
  • deps: bump github.com/aws/aws-sdk-go-v2/config from 1.27.26 to 1.27.27 (#3732)
  • deps: bump softprops/action-gh-release from 2.0.6 to 2.0.8 (#3733)
  • deps: bump golang.org/x/oauth2 from 0.23.0 to 0.24.0 (#3949)
  • deps: bump docker/setup-qemu-action from 3.1.0 to 3.2.0 (#3736)
  • deps: bump docker/build-push-action from 6.4.0 to 6.5.0 (#3737)
  • deps: bump codecov/codecov-action from 4.6.0 to 5.0.7 (#3961)
  • deps: bump docker/login-action from 3.2.0 to 3.3.0 (#3739)
  • deps: bump docker/build-push-action from 6.3.0 to 6.4.0 (#3723)
  • deps: bump github.com/aws/aws-sdk-go-v2/config from 1.27.24 to 1.27.26 (#3717)
  • deps: bump actions/setup-go from 5.0.1 to 5.0.2 (#3716)
  • deps: bump github.com/aws/aws-sdk-go-v2/service/cloudwatch from 1.40.1 to 1.40.3 (#3719)
  • deps: bump docker/setup-qemu-action from 3.0.0 to 3.1.0 (#3696)
  • deps: bump docker/build-push-action from 6.2.0 to 6.3.0 (#3697)
  • deps: bump github.com/aws/aws-sdk-go-v2/config from 1.27.23 to 1.27.24 (#3698)
  • deps: bump docker/setup-buildx-action from 3.3.0 to 3.4.0 (#3705)
  • deps: bump google.golang.org/grpc from 1.64.0 to 1.65.0 (#3694)
  • deps: bump github.com/aws/aws-sdk-go-v2/config from 1.27.22 to 1.27.23 (#3695)
  • deps: bump github.com/aws/aws-sdk-go-v2/config from 1.28.1 to 1.28.6 (#3981)
  • deps: bump github.com/aws/smithy-go from 1.20.2 to...
Read more

v1.7.2

13 Aug 18:42
59e5bd3

Choose a tag to compare

Fix

  • replicaSet not scaled down due to incorrect annotations (#3762) (#3784)
  • add update verb to ClusterRole permissions for scaleDown feature. Fixes #3672 (#3675)
  • analysis: explicitly set datadog aggregator to last only on v2 (#3730)
  • analysis: Take RollbackWindow into account when Reconciling Analysis Runs. Fixes #3669 (#3670)
  • controller: Get the right resourceName for traefik.io.Fixes #3615 (#3759)
  • controller: use the stableRS from the rollout context rather tha… (#3664)
  • dashboard: Update pod status logic to support native sidecars. Fixes #3366 (#3639)
  • metricprovider: reuse http.Transport for http.Client (#3780)

Full Changelog: v1.7.1...v1.7.2

v1.7.1

25 Jun 01:38
6a99ea9

Choose a tag to compare

Full Changelog: v1.7.0...v1.7.1