Skip to content

Commit 9a224a0

Browse files
authored
Merge pull request #1608 from fluxcd/release-v1.36.1
Release v1.36.1
2 parents 740477a + bd3249f commit 9a224a0

File tree

6 files changed

+27
-6
lines changed

6 files changed

+27
-6
lines changed

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,27 @@
22

33
All notable changes to this project are documented in this file.
44

5+
## 1.36.1
6+
7+
**Release date:** 2024-03-06
8+
9+
This release fixes a bug where `.spec..progressDeadlineSeconds` wasn't respected and the Canary
10+
was stuck forever waiting for the Deployment to be ready.
11+
12+
Furthermore, the Go dependencies have been updated.
13+
14+
#### Improvements
15+
- Update Go dependencies
16+
[#1607](https://github.com/fluxcd/flagger/pull/1607)
17+
18+
#### Fixes
19+
- Fix broken link in readme
20+
[#1599](https://github.com/fluxcd/flagger/pull/1599)
21+
- scheduler: fail canary according to progress deadline
22+
[#1603](https://github.com/fluxcd/flagger/pull/1603)
23+
- Actualize link to flux in-depth guide
24+
[#1606](https://github.com/fluxcd/flagger/pull/1606)
25+
526
## 1.36.0
627

728
**Release date:** 2024-02-07

artifacts/flagger/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ spec:
2222
serviceAccountName: flagger
2323
containers:
2424
- name: flagger
25-
image: ghcr.io/fluxcd/flagger:1.36.0
25+
image: ghcr.io/fluxcd/flagger:1.36.1
2626
imagePullPolicy: IfNotPresent
2727
ports:
2828
- name: http

charts/flagger/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v1
22
name: flagger
3-
version: 1.36.0
4-
appVersion: 1.36.0
3+
version: 1.36.1
4+
appVersion: 1.36.1
55
kubeVersion: ">=1.19.0-0"
66
engine: gotpl
77
description: Flagger is a progressive delivery operator for Kubernetes

charts/flagger/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
image:
77
repository: ghcr.io/fluxcd/flagger
8-
tag: 1.36.0
8+
tag: 1.36.1
99
pullPolicy: IfNotPresent
1010
pullSecret:
1111

kustomize/base/flagger/kustomization.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ resources:
99
images:
1010
- name: ghcr.io/fluxcd/flagger
1111
newName: ghcr.io/fluxcd/flagger
12-
newTag: 1.36.0
12+
newTag: 1.36.1

pkg/version/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ limitations under the License.
1616

1717
package version
1818

19-
var VERSION = "1.36.0"
19+
var VERSION = "1.36.1"
2020
var REVISION = "unknown"

0 commit comments

Comments
 (0)