KEYCLOAK-10728 Upgrade to WildFly 18 Final
This commit is contained in:
parent
3f6e60ccfa
commit
384b37dd62
4 changed files with 34 additions and 12 deletions
|
@ -26,6 +26,10 @@ Notice that when {project_name} acts as the IDP we can use the built-in role map
|
|||
before setting the roles into the assertion, so this SPI will probably be redundant in this case. The `RoleMappingsProvider`
|
||||
SPI was designed for situations when the IDP offer no way to map roles before adding them to the assertion.
|
||||
|
||||
== WildFly 18 Upgrade
|
||||
|
||||
Keycloak server was upgraded to use WildFly 18 under the covers.
|
||||
|
||||
= Other Improvements
|
||||
|
||||
== System properties and environment variables support in theme.properties
|
||||
|
|
|
@ -67,7 +67,7 @@
|
|||
|
||||
:appserver_name: WildFly
|
||||
:appserver_dirref: WILDFLY_HOME
|
||||
:appserver_version: 17
|
||||
:appserver_version: 18
|
||||
|
||||
:appserver_doc_base_url: http://docs.wildfly.org/{appserver_version}
|
||||
:appserver_socket_link: {appserver_doc_base_url}/Admin_Guide.html#Interfaces_and_ports
|
||||
|
@ -88,17 +88,17 @@
|
|||
:appserver_loadbalancer_name: {appserver_name} {appserver_version} Documentation
|
||||
|
||||
:jdgserver_name: Infinispan
|
||||
:jdgserver_version: 9.4.14
|
||||
:jdgserver_version: 9.4.16
|
||||
:jdgserver_crossdcdocs_link: https://access.redhat.com/documentation/en-us/red_hat_data_grid/7.3/html/red_hat_data_grid_user_guide/x_site_replication
|
||||
|
||||
:fuseVersion: JBoss Fuse 6.3.0 Rollup 11
|
||||
:fuseVersion: JBoss Fuse 6.3.0 Rollup 12
|
||||
:fuseHawtioEAPVersion: JBoss EAP 6.4
|
||||
:fuseHawtioWARVersion: hawtio-wildfly-1.4.0.redhat-630377.war
|
||||
:fuseHawtioWARVersion: hawtio-wildfly-1.4.0.redhat-630396.war
|
||||
|
||||
:fuse7Version: JBoss Fuse 7.3.1
|
||||
:fuse7Version: JBoss Fuse 7.4.0
|
||||
|
||||
:subsystem_undertow_xml_urn: urn:jboss:domain:undertow:9.0
|
||||
:subsystem_infinispan_xml_urn: urn:jboss:domain:infinispan:8.0
|
||||
:subsystem_undertow_xml_urn: urn:jboss:domain:undertow:10.0
|
||||
:subsystem_infinispan_xml_urn: urn:jboss:domain:infinispan:9.0
|
||||
:subsystem_datasources_xml_urn: urn:jboss:domain:datasources:5.0
|
||||
:saml_adapter_xsd_urn: https://www.keycloak.org/schema/keycloak_saml_adapter_1_10.xsd
|
||||
:generic_adapter_name: keycloak-gatekeeper
|
||||
|
|
|
@ -113,14 +113,14 @@ endif::[]
|
|||
:jdgserver_version: 7.3.0
|
||||
:jdgserver_crossdcdocs_link: https://access.redhat.com/documentation/en-us/red_hat_data_grid/7.3/html/red_hat_data_grid_user_guide/x_site_replication
|
||||
|
||||
:fuseVersion: JBoss Fuse 6.3.0 Rollup 11
|
||||
:fuseVersion: JBoss Fuse 6.3.0 Rollup 12
|
||||
:fuseHawtioEAPVersion: JBoss EAP 6.4
|
||||
:fuseHawtioWARVersion: hawtio-wildfly-1.4.0.redhat-630377.war
|
||||
:fuseHawtioWARVersion: hawtio-wildfly-1.4.0.redhat-630396.war
|
||||
|
||||
:fuse7Version: JBoss Fuse 7.3.1
|
||||
:fuse7Version: JBoss Fuse 7.4.0
|
||||
|
||||
:subsystem_undertow_xml_urn: urn:jboss:domain:undertow:9.0
|
||||
:subsystem_infinispan_xml_urn: urn:jboss:domain:infinispan:8.0
|
||||
:subsystem_undertow_xml_urn: urn:jboss:domain:undertow:10.0
|
||||
:subsystem_infinispan_xml_urn: urn:jboss:domain:infinispan:9.0
|
||||
:subsystem_datasources_xml_urn: urn:jboss:domain:datasources:5.0
|
||||
:saml_adapter_xsd_urn: https://www.keycloak.org/schema/keycloak_saml_adapter_1_10.xsd
|
||||
:generic_adapter_name: keycloak-gatekeeper
|
||||
|
|
|
@ -1,5 +1,23 @@
|
|||
== Migration Changes
|
||||
|
||||
=== Migrating to 8.0.0
|
||||
|
||||
==== Upgrade to Wildfly 18
|
||||
|
||||
The {project_name} server was upgraded to use Wildfly 18 as the underlying container. This does not directly involve any
|
||||
specific {project_name} server functionality, but there are a few changes related to the migration, which are worth mentioning.
|
||||
|
||||
Dependency updates::
|
||||
The dependencies were updated to the versions used by Wildfly 18 server. For example, Infinispan is now 9.4.16.Final.
|
||||
|
||||
Configuration changes::
|
||||
There are few configuration changes in the `standalone(-ha).xml` and `domain.xml` files. You should follow the <<_install_new_version>>
|
||||
section to handle the migration of configuration files automatically.
|
||||
|
||||
Cross-Datacenter Replication changes::
|
||||
* You will need to upgrade {jdgserver_name} server to version {jdgserver_version}. The older version may still work, but it is
|
||||
not guaranteed as we don't test it anymore.
|
||||
|
||||
=== Migrating to 7.0.0
|
||||
|
||||
==== Upgrade to Wildfly 17
|
||||
|
|
Loading…
Reference in a new issue