Merge pull request #741 from oauth2-proxy/release-6.1.0
Prepare changelog for v6.1.0 release
This commit is contained in:
commit
37026b60ce
16
CHANGELOG.md
16
CHANGELOG.md
@ -4,6 +4,22 @@
|
||||
|
||||
## Important Notes
|
||||
|
||||
## Breaking Changes
|
||||
|
||||
## Changes since v6.1.0
|
||||
|
||||
# v6.1.0
|
||||
|
||||
## Release Highlights
|
||||
|
||||
- Redis session stores now support authenticated connections
|
||||
- Error logging can now be separated from info logging by directing error logs to stderr
|
||||
- Added --session-cookie-minimal flag which helps prevent large session cookies
|
||||
- Improvements to force-https behaviour
|
||||
- Allow requests to skip authentication based on their source IP
|
||||
|
||||
## Important Notes
|
||||
|
||||
- [#632](https://github.com/oauth2-proxy/oauth2-proxy/pull/632) There is backwards compatibility to sessions from v5
|
||||
- Any unencrypted sessions from before v5 that only contained a Username & Email will trigger a reauthentication
|
||||
|
||||
|
@ -23,7 +23,7 @@ Going forward, all images shall be available at `quay.io/oauth2-proxy/oauth2-pro
|
||||
|
||||
1. Choose how to deploy:
|
||||
|
||||
a. Download [Prebuilt Binary](https://github.com/oauth2-proxy/oauth2-proxy/releases) (current release is `v6.0.0`)
|
||||
a. Download [Prebuilt Binary](https://github.com/oauth2-proxy/oauth2-proxy/releases) (current release is `v6.1.0`)
|
||||
|
||||
b. Build with `$ go get github.com/oauth2-proxy/oauth2-proxy` which will put the binary in `$GOROOT/bin`
|
||||
|
||||
|
@ -15,7 +15,7 @@ services:
|
||||
|
||||
oauth2-proxy:
|
||||
container_name: oauth2-proxy
|
||||
image: quay.io/oauth2-proxy/oauth2-proxy:v6.0.0
|
||||
image: quay.io/oauth2-proxy/oauth2-proxy:v6.1.0
|
||||
command: --config /oauth2-proxy.cfg
|
||||
hostname: oauth2-proxy
|
||||
volumes:
|
||||
|
@ -13,7 +13,7 @@ version: '3.0'
|
||||
services:
|
||||
oauth2-proxy:
|
||||
container_name: oauth2-proxy
|
||||
image: quay.io/oauth2-proxy/oauth2-proxy:v6.0.0
|
||||
image: quay.io/oauth2-proxy/oauth2-proxy:v6.1.0
|
||||
command: --config /oauth2-proxy.cfg
|
||||
ports:
|
||||
- 4180:4180/tcp
|
||||
|
@ -9,7 +9,7 @@ nav_order: 1
|
||||
|
||||
1. Choose how to deploy:
|
||||
|
||||
a. Download [Prebuilt Binary](https://github.com/oauth2-proxy/oauth2-proxy/releases) (current release is `v6.0.0`)
|
||||
a. Download [Prebuilt Binary](https://github.com/oauth2-proxy/oauth2-proxy/releases) (current release is `v6.1.0`)
|
||||
|
||||
b. Build with `$ go get github.com/oauth2-proxy/oauth2-proxy` which will put the binary in `$GOROOT/bin`
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user