All Versions
12
Latest Version
Avg Release Cycle
84 days
Latest Release
1572 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v1.5.1 Changes
November 24, 2020- ๐ Fixes #218
-
v1.5.0 Changes
November 20, 2020โฌ๏ธ Upgraded to Spring Boot version
2.4.0
(fixes #214) -
v1.4.0 Changes
February 04, 2020- ๐ Fixes #136: Cannot set custom userInfoEndpoint user/oidc user service
โ Add new
AuthoritiesProvider
interface to make it easier to add customGrantedAuthority
to the user. Just add a bean that implements the newAuthoritiesProvider
:@BeanAuthoritiesProvider myCustomAuthoritiesProvider() { return (user, userRequest) -> lookupExtraAuthoritesByName(user.getAttributes().get("email")); }
-
v1.3.0 Changes
October 18, 2019- ๐ Updated to Spring Boot 2.2.0.RELEASE
- โ Added new config property
postLogoutRedirectUri
, if set an RP-Initiated (SSO) logout will be configured automatically
-
v1.2.1 Changes
June 04, 2019- โ Add support for Spring Boot 2.2.0.M3
- โก๏ธ Update to Jackson 2.9.9
-
v1.2.0 Changes
May 10, 2019- โ Adds a check for required properties before configuring OAuth flows #121
- โ Add Resource Server 401 response body
-
v1.1.0 Changes
February 06, 2019- โ Added support for Spring WebFlux
- ๐ท Now running CI against Java 8 and 11
-
v1.0.0 Changes
December 17, 2018๐ This version represents a re-write of this library in order to support Spring Boot 2.1 (Spring Security 5.1) which uses a different OAuth2/OIDC library.
- โก๏ธ The
@ResourceServer
annotation is no longer used (See the Readme for an updated example) - ๐ Spring Security ONLY support local access token validation, the property
okta.oauth2.localTokenValidation
is no longer supported - The property
okta.oauth2.roles-claim
has been replaced withokta.oauth2.groups-claim
- โก๏ธ The
-
v0.6.1 Changes
October 03, 2018โ Added validation to detect common copy/paste errors for okta.oauth2.* properties
-
v0.6.0 Changes
July 02, 2018- ๐ Fixed parsing issue when using Spring Boot 2 and kabab case instead of camel case, i.e.
okta.oauth2.client-id
vsokta.oauth2.clientId
- โ Added support for using OAuth2SsoCustomConfiguration (providing a
WebSecurityConfigurerAdapter
containing a@EnableOAuth2Sso
annotation.
- ๐ Fixed parsing issue when using Spring Boot 2 and kabab case instead of camel case, i.e.