Merge current v2.5 into master
This commit is contained in:
commit
ca2ff214c4
6 changed files with 35 additions and 21 deletions
|
@ -1,5 +1,5 @@
|
||||||
## [v2.5.0-rc1](https://github.com/traefik/traefik/tree/v2.5.0-rc1) (2021-06-28)
|
## [v2.5.0-rc2](https://github.com/traefik/traefik/tree/v2.5.0-rc2) (2021-06-28)
|
||||||
[All Commits](https://github.com/traefik/traefik/compare/v2.4.0-rc1...v2.5.0-rc1)
|
[All Commits](https://github.com/traefik/traefik/compare/v2.4.0-rc1...v2.5.0-rc2)
|
||||||
|
|
||||||
**Enhancements:**
|
**Enhancements:**
|
||||||
- **[file]** Update sprig to v3.2.0 ([#7746](https://github.com/traefik/traefik/pull/7746) by [sirlatrom](https://github.com/sirlatrom))
|
- **[file]** Update sprig to v3.2.0 ([#7746](https://github.com/traefik/traefik/pull/7746) by [sirlatrom](https://github.com/sirlatrom))
|
||||||
|
@ -68,6 +68,10 @@
|
||||||
- Merge current v2.4 into master ([#7748](https://github.com/traefik/traefik/pull/7748) by [kevinpollet](https://github.com/kevinpollet))
|
- Merge current v2.4 into master ([#7748](https://github.com/traefik/traefik/pull/7748) by [kevinpollet](https://github.com/kevinpollet))
|
||||||
- Merge current v2.4 into master ([#7728](https://github.com/traefik/traefik/pull/7728) by [mmatur](https://github.com/mmatur))
|
- Merge current v2.4 into master ([#7728](https://github.com/traefik/traefik/pull/7728) by [mmatur](https://github.com/mmatur))
|
||||||
|
|
||||||
|
## [v2.5.0-rc1](https://github.com/traefik/traefik/tree/v2.5.0-rc1) (2021-06-28)
|
||||||
|
|
||||||
|
Release canceled.
|
||||||
|
|
||||||
## [v2.4.9](https://github.com/traefik/traefik/tree/v2.4.9) (2021-06-21)
|
## [v2.4.9](https://github.com/traefik/traefik/tree/v2.4.9) (2021-06-21)
|
||||||
[All Commits](https://github.com/traefik/traefik/compare/v2.4.8...v2.4.9)
|
[All Commits](https://github.com/traefik/traefik/compare/v2.4.8...v2.4.9)
|
||||||
|
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -142,7 +142,7 @@ generate-genconf:
|
||||||
## Create packages for the release
|
## Create packages for the release
|
||||||
release-packages: generate-webui build-dev-image
|
release-packages: generate-webui build-dev-image
|
||||||
rm -rf dist
|
rm -rf dist
|
||||||
$(DOCKER_RUN_TRAEFIK_NOTTY) goreleaser release --skip-publish --timeout="60m"
|
$(DOCKER_RUN_TRAEFIK_NOTTY) goreleaser release --skip-publish --timeout="90m"
|
||||||
$(DOCKER_RUN_TRAEFIK_NOTTY) tar cfz dist/traefik-${VERSION}.src.tar.gz \
|
$(DOCKER_RUN_TRAEFIK_NOTTY) tar cfz dist/traefik-${VERSION}.src.tar.gz \
|
||||||
--exclude-vcs \
|
--exclude-vcs \
|
||||||
--exclude .idea \
|
--exclude .idea \
|
||||||
|
|
|
@ -174,18 +174,18 @@ WriteTimeout is the maximum duration before timing out writes of the response. I
|
||||||
`--entrypoints.<name>.udp.timeout`:
|
`--entrypoints.<name>.udp.timeout`:
|
||||||
Timeout defines how long to wait on an idle session before releasing the related resources. (Default: ```3```)
|
Timeout defines how long to wait on an idle session before releasing the related resources. (Default: ```3```)
|
||||||
|
|
||||||
`--experimental.devplugin.gopath`:
|
|
||||||
plugin's GOPATH.
|
|
||||||
|
|
||||||
`--experimental.devplugin.modulename`:
|
|
||||||
plugin's module name.
|
|
||||||
|
|
||||||
`--experimental.http3`:
|
`--experimental.http3`:
|
||||||
Enable HTTP3. (Default: ```false```)
|
Enable HTTP3. (Default: ```false```)
|
||||||
|
|
||||||
`--experimental.kubernetesgateway`:
|
`--experimental.kubernetesgateway`:
|
||||||
Allow the Kubernetes gateway api provider usage. (Default: ```false```)
|
Allow the Kubernetes gateway api provider usage. (Default: ```false```)
|
||||||
|
|
||||||
|
`--experimental.localplugins.<name>`:
|
||||||
|
Local plugins configuration. (Default: ```false```)
|
||||||
|
|
||||||
|
`--experimental.localplugins.<name>.modulename`:
|
||||||
|
plugin's module name.
|
||||||
|
|
||||||
`--experimental.plugins.<name>.modulename`:
|
`--experimental.plugins.<name>.modulename`:
|
||||||
plugin's module name.
|
plugin's module name.
|
||||||
|
|
||||||
|
|
|
@ -174,18 +174,18 @@ WriteTimeout is the maximum duration before timing out writes of the response. I
|
||||||
`TRAEFIK_ENTRYPOINTS_<NAME>_UDP_TIMEOUT`:
|
`TRAEFIK_ENTRYPOINTS_<NAME>_UDP_TIMEOUT`:
|
||||||
Timeout defines how long to wait on an idle session before releasing the related resources. (Default: ```3```)
|
Timeout defines how long to wait on an idle session before releasing the related resources. (Default: ```3```)
|
||||||
|
|
||||||
`TRAEFIK_EXPERIMENTAL_DEVPLUGIN_GOPATH`:
|
|
||||||
plugin's GOPATH.
|
|
||||||
|
|
||||||
`TRAEFIK_EXPERIMENTAL_DEVPLUGIN_MODULENAME`:
|
|
||||||
plugin's module name.
|
|
||||||
|
|
||||||
`TRAEFIK_EXPERIMENTAL_HTTP3`:
|
`TRAEFIK_EXPERIMENTAL_HTTP3`:
|
||||||
Enable HTTP3. (Default: ```false```)
|
Enable HTTP3. (Default: ```false```)
|
||||||
|
|
||||||
`TRAEFIK_EXPERIMENTAL_KUBERNETESGATEWAY`:
|
`TRAEFIK_EXPERIMENTAL_KUBERNETESGATEWAY`:
|
||||||
Allow the Kubernetes gateway api provider usage. (Default: ```false```)
|
Allow the Kubernetes gateway api provider usage. (Default: ```false```)
|
||||||
|
|
||||||
|
`TRAEFIK_EXPERIMENTAL_LOCALPLUGINS_<NAME>`:
|
||||||
|
Local plugins configuration. (Default: ```false```)
|
||||||
|
|
||||||
|
`TRAEFIK_EXPERIMENTAL_LOCALPLUGINS_<NAME>_MODULENAME`:
|
||||||
|
plugin's module name.
|
||||||
|
|
||||||
`TRAEFIK_EXPERIMENTAL_PLUGINS_<NAME>_MODULENAME`:
|
`TRAEFIK_EXPERIMENTAL_PLUGINS_<NAME>_MODULENAME`:
|
||||||
plugin's module name.
|
plugin's module name.
|
||||||
|
|
||||||
|
|
|
@ -226,6 +226,9 @@
|
||||||
cert = "foobar"
|
cert = "foobar"
|
||||||
key = "foobar"
|
key = "foobar"
|
||||||
insecureSkipVerify = true
|
insecureSkipVerify = true
|
||||||
|
[providers.plugin]
|
||||||
|
[providers.plugin.Descriptor0]
|
||||||
|
[providers.plugin.Descriptor1]
|
||||||
|
|
||||||
[api]
|
[api]
|
||||||
insecure = true
|
insecure = true
|
||||||
|
@ -398,6 +401,8 @@
|
||||||
[experimental.plugins.Descriptor1]
|
[experimental.plugins.Descriptor1]
|
||||||
moduleName = "foobar"
|
moduleName = "foobar"
|
||||||
version = "foobar"
|
version = "foobar"
|
||||||
[experimental.devPlugin]
|
[experimental.localPlugins]
|
||||||
goPath = "foobar"
|
[experimental.localPlugins.Descriptor0]
|
||||||
|
moduleName = "foobar"
|
||||||
|
[experimental.localPlugins.Descriptor1]
|
||||||
moduleName = "foobar"
|
moduleName = "foobar"
|
||||||
|
|
|
@ -248,6 +248,9 @@ providers:
|
||||||
cert: foobar
|
cert: foobar
|
||||||
key: foobar
|
key: foobar
|
||||||
insecureSkipVerify: true
|
insecureSkipVerify: true
|
||||||
|
plugin:
|
||||||
|
Descriptor0: {}
|
||||||
|
Descriptor1: {}
|
||||||
api:
|
api:
|
||||||
insecure: true
|
insecure: true
|
||||||
dashboard: true
|
dashboard: true
|
||||||
|
@ -418,6 +421,8 @@ experimental:
|
||||||
Descriptor1:
|
Descriptor1:
|
||||||
moduleName: foobar
|
moduleName: foobar
|
||||||
version: foobar
|
version: foobar
|
||||||
devPlugin:
|
localPlugins:
|
||||||
goPath: foobar
|
Descriptor0:
|
||||||
|
moduleName: foobar
|
||||||
|
Descriptor1:
|
||||||
moduleName: foobar
|
moduleName: foobar
|
||||||
|
|
Loading…
Reference in a new issue