Skip to content

Commit 54bc839

Browse files
committed
chore(release): 🚀 publish 41.4.0
1 parent d64a869 commit 54bc839

3 files changed

Lines changed: 46 additions & 5 deletions

File tree

‎traefik/Changelog.md‎

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,42 @@
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+
* feat(deps): update ghcr.io/traefik/traefik-hub docker tag to v3.20.12
12+
* chore(release): 🚀 publish 41.4.0
13+
14+
### Default value changes
15+
16+
```diff
17+
diff --git a/traefik/values.yaml b/traefik/values.yaml
18+
index 54a55eb..6580baf 100644
19+
--- a/traefik/values.yaml
20+
+++ b/traefik/values.yaml
21+
@@ -1044,9 +1044,13 @@ ports:
22+
middlewares: [] # @schema type: [array, null]
23+
# -- (bool) See [upstream documentation](https://doc.traefik.io/traefik/security/request-path/#path-sanitization)
24+
sanitizePath: # @schema type:[boolean, null]
25+
- # -- Defines how request headers with underscores in their names are handled (v3.7.6+).
26+
+ # -- Defines how request headers with non-alphanumeric characters in their names are handled (v3.7.12+).
27+
+ # See [upstream documentation](https://doc.traefik.io/traefik/reference/install-configuration/entrypoints/#aliasheadersstrategy)
28+
+ aliasHeadersStrategy: # @schema enum:[keep, delete, reject, null]; type:[string, null]
29+
+ # -- Defines how request headers with underscores in their names are handled (v3.7.6-v3.7.11).
30+
+ # Replaced by the aliasHeadersStrategy option for Traefik v3.7.12+.
31+
# See [upstream documentation](https://doc.traefik.io/traefik/reference/install-configuration/entrypoints/#underscoreheadersstrategy)
32+
- underscoreHeadersStrategy: # @schema enum:[keep, delete, reject, null]; type:[string, null]
33+
+ underscoreHeadersStrategy: # @schema deprecated; enum:[keep, delete, reject, null]; type:[string, null]
34+
tls:
35+
# -- See [upstream documentation](https://doc.traefik.io/traefik/reference/install-configuration/entrypoints/#opt-http-tls)
36+
# @default -- true
37+
```
38+
39+
340
## 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)
441

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

‎traefik/Chart.yaml‎

Lines changed: 8 additions & 4 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'
@@ -27,9 +27,13 @@ annotations:
2727
traefik.io/hub-min-version: v3.19.3
2828
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"
38+
- kind: added
39+
description: "feat(deps): update ghcr.io/traefik/traefik-hub docker tag to v3.20.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

0 commit comments

Comments
 (0)