Releases: dasniko/testcontainers-keycloak
v3.6.0
What's Changed
- Add configuration to disable bootstrap of admin account by @marioschlipf in #165
New Contributors
- @marioschlipf made their first contribution in #165
Full Changelog: 3.5.1...3.6.0
v3.5.1
Exclude transitive dependency to javax.*
namespace, introduced by update of shrinkwrap dependency (#160 , thanks to @evandongen)
Full Changelog: 3.5.0...3.5.1
v3.5.0
What's Changed
- Add support for production mode by @mathieu-pousse in #150
- use the new bootstrap admin env vars by @dasniko in #153
- add distinct method to disable lightweight access token for admin-cli by @dasniko in #155
- Added distinct method for getting Management URL from Testcontainer by @robson90 in #156
New Contributors
- @mathieu-pousse made their first contribution in #150
- @robson90 made their first contribution in #156
Full Changelog: 3.4.0...3.5.0
v3.4.0
What's Changed
- use fixed health endpoint for wait strategy on new management port by @dasniko in #142
- use envvars as default config options and add custom command parts by @dasniko in #143
- allow for multiple provider classes locations by @dasniko in #129
- new truststore config by @dasniko in #144
- don't use client auth on http management port by @dasniko in #146
Full Changelog: v.3.3.1...3.4.0
v.3.3.1
What's Changed
- change wait strategy to use log output by @dasniko in #136
- Bump org.keycloak:keycloak-services from 24.0.0 to 24.0.3 by @dependabot in #132
- set the import-realm flag always by @dasniko in #138
- copy realm file with permissions by @dasniko in #139
Full Changelog: v3.3.0...v.3.3.1
v3.3.0
v3.2.0
v3.1.0
What's Changed
- Add support for verbose command line argument #114
- Add option to remotely debug Keycloak by @martinleim in #118
New Contributors
- @martinleim made their first contribution in #118
Full Changelog: 3.0.0...3.1.0
Keycloak 22 w/ Java 17 and jakarta.* namespace support - Breaking Changes!
With Keycloak 22 come a bunch of breaking changes, see this blog post here for all the important information!
This release now contains:
- fully based on Java 17 (may be breaking)
- using the new default
keycloak-admin-client
, which is based onjakarta.*
namespace (breaking) - revised value of the default context path - the server url returned by
getAuthServerUrl()
now does not end with a/
(slash) at the end if you provided no custom context path! (breaking) - make the method
getKeycloakDefaultVersion()
public, to be able to get the information from the container during runtime, e.g. in automated tests (not breaking)
Keycloak 22 - last 2.x release version!
As Keycloak 22 comes with a lot of major changes, which are mostly incompatible with prior versions and makes secure, modern and uptodate software development hard, this release will be the last version of the 2.x release branch.
See this blog post here for further details: https://www.keycloak.org/2023/07/keycloak-2200-released.html
Also, there's no guarantee, that this Keycloak testcontainer with version 22 will work properly at all places without errors!
What's Changed besides the above mentioned
- Support metrics by @sventorben in #102