Skip to content

Commit e54d02d

Browse files
committed
chore: update changelog with 1.8.1 release
1 parent a518f56 commit e54d02d

File tree

1 file changed

+140
-0
lines changed

1 file changed

+140
-0
lines changed

CHANGELOG.md

Lines changed: 140 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,143 @@
1+
## 1.8.1 (2023-12-14)
2+
3+
4+
### Bug Fixes
5+
6+
* **graceful-shutdown**: implement configurable sutdown delay ([e5c13c8d](https://github.com/postfinance/kubenurse/commit/e5c13c8d))
7+
> prevents in-flight requests to land on a pod that has already stopped.
8+
* **shutdown**: implement 5 seconds shutdown period ([cef5f2ef](https://github.com/postfinance/kubenurse/commit/cef5f2ef))
9+
> will already help prevent false positives from other kubenurse pods when
10+
> trying to reach me_ingress through the ingress controller during
11+
> teardown. without this 5sec wait, in-flight requests from e.g. the
12+
> ingress controller will reach a pod that is already terminated.
13+
> Might not be sufficient for similar for "path" errors, as there is no
14+
> filter for terminating pods.
15+
* **shutdown**: make shutdown duration configurable ([a9d101a4](https://github.com/postfinance/kubenurse/commit/a9d101a4))
16+
* **shutdown**: stop querying pending/terminating neighbors ([3d6050c6](https://github.com/postfinance/kubenurse/commit/3d6050c6))
17+
> prevents false positive path_error when checks are made to pending or
18+
> terminating pods
19+
20+
21+
### Dependencies
22+
23+
* **ci**: rollout restart the daemonset to "erase" bootstrap errors ([e96ed6f7](https://github.com/postfinance/kubenurse/commit/e96ed6f7))
24+
> during the first start of kubenurse, if the ingress isn't
25+
> ready yet or if kubenurse makes a check before a kubenurse
26+
> pod is actually ready, this will result in errors in the logs
27+
> and this will prevent the pipeline from working correctly.
28+
* **common**: helmChart improvements ([6e82de23](https://github.com/postfinance/kubenurse/commit/6e82de23))
29+
> the image tag is now .Chart.AppVersion except if
30+
> .values.daemonset.image.tag is set
31+
>
32+
> also, the .Chart.AppVersion field is automatically set
33+
> to the tag, with another chart-releaser plugin
34+
* **deps**: bump actions/checkout from 3 to 4 ([21c103d0](https://github.com/postfinance/kubenurse/commit/21c103d0))
35+
> Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
36+
> - [Release notes](https://github.com/actions/checkout/releases)
37+
> - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
38+
> - [Commits](https://github.com/actions/checkout/compare/v3...v4)
39+
>
40+
> ---
41+
> updated-dependencies:
42+
> - dependency-name: actions/checkout
43+
> dependency-type: direct:production
44+
> update-type: version-update:semver-major
45+
> ...
46+
* **deps**: bump actions/setup-go from 4 to 5 ([b395623c](https://github.com/postfinance/kubenurse/commit/b395623c))
47+
> Bumps [actions/setup-go](https://github.com/actions/setup-go) from 4 to 5.
48+
> - [Release notes](https://github.com/actions/setup-go/releases)
49+
> - [Commits](https://github.com/actions/setup-go/compare/v4...v5)
50+
>
51+
> ---
52+
> updated-dependencies:
53+
> - dependency-name: actions/setup-go
54+
> dependency-type: direct:production
55+
> update-type: version-update:semver-major
56+
> ...
57+
* **deps**: bump docker/login-action from 2 to 3 ([87f61117](https://github.com/postfinance/kubenurse/commit/87f61117))
58+
> Bumps [docker/login-action](https://github.com/docker/login-action) from 2 to 3.
59+
> - [Release notes](https://github.com/docker/login-action/releases)
60+
> - [Commits](https://github.com/docker/login-action/compare/v2...v3)
61+
>
62+
> ---
63+
> updated-dependencies:
64+
> - dependency-name: docker/login-action
65+
> dependency-type: direct:production
66+
> update-type: version-update:semver-major
67+
> ...
68+
* **deps**: bump helm/chart-releaser-action from 1.5.0 to 1.6.0 ([efc98fa1](https://github.com/postfinance/kubenurse/commit/efc98fa1))
69+
> Bumps [helm/chart-releaser-action](https://github.com/helm/chart-releaser-action) from 1.5.0 to 1.6.0.
70+
> - [Release notes](https://github.com/helm/chart-releaser-action/releases)
71+
> - [Commits](https://github.com/helm/chart-releaser-action/compare/v1.5.0...v1.6.0)
72+
>
73+
> ---
74+
> updated-dependencies:
75+
> - dependency-name: helm/chart-releaser-action
76+
> dependency-type: direct:production
77+
> update-type: version-update:semver-minor
78+
> ...
79+
* **deps**: bump k8s.io/api from 0.27.3 to 0.27.4 ([7ad9eb28](https://github.com/postfinance/kubenurse/commit/7ad9eb28))
80+
> Bumps [k8s.io/api](https://github.com/kubernetes/api) from 0.27.3 to 0.27.4.
81+
> - [Commits](https://github.com/kubernetes/api/compare/v0.27.3...v0.27.4)
82+
>
83+
> ---
84+
> updated-dependencies:
85+
> - dependency-name: k8s.io/api
86+
> dependency-type: direct:production
87+
> update-type: version-update:semver-patch
88+
> ...
89+
* **deps**: bump k8s.io/api from 0.28.0 to 0.28.1 ([ca5a74c3](https://github.com/postfinance/kubenurse/commit/ca5a74c3))
90+
> Bumps [k8s.io/api](https://github.com/kubernetes/api) from 0.28.0 to 0.28.1.
91+
> - [Commits](https://github.com/kubernetes/api/compare/v0.28.0...v0.28.1)
92+
>
93+
> ---
94+
> updated-dependencies:
95+
> - dependency-name: k8s.io/api
96+
> dependency-type: direct:production
97+
> update-type: version-update:semver-patch
98+
> ...
99+
* **deps**: bump k8s.io/client-go from 0.27.3 to 0.28.0 ([7791489d](https://github.com/postfinance/kubenurse/commit/7791489d))
100+
> Bumps [k8s.io/client-go](https://github.com/kubernetes/client-go) from 0.27.3 to 0.28.0.
101+
> - [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md)
102+
> - [Commits](https://github.com/kubernetes/client-go/compare/v0.27.3...v0.28.0)
103+
>
104+
> ---
105+
> updated-dependencies:
106+
> - dependency-name: k8s.io/client-go
107+
> dependency-type: direct:production
108+
> update-type: version-update:semver-minor
109+
> ...
110+
* **deps**: bump k8s.io/client-go from 0.28.0 to 0.28.1 ([52bfac3f](https://github.com/postfinance/kubenurse/commit/52bfac3f))
111+
> Bumps [k8s.io/client-go](https://github.com/kubernetes/client-go) from 0.28.0 to 0.28.1.
112+
> - [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md)
113+
> - [Commits](https://github.com/kubernetes/client-go/compare/v0.28.0...v0.28.1)
114+
>
115+
> ---
116+
> updated-dependencies:
117+
> - dependency-name: k8s.io/client-go
118+
> dependency-type: direct:production
119+
> update-type: version-update:semver-patch
120+
> ...
121+
* **deps**: bump k8s.io/client-go from 0.28.1 to 0.28.4 ([eb3c96c1](https://github.com/postfinance/kubenurse/commit/eb3c96c1))
122+
> Bumps [k8s.io/client-go](https://github.com/kubernetes/client-go) from 0.28.1 to 0.28.4.
123+
> - [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md)
124+
> - [Commits](https://github.com/kubernetes/client-go/compare/v0.28.1...v0.28.4)
125+
>
126+
> ---
127+
> updated-dependencies:
128+
> - dependency-name: k8s.io/client-go
129+
> dependency-type: direct:production
130+
> update-type: version-update:semver-patch
131+
> ...
132+
* **dockerfile**: update misconfigured maintainer label ([461bda53](https://github.com/postfinance/kubenurse/commit/461bda53))
133+
134+
135+
### New Features
136+
137+
* **helm**: make shutdown duration configurable ([a518f562](https://github.com/postfinance/kubenurse/commit/a518f562))
138+
139+
140+
1141
## 1.8.0 (2023-06-26)
2142

3143
### New Features

0 commit comments

Comments
 (0)