|
1 | 1 | # Change Log |
2 | 2 |
|
| 3 | +## 36.0.0    |
| 4 | + |
| 5 | +**Release date:** 2025-06-06 |
| 6 | + |
| 7 | +* fix(notes): update condition to display certificate persistence warning |
| 8 | +* fix(Traefik Proxy): supported `ingressRoute.*.annotations` breaks templating |
| 9 | +* fix(Traefik Proxy)!: strict opt-in on data collection |
| 10 | +* feat(deps): update traefik docker tag to v3.4.1 |
| 11 | +* feat(Traefik Hub): add offline flag |
| 12 | +* chore(schema): 🔧 update following latest upstream release |
| 13 | +* chore(release): 🚀 publish v36.0.0 |
| 14 | + |
| 15 | +**Upgrade Notes** |
| 16 | + |
| 17 | +There is a breaking change on `globalArguments` which has been replaced by `global.xx`, following upstream. |
| 18 | +See PR [#1436](https://github.com/traefik/traefik-helm-chart/pull/1436) for details. |
| 19 | + |
| 20 | +Following GDPR, anonymous stats usage has been disabled by default. |
| 21 | +Please take time to consider whether or not you wish to share anonymous data to help TraefikLabs improve Traefik Proxy. |
| 22 | + |
| 23 | +### Default value changes |
| 24 | + |
| 25 | +```diff |
| 26 | +diff --git a/traefik/values.yaml b/traefik/values.yaml |
| 27 | +index a9b74a3..9bcb400 100644 |
| 28 | +--- a/traefik/values.yaml |
| 29 | ++++ b/traefik/values.yaml |
| 30 | +@@ -185,6 +185,7 @@ gatewayClass: # @schema additionalProperties: false |
| 31 | + # -- Additional gatewayClass labels (e.g. for filtering gateway objects by custom labels) |
| 32 | + labels: {} |
| 33 | + |
| 34 | ++# -- Only dashboard & healthcheck IngressRoute are supported. It's recommended to create workloads CR outside of this Chart. |
| 35 | + ingressRoute: |
| 36 | + dashboard: |
| 37 | + # -- Create an IngressRoute for the dashboard |
| 38 | +@@ -596,10 +597,25 @@ tracing: # @schema additionalProperties: false |
| 39 | + # -- When set to true, the TLS connection accepts any certificate presented by the server regardless of the hostnames it covers. |
| 40 | + insecureSkipVerify: false |
| 41 | + |
| 42 | +-# -- Global command arguments to be passed to all traefik's pods |
| 43 | +-globalArguments: |
| 44 | +- - "--global.checknewversion" |
| 45 | +- - "--global.sendanonymoususage" |
| 46 | ++global: # @schema additionalProperties: false |
| 47 | ++ checkNewVersion: true |
| 48 | ++ # -- Please take time to consider whether or not you wish to share anonymous data with us |
| 49 | ++ # See https://doc.traefik.io/traefik/contributing/data-collection/ |
| 50 | ++ sendAnonymousUsage: false |
| 51 | ++ # -- Required for Azure Marketplace integration. |
| 52 | ++ # See https://learn.microsoft.com/en-us/partner-center/marketplace-offers/azure-container-technical-assets-kubernetes?tabs=linux,linux2#update-the-helm-chart |
| 53 | ++ azure: |
| 54 | ++ # -- Enable specific values for Azure Marketplace |
| 55 | ++ enabled: false |
| 56 | ++ images: |
| 57 | ++ proxy: |
| 58 | ++ image: traefik |
| 59 | ++ tag: latest |
| 60 | ++ registry: docker.io/library |
| 61 | ++ hub: |
| 62 | ++ image: traefik-hub |
| 63 | ++ tag: latest |
| 64 | ++ registry: ghcr.io/traefik |
| 65 | + |
| 66 | + # -- Additional arguments to be passed at Traefik's binary |
| 67 | + # See [CLI Reference](https://docs.traefik.io/reference/static-configuration/cli/) |
| 68 | +@@ -941,6 +957,8 @@ hub: |
| 69 | + # -- Name of `Secret` with key 'token' set to a valid license token. |
| 70 | + # It enables API Gateway. |
| 71 | + token: "" |
| 72 | ++ # -- Disables all external network connections. |
| 73 | ++ offline: false |
| 74 | + # -- By default, Traefik Hub provider watches all namespaces. When using `rbac.namespaced`, it will watch helm release namespace and namespaces listed in this array. |
| 75 | + namespaces: [] # @schema required:true |
| 76 | + apimanagement: |
| 77 | +@@ -1109,19 +1127,3 @@ oci_meta: |
| 78 | + hub: |
| 79 | + image: traefik-hub |
| 80 | + tag: latest |
| 81 | +- |
| 82 | +-# -- Required for Azure Marketplace integration. |
| 83 | +-# See https://learn.microsoft.com/en-us/partner-center/marketplace-offers/azure-container-technical-assets-kubernetes?tabs=linux,linux2#update-the-helm-chart |
| 84 | +-global: |
| 85 | +- azure: |
| 86 | +- # -- Enable specific values for Azure Marketplace |
| 87 | +- enabled: false |
| 88 | +- images: |
| 89 | +- proxy: |
| 90 | +- image: traefik |
| 91 | +- tag: latest |
| 92 | +- registry: docker.io/library |
| 93 | +- hub: |
| 94 | +- image: traefik-hub |
| 95 | +- tag: latest |
| 96 | +- registry: ghcr.io/traefik |
| 97 | +``` |
| 98 | + |
3 | 99 | ## 35.4.0    |
4 | 100 |
|
5 | 101 | **Release date:** 2025-05-23 |
|
0 commit comments