Skip to content

Commit dffd0a8

Browse files
committed
chore(release): πŸš€ publish 41.4.0
1 parent 296a365 commit dffd0a8

4 files changed

Lines changed: 45 additions & 7 deletions

File tree

β€Žtraefik/Changelog.mdβ€Ž

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,41 @@
11
# Change Log
22

3+
## 41.4.0 ![AppVersion: v3.7.12](https://img.shields.io/static/v1?label=AppVersion&message=v3.7.12&color=success&logo=) ![Kubernetes: >=1.25.0-0](https://img.shields.io/static/v1?label=Kubernetes&message=%3E%3D1.25.0-0&color=informational&logo=kubernetes) ![Helm: v3](https://img.shields.io/static/v1?label=Helm&message=v3&color=informational&logo=helm)
4+
5+
**Release date:** 2026-08-27
6+
7+
* fix: :bug: hub/proxy mapping
8+
* feat: deprecate `underscoreHeadersStrategy` value
9+
* feat: add `aliasHeadersStrategy` value
10+
* feat(deps): update traefik docker tag to v3.7.12
11+
* chore(release): πŸš€ publish 41.4.0
12+
13+
### Default value changes
14+
15+
```diff
16+
diff --git a/traefik/values.yaml b/traefik/values.yaml
17+
index 54a55eb..6580baf 100644
18+
--- a/traefik/values.yaml
19+
+++ b/traefik/values.yaml
20+
@@ -1044,9 +1044,13 @@ ports:
21+
middlewares: [] # @schema type: [array, null]
22+
# -- (bool) See [upstream documentation](https://doc.traefik.io/traefik/security/request-path/#path-sanitization)
23+
sanitizePath: # @schema type:[boolean, null]
24+
- # -- Defines how request headers with underscores in their names are handled (v3.7.6+).
25+
+ # -- Defines how request headers with non-alphanumeric characters in their names are handled (v3.7.12+).
26+
+ # See [upstream documentation](https://doc.traefik.io/traefik/reference/install-configuration/entrypoints/#aliasheadersstrategy)
27+
+ aliasHeadersStrategy: # @schema enum:[keep, delete, reject, null]; type:[string, null]
28+
+ # -- Defines how request headers with underscores in their names are handled (v3.7.6-v3.7.11).
29+
+ # Replaced by the aliasHeadersStrategy option for Traefik v3.7.12+.
30+
# See [upstream documentation](https://doc.traefik.io/traefik/reference/install-configuration/entrypoints/#underscoreheadersstrategy)
31+
- underscoreHeadersStrategy: # @schema enum:[keep, delete, reject, null]; type:[string, null]
32+
+ underscoreHeadersStrategy: # @schema deprecated; enum:[keep, delete, reject, null]; type:[string, null]
33+
tls:
34+
# -- See [upstream documentation](https://doc.traefik.io/traefik/reference/install-configuration/entrypoints/#opt-http-tls)
35+
# @default -- true
36+
```
37+
38+
339
## 41.3.0 ![AppVersion: v3.7.11](https://img.shields.io/static/v1?label=AppVersion&message=v3.7.11&color=success&logo=) ![Kubernetes: >=1.25.0-0](https://img.shields.io/static/v1?label=Kubernetes&message=%3E%3D1.25.0-0&color=informational&logo=kubernetes) ![Helm: v3](https://img.shields.io/static/v1?label=Helm&message=v3&color=informational&logo=helm)
440

541
**Release date:** 2026-08-19

β€Žtraefik/Chart.yamlβ€Ž

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: traefik
33
description: A Traefik based Kubernetes ingress controller
44
type: application
5-
version: 41.3.0
5+
version: 41.4.0
66
# renovate: image=traefik
77
appVersion: v3.7.12
88
kubeVersion: '>=1.25.0-0'
@@ -25,11 +25,13 @@ annotations:
2525
traefik.io/proxy-min-version: v3.6.0
2626
traefik.io/proxy-max-version: v3.7.12
2727
traefik.io/hub-min-version: v3.19.3
28-
traefik.io/hub-max-version: v3.20.11
28+
traefik.io/hub-max-version: v3.20.12
2929
artifacthub.io/changes: |
30+
- kind: fixed
31+
description: "fix: hub/proxy mapping"
3032
- kind: added
31-
description: "feat: add new options for traefik v3.7.11"
33+
description: "feat: deprecate `underscoreHeadersStrategy` value"
3234
- kind: added
33-
description: "feat(deps): ✨ update traefik-hub to v3.20.11"
35+
description: "feat: add `aliasHeadersStrategy` value"
3436
- kind: added
35-
description: "feat(deps): update traefik to v3.7.11 and traefik-hub to v3.20.10"
37+
description: "feat(deps): update traefik docker tag to v3.7.12"

β€Žtraefik/VALUES.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# traefik
22

3-
![Version: 41.3.0](https://img.shields.io/badge/Version-41.3.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v3.7.12](https://img.shields.io/badge/AppVersion-v3.7.12-informational?style=flat-square)
3+
![Version: 41.4.0](https://img.shields.io/badge/Version-41.4.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v3.7.12](https://img.shields.io/badge/AppVersion-v3.7.12-informational?style=flat-square)
44

55
A Traefik based Kubernetes ingress controller
66

β€Žtraefik/tests/requirements-config_test.yamlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ tests:
178178
token: xxx
179179
asserts:
180180
- failedTemplate:
181-
errorMessage: "ERROR: This Chart does not support Traefik Hub v99.0.0, which is a major version above the supported v3.20.11."
181+
errorMessage: "ERROR: This Chart does not support Traefik Hub v99.0.0, which is a major version above the supported v3.20.12."
182182
- it: should not fail when trying to use this Chart with an ea Hub version above max
183183
set:
184184
image:

0 commit comments

Comments
Β (0)