Skip to content
Snippets Groups Projects
Unverified Commit 8515462d authored by Rohith Jayawardene's avatar Rohith Jayawardene Committed by GitHub
Browse files

Release 2.1.0 (#294)

* Release 2.1.0

- pushing a release for 2.1.0 as it's been RC for a while now

* - updating the authors file once more
parent 13dde5eb
No related branches found
No related tags found
No related merge requests found
......@@ -6,6 +6,7 @@ Jan Garaj <info@monitoringartist.com>
Jiten Bhagat <jits@users.noreply.github.com>
johanneslanger <jo.langer@gmail.com>
Naveen <nsrinivasan1976@gmail.com>
PJ Eby <pje@telecommunity.com>
Remco Verhoef <remco@dutchcoders.io>
Rémi Vion <vion.remi@gmail.com>
Rohith <gambol99@gmail.com>
......
#### **2.1.0/master (unrealised/unstable)**
#### **2.1.0**
FIXES:
* fixed the parsing of slices for command line arguments (i.e. --cors-origins etc)
......@@ -11,6 +11,7 @@ FIXES:
* added docker image instructions to the readme [#PR204](https://github.com/gambol99/keycloak-proxy/pull/204)
* added unit tests for the debug handlers [#PR223](https://github.com/gambol99/keycloak-proxy/pull/223)
* fixing the logout handler panic when revocation url is not set [#PR254](https://github.com/gambol99/keycloak-proxy/pull/254)
* fixing the Host header on the forwarding proxy [#PR290](https://github.com/gambol99/keycloak-proxy/pull/290)
FEATURES
* changed the routing engine from gin to echo
......
......@@ -34,7 +34,7 @@ USAGE:
keycloak-proxy [options]
VERSION:
v2.1.0-rc4 (git+sha: 8c31d10-dirty, built: 06-09-2017)
v2.1.0 (git+sha: 87f0b9c-dirty, built: 21-12-2017)
AUTHOR:
Rohith <gambol99@gmail.com>
......@@ -58,7 +58,6 @@ GLOBAL OPTIONS:
--upstream-ca value the path to a file container a CA certificate to validate the upstream tls endpoint
--resources value list of resources 'uri=/admin|methods=GET,PUT|roles=role1,role2'
--headers value custom headers to the upstream request, key=value
--enable-token-header enables the token authentication header X-Auth-Token to upstream (default: true)
--enable-encrypted-token enable encryption for the access tokens (default: false)
--enable-logging enable http logging of the requests (default: false)
--enable-json-logging switch on json logging rather than text (default: false)
......@@ -66,7 +65,9 @@ GLOBAL OPTIONS:
--enable-security-filter enables the security filter handler (default: false) [$PROXY_ENABLE_SECURITY_FILTER]
--enable-refresh-tokens enables the handling of the refresh tokens (default: false) [$PROXY_ENABLE_REFRESH_TOKEN]
--enable-login-handler enables the handling of the refresh tokens (default: false) [$PROXY_ENABLE_LOGIN_HANDLER]
--enable-authorization-header adds the authorization header to the proxy request (default: true)
--enable-token-header enables the token authentication header X-Auth-Token to upstream (default: true)
--enable-authorization-header adds the authorization header to the proxy request (default: true) [$PROXY_ENABLE_AUTHORIZATION_HEADER]
--enable-authorization-cookies adds the authorization cookies to the uptream proxy request (default: true) [$PROXY_ENABLE_AUTHORIZATION_COOKIES]
--enable-https-redirection enable the http to https redirection on the http service (default: false)
--enable-profiling switching on the golang profiling via pprof on /debug/pprof, /debug/pprof/heap etc (default: false)
--enable-metrics enable the prometheus metrics collector on /oauth/metrics (default: false)
......
......@@ -26,7 +26,7 @@ import (
)
var (
release = "v2.1.0-rc5"
release = "v2.1.0"
gitsha = "no gitsha provided"
compiled = "0"
version = ""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment