Skip to content

Commit 906c7d0

Browse files
authored
chore(release): publish v34.1.0
1 parent 7f37bab commit 906c7d0

File tree

6 files changed

+49
-19
lines changed

6 files changed

+49
-19
lines changed

traefik-crds/Changelog.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,20 @@
11
# Change Log
22

3+
## 1.2.0 ![Kubernetes: >=1.22.0-0](https://img.shields.io/static/v1?label=Kubernetes&message=%3E%3D1.22.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:** 2025-01-15
6+
7+
* feat(Traefik Hub): add OAS validateRequestMethodAndPath - CRDs update
8+
* chore(release): publish v34.1.0 and CRDs v1.2.0
9+
10+
311
## 1.1.0 ![Kubernetes: >=1.22.0-0](https://img.shields.io/static/v1?label=Kubernetes&message=%3E%3D1.22.0-0&color=informational&logo=kubernetes) ![Helm: v3](https://img.shields.io/static/v1?label=Helm&message=v3&color=informational&logo=helm)
412

513
**Release date:** 2025-01-13
614

715
* feat(CRDs): update CRDs for Traefik Proxy v3.3.x
8-
* chore(release): publish CRDs v1.1.0
16+
* chore(release): publish v34.0.0 and CRDs v1.1.0
17+
918

1019
## 1.0.0 ![Kubernetes: >=1.22.0-0](https://img.shields.io/static/v1?label=Kubernetes&message=%3E%3D1.22.0-0&color=informational&logo=kubernetes) ![Helm: v3](https://img.shields.io/static/v1?label=Helm&message=v3&color=informational&logo=helm)
1120

traefik-crds/Chart.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: traefik-crds
33
description: A Traefik based Kubernetes ingress controller
44
type: application
5-
version: 1.1.0
5+
version: 1.2.0
66
kubeVersion: ">=1.22.0-0"
77
keywords:
88
- traefik
@@ -23,5 +23,5 @@ maintainers:
2323
icon: https://raw.githubusercontent.com/traefik/traefik/v2.3/docs/content/assets/img/traefik.logo.png
2424
annotations:
2525
artifacthub.io/changes: |
26-
- "feat(CRDs): update CRDs for Traefik Proxy v3.3.x"
27-
- "chore(release): publish CRDs v1.1.0"
26+
- "feat(Traefik Hub): add OAS validateRequestMethodAndPath - CRDs update"
27+
- "chore(release): publish v34.1.0 and CRDs v1.2.0"

traefik-crds/VALUES.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# traefik-crds
22

3-
![Version: 1.1.0](https://img.shields.io/badge/Version-1.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
3+
![Version: 1.2.0](https://img.shields.io/badge/Version-1.2.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
44

55
A Traefik based Kubernetes ingress controller
66

traefik/Changelog.md

+29
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,34 @@
11
# Change Log
22

3+
## 34.1.0 ![AppVersion: v3.3.2](https://img.shields.io/static/v1?label=AppVersion&message=v3.3.2&color=success&logo=) ![Kubernetes: >=1.22.0-0](https://img.shields.io/static/v1?label=Kubernetes&message=%3E%3D1.22.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:** 2025-01-15
6+
7+
* fix(Traefik Proxy): support uppercase letters in entrypoint names
8+
* feat(deps): update traefik docker tag to v3.3.2
9+
* feat(Traefik Hub): add OAS validateRequestMethodAndPath - CRDs update
10+
* chore(release): publish v34.1.0 and CRDs v1.2.0
11+
12+
### Default value changes
13+
14+
```diff
15+
diff --git a/traefik/values.yaml b/traefik/values.yaml
16+
index f5922fe..3335e78 100644
17+
--- a/traefik/values.yaml
18+
+++ b/traefik/values.yaml
19+
@@ -941,6 +941,10 @@ hub:
20+
listenAddr: ""
21+
# -- Certificate of the WebHook admission server. Default: "hub-agent-cert".
22+
secretName: ""
23+
+ openApi:
24+
+ # -- When set to true, it will only accept paths and methods that are explicitly defined in its OpenAPI specification
25+
+ validateRequestMethodAndPath: false
26+
+
27+
experimental:
28+
# -- Set to true in order to enable AI Gateway. Requires a valid license token.
29+
aigateway: false
30+
```
31+
332
## 34.0.0 ![AppVersion: v3.3.1](https://img.shields.io/static/v1?label=AppVersion&message=v3.3.1&color=success&logo=) ![Kubernetes: >=1.22.0-0](https://img.shields.io/static/v1?label=Kubernetes&message=%3E%3D1.22.0-0&color=informational&logo=kubernetes) ![Helm: v3](https://img.shields.io/static/v1?label=Helm&message=v3&color=informational&logo=helm)
433

534
**Release date:** 2025-01-13

traefik/Chart.yaml

+5-13
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: 34.0.0
5+
version: 34.1.0
66
# renovate: image=traefik
77
appVersion: v3.3.2
88
kubeVersion: ">=1.22.0-0"
@@ -25,15 +25,7 @@ maintainers:
2525
icon: https://raw.githubusercontent.com/traefik/traefik/v2.3/docs/content/assets/img/traefik.logo.png
2626
annotations:
2727
artifacthub.io/changes: |
28-
- "fix(Traefik Proxy)!: use namespaceOverride as expected"
29-
- "fix(Traefik Proxy)!: move redirectTo => redirections"
30-
- "fix(Gateway API): status should not use default service when it's disabled"
31-
- "feat(deps): update traefik docker tag to v3.3.1"
32-
- "feat(deps): update traefik docker tag to v3.2.3"
33-
- "feat(Traefik Proxy): apply migration guide to v3.3"
34-
- "feat(Traefik Proxy): add support for experimental FastProxy"
35-
- "feat(Traefik Hub): add support for AI Gateway"
36-
- "feat(Chart): :package: add optional separated chart for CRDs"
37-
- "feat(CRDs): update CRDs for Traefik Proxy v3.3.x"
38-
- "chore(release): publish v34.0.0"
39-
- "chore(Gateway API): :recycle: remove template from values"
28+
- "fix(Traefik Proxy): support uppercase letters in entrypoint names"
29+
- "feat(deps): update traefik docker tag to v3.3.2"
30+
- "feat(Traefik Hub): add OAS validateRequestMethodAndPath - CRDs update"
31+
- "chore(release): publish v34.1.0 and CRDs v1.2.0"

traefik/VALUES.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# traefik
22

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

55
A Traefik based Kubernetes ingress controller
66

0 commit comments

Comments
 (0)