You've already forked oauth2-proxy
mirror of
https://github.com/oauth2-proxy/oauth2-proxy.git
synced 2025-06-17 00:17:40 +02:00
Update CHANGELOG for v7.3.0 release
This commit is contained in:
15
CHANGELOG.md
15
CHANGELOG.md
@ -2,10 +2,22 @@
|
|||||||
|
|
||||||
## Release Highlights
|
## Release Highlights
|
||||||
|
|
||||||
|
## Important Notes
|
||||||
|
|
||||||
|
## Breaking Changes
|
||||||
|
|
||||||
|
## Changes since v7.3.0
|
||||||
|
|
||||||
|
# V7.3.0
|
||||||
|
|
||||||
|
## Release Highlights
|
||||||
|
|
||||||
- [#1361](https://github.com/oauth2-proxy/oauth2-proxy/pull/1541) PKCE Code Challenge Support - RFC-7636 (@braunsonm)
|
- [#1361](https://github.com/oauth2-proxy/oauth2-proxy/pull/1541) PKCE Code Challenge Support - RFC-7636 (@braunsonm)
|
||||||
- At this time the `--code-challenge-method` flag can be used to enable it with the method of your choice.
|
- At this time the `--code-challenge-method` flag can be used to enable it with the method of your choice.
|
||||||
- Parital support for OAuth2 Authorization Server Metadata for detecting code challenge methods (@braunsonm)
|
- Parital support for OAuth2 Authorization Server Metadata for detecting code challenge methods (@braunsonm)
|
||||||
- A warning will be displayed when your provider advertises support for PKCE but you have not enabled it.
|
- A warning will be displayed when your provider advertises support for PKCE but you have not enabled it.
|
||||||
|
- Support for the ARMv8 and ppc64le architectures
|
||||||
|
- Configurable upstream request timeouts
|
||||||
|
|
||||||
## Important Notes
|
## Important Notes
|
||||||
|
|
||||||
@ -13,9 +25,12 @@
|
|||||||
If you are using an architecture specific tag (ex: v7.2.1-arm64) you should move to the generic tag instead (ex: v7.2.1 )
|
If you are using an architecture specific tag (ex: v7.2.1-arm64) you should move to the generic tag instead (ex: v7.2.1 )
|
||||||
- [#1478](https://github.com/oauth2-proxy/oauth2-proxy/pull/1478) Changes the UID and GID of the runtime user to `65532`.
|
- [#1478](https://github.com/oauth2-proxy/oauth2-proxy/pull/1478) Changes the UID and GID of the runtime user to `65532`.
|
||||||
Which also is known as `nonroot` user in [distroless images](https://github.com/GoogleContainerTools/distroless).
|
Which also is known as `nonroot` user in [distroless images](https://github.com/GoogleContainerTools/distroless).
|
||||||
|
- This release includes fixes for a number of CVEs, we recomend to upgrade as soon as possible.
|
||||||
|
|
||||||
## Breaking Changes
|
## Breaking Changes
|
||||||
|
|
||||||
|
N/A
|
||||||
|
|
||||||
## Changes since v7.2.1
|
## Changes since v7.2.1
|
||||||
|
|
||||||
- [#1662](https://github.com/oauth2-proxy/oauth2-proxy/pull/1662) Discover signature algorithms from OIDC provider (@JoelSpeed)
|
- [#1662](https://github.com/oauth2-proxy/oauth2-proxy/pull/1662) Discover signature algorithms from OIDC provider (@JoelSpeed)
|
||||||
|
@ -23,7 +23,7 @@ Going forward, all images shall be available at `quay.io/oauth2-proxy/oauth2-pro
|
|||||||
|
|
||||||
1. Choose how to deploy:
|
1. Choose how to deploy:
|
||||||
|
|
||||||
a. Download [Prebuilt Binary](https://github.com/oauth2-proxy/oauth2-proxy/releases) (current release is `v7.2.1`)
|
a. Download [Prebuilt Binary](https://github.com/oauth2-proxy/oauth2-proxy/releases) (current release is `v7.3.0`)
|
||||||
|
|
||||||
b. Build with `$ go get github.com/oauth2-proxy/oauth2-proxy/v7` which will put the binary in `$GOROOT/bin`
|
b. Build with `$ go get github.com/oauth2-proxy/oauth2-proxy/v7` which will put the binary in `$GOROOT/bin`
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@ services:
|
|||||||
|
|
||||||
oauth2-proxy:
|
oauth2-proxy:
|
||||||
container_name: oauth2-proxy
|
container_name: oauth2-proxy
|
||||||
image: quay.io/oauth2-proxy/oauth2-proxy:v7.2.1
|
image: quay.io/oauth2-proxy/oauth2-proxy:v7.3.0
|
||||||
command: --config /oauth2-proxy.cfg
|
command: --config /oauth2-proxy.cfg
|
||||||
hostname: oauth2-proxy
|
hostname: oauth2-proxy
|
||||||
volumes:
|
volumes:
|
||||||
|
@ -13,7 +13,7 @@ version: '3.0'
|
|||||||
services:
|
services:
|
||||||
oauth2-proxy:
|
oauth2-proxy:
|
||||||
container_name: oauth2-proxy
|
container_name: oauth2-proxy
|
||||||
image: quay.io/oauth2-proxy/oauth2-proxy:v7.2.1
|
image: quay.io/oauth2-proxy/oauth2-proxy:v7.3.0
|
||||||
command: --config /oauth2-proxy.cfg
|
command: --config /oauth2-proxy.cfg
|
||||||
ports:
|
ports:
|
||||||
- 4180:4180/tcp
|
- 4180:4180/tcp
|
||||||
|
@ -6,7 +6,7 @@ slug: /
|
|||||||
|
|
||||||
1. Choose how to deploy:
|
1. Choose how to deploy:
|
||||||
|
|
||||||
a. Download [Prebuilt Binary](https://github.com/oauth2-proxy/oauth2-proxy/releases) (current release is `v7.2.1`)
|
a. Download [Prebuilt Binary](https://github.com/oauth2-proxy/oauth2-proxy/releases) (current release is `v7.3.0`)
|
||||||
|
|
||||||
b. Build with `$ go get github.com/oauth2-proxy/oauth2-proxy/v7` which will put the binary in `$GOPATH/bin`
|
b. Build with `$ go get github.com/oauth2-proxy/oauth2-proxy/v7` which will put the binary in `$GOPATH/bin`
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user