diff --git a/CHANGELOG.md b/CHANGELOG.md index 82e23df8..00dc6204 100644 --- a/CHANGELOG.md +++ b/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 diff --git a/README.md b/README.md index 93018e7a..c92cb1ec 100644 --- a/README.md +++ b/README.md @@ -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` diff --git a/contrib/local-environment/docker-compose-keycloak.yaml b/contrib/local-environment/docker-compose-keycloak.yaml index cf9558df..47b7666c 100644 --- a/contrib/local-environment/docker-compose-keycloak.yaml +++ b/contrib/local-environment/docker-compose-keycloak.yaml @@ -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: diff --git a/contrib/local-environment/docker-compose.yaml b/contrib/local-environment/docker-compose.yaml index d87037cd..198129ec 100644 --- a/contrib/local-environment/docker-compose.yaml +++ b/contrib/local-environment/docker-compose.yaml @@ -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 diff --git a/docs/1_installation.md b/docs/1_installation.md index a82a3c46..99650703 100644 --- a/docs/1_installation.md +++ b/docs/1_installation.md @@ -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`