Skip to content

Commit bf29417

Browse files
committed
Merge current v2.5 into master
2 parents 89cd9e8 + 79a14ce commit bf29417

File tree

13 files changed

+167
-100
lines changed

13 files changed

+167
-100
lines changed

.semaphore/semaphore.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ blocks:
6464
- name: GH_VERSION
6565
value: 1.12.1
6666
- name: CODENAME
67-
value: "livarot"
67+
value: "brie"
6868
- name: PRE_TARGET
6969
value: ""
7070
prologue:

CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## [v2.5.5](https://github.com/traefik/traefik/tree/v2.5.5) (2021-12-09)
2+
[All Commits](https://github.com/traefik/traefik/compare/v2.5.4...v2.5.5)
3+
4+
**Bug fixes:**
5+
- **[acme]** Update go-acme/lego to v4.5.3 ([#8607](https://github.com/traefik/traefik/pull/8607) by [lippertmarkus](https://github.com/lippertmarkus))
6+
- **[k8s/crd,k8s]** fix: propagate source criterion config to RateLimit middleware in Kubernetes CRD ([#8591](https://github.com/traefik/traefik/pull/8591) by [rbailly-talend](https://github.com/rbailly-talend))
7+
- **[plugins]** plugins: start the go routine before calling Provide ([#8620](https://github.com/traefik/traefik/pull/8620) by [ldez](https://github.com/ldez))
8+
- **[plugins]** Update yaegi to v0.11.1 ([#8600](https://github.com/traefik/traefik/pull/8600) by [tomMoulard](https://github.com/tomMoulard))
9+
- **[plugins]** Update yaegi v0.11.0 ([#8564](https://github.com/traefik/traefik/pull/8564) by [ldez](https://github.com/ldez))
10+
- **[udp]** fix: increase UDP read buffer length to max datagram size ([#8560](https://github.com/traefik/traefik/pull/8560) by [kevinpollet](https://github.com/kevinpollet))
11+
12+
**Documentation:**
13+
- **[consul]** docs: removing typo in consul-catalog provider doc ([#8603](https://github.com/traefik/traefik/pull/8603) by [tomMoulard](https://github.com/tomMoulard))
14+
- **[metrics]** docs: remove misleading metrics overview configuration ([#8579](https://github.com/traefik/traefik/pull/8579) by [gsilvapt](https://github.com/gsilvapt))
15+
- **[middleware]** docs: align docker configuration example notes in basicauth HTTP middleware ([#8615](https://github.com/traefik/traefik/pull/8615) by [tomMoulard](https://github.com/tomMoulard))
16+
- **[service]** docs: health check use readiness probe in k8s ([#8575](https://github.com/traefik/traefik/pull/8575) by [Vampouille](https://github.com/Vampouille))
17+
- **[tls]** docs: uniformize client TLS config documentation ([#8602](https://github.com/traefik/traefik/pull/8602) by [kevinpollet](https://github.com/kevinpollet))
18+
- Update CODE_OF_CONDUCT.md ([#8619](https://github.com/traefik/traefik/pull/8619) by [tfny](https://github.com/tfny))
19+
- fixed minor spelling error in Regexp Syntax section ([#8565](https://github.com/traefik/traefik/pull/8565) by [kerrsmith](https://github.com/kerrsmith))
20+
121
## [v2.5.4](https://github.com/traefik/traefik/tree/v2.5.4) (2021-11-08)
222
[All Commits](https://github.com/traefik/traefik/compare/v2.5.3...v2.5.4)
323

CODE_OF_CONDUCT.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Our Pledge
44

5-
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience,nationality, personal appearance, race, religion, or sexual identity and orientation.
5+
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
66

77
## Our Standards
88

@@ -30,15 +30,19 @@ Project maintainers have the right and responsibility to remove, edit, or reject
3030

3131
## Scope
3232

33-
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community.
33+
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or our community.
34+
3435
Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
3536
Representation of a project may be further defined and clarified by project maintainers.
3637

3738
## Enforcement
3839

3940
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at [email protected]
41+
4042
All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances.
43+
4144
The project team is obligated to maintain confidentiality with regard to the reporter of an incident.
45+
4246
Further details of specific enforcement policies may be posted separately.
4347

4448
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.

docs/content/middlewares/http/basicauth.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,11 @@ The `users` option is an array of authorized users. Each user must be declared u
9898
```yaml tab="Docker"
9999
# Declaring the user list
100100
#
101-
# Note: all dollar signs in the hash need to be doubled for escaping.
101+
# Note: when used in docker-compose.yml all dollar signs in the hash need to be doubled for escaping.
102102
# To create a user:password pair, the following command can be used:
103103
# echo $(htpasswd -nb user password) | sed -e s/\\$/\\$\\$/g
104+
#
105+
# Also note that dollar signs should NOT be doubled when they not evaluated (e.g. Ansible docker_container module).
104106
labels:
105107
- "traefik.http.middlewares.test-auth.basicauth.users=test:$$apr1$$H6uskkkW$$IgXLP6ewTrSuBkTrqE8wj/,test2:$$apr1$$d9hr9HBB$$4HxwgUir3HP4EsggP/QNo0"
106108
```

docs/content/middlewares/http/overview.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ labels:
8484
# As TOML Configuration File
8585
[http.routers]
8686
[http.routers.router1]
87-
service = "myService"
87+
service = "service1"
8888
middlewares = ["foo-add-prefix"]
8989
rule = "Host(`example.com`)"
9090

@@ -105,7 +105,7 @@ labels:
105105
http:
106106
routers:
107107
router1:
108-
service: myService
108+
service: service1
109109
middlewares:
110110
- "foo-add-prefix"
111111
rule: "Host(`example.com`)"

docs/content/middlewares/http/passtlsclientcert.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ labels:
2323
apiVersion: traefik.containo.us/v1alpha1
2424
kind: Middleware
2525
metadata:
26-
name: addprefix
26+
name: test-passtlsclientcert
2727
spec:
2828
passTLSClientCert:
2929
pem: true

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ require (
7272
go.elastic.co/apm v1.13.1
7373
go.elastic.co/apm/module/apmot v1.13.1
7474
golang.org/x/mod v0.4.2
75-
golang.org/x/net v0.0.0-20210614182718-04defd469f4e
75+
golang.org/x/net v0.0.0-20211209124913-491a49abca63
7676
golang.org/x/sys v0.0.0-20210817190340-bfb29a6856f2 // indirect
7777
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac
7878
golang.org/x/tools v0.1.5

go.sum

+2-1
Original file line numberDiff line numberDiff line change
@@ -1939,8 +1939,9 @@ golang.org/x/net v0.0.0-20210410081132-afb366fc7cd1/go.mod h1:9tjilg8BloeKEkVJvy
19391939
golang.org/x/net v0.0.0-20210428140749-89ef3d95e781/go.mod h1:OJAsFXCWl8Ukc7SiCT/9KSuxbyM7479/AVlXFRxuMCk=
19401940
golang.org/x/net v0.0.0-20210510120150-4163338589ed/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
19411941
golang.org/x/net v0.0.0-20210520170846-37e1c6afe023/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
1942-
golang.org/x/net v0.0.0-20210614182718-04defd469f4e h1:XpT3nA5TvE525Ne3hInMh6+GETgn27Zfm9dxsThnX2Q=
19431942
golang.org/x/net v0.0.0-20210614182718-04defd469f4e/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
1943+
golang.org/x/net v0.0.0-20211209124913-491a49abca63 h1:iocB37TsdFuN6IBRZ+ry36wrkoV51/tl5vOWqkcPGvY=
1944+
golang.org/x/net v0.0.0-20211209124913-491a49abca63/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
19441945
golang.org/x/oauth2 v0.0.0-20180724155351-3d292e4d0cdc/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
19451946
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
19461947
golang.org/x/oauth2 v0.0.0-20181017192945-9dcd33a902f4/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=

pkg/middlewares/forwardedheaders/forwarded_header.go

+10
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,12 @@ func (x *XForwarded) rewrite(outreq *http.Request) {
165165
unsafeHeader(outreq.Header).Set(xForwardedHost, outreq.Host)
166166
}
167167

168+
// Per https://www.rfc-editor.org/rfc/rfc2616#section-4.2, the Forwarded IPs list is in
169+
// the same order as the values in the X-Forwarded-For header(s).
170+
if xffs := unsafeHeader(outreq.Header).Values(xForwardedFor); len(xffs) > 0 {
171+
unsafeHeader(outreq.Header).Set(xForwardedFor, strings.Join(xffs, ", "))
172+
}
173+
168174
if x.hostname != "" {
169175
unsafeHeader(outreq.Header).Set(xForwardedServer, x.hostname)
170176
}
@@ -198,6 +204,10 @@ func (h unsafeHeader) Get(key string) string {
198204
return h[key][0]
199205
}
200206

207+
func (h unsafeHeader) Values(key string) []string {
208+
return h[key]
209+
}
210+
201211
func (h unsafeHeader) Del(key string) {
202212
delete(h, key)
203213
}

0 commit comments

Comments
 (0)