Add placeholder for 4.0.0.Final and CD2 to release notes (#399)
This commit is contained in:
parent
94bd75aa3e
commit
7697a0118b
9 changed files with 73 additions and 68 deletions
|
@ -6,4 +6,5 @@
|
||||||
<li><a href="../server_development/{masterFile}.html">Server Development</a></li>
|
<li><a href="../server_development/{masterFile}.html">Server Development</a></li>
|
||||||
<li><a href="../authorization_services/{masterFile}.html">Authorization Services</a></li>
|
<li><a href="../authorization_services/{masterFile}.html">Authorization Services</a></li>
|
||||||
<li><a href="../upgrading/{masterFile}.html">Upgrading</a></li>
|
<li><a href="../upgrading/{masterFile}.html">Upgrading</a></li>
|
||||||
|
<li><a href="../release_notes/{masterFile}.html">Release Notes</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
1
release_notes/docinfo-footer.html
Symbolic link
1
release_notes/docinfo-footer.html
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../aggregation/navbar.html
|
1
release_notes/docinfo.html
Symbolic link
1
release_notes/docinfo.html
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../aggregation/navbar-head.html
|
|
@ -1,6 +1,5 @@
|
||||||
:toc:
|
:toc:
|
||||||
:toclevels: 0
|
:toclevels: 0
|
||||||
:numbered:
|
|
||||||
:linkattrs:
|
:linkattrs:
|
||||||
|
|
||||||
include::topics/templates/document-attributes-community.adoc[]
|
include::topics/templates/document-attributes-community.adoc[]
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
:toc:
|
:toc:
|
||||||
:toclevels: 1
|
:toclevels: 0
|
||||||
:numbered:
|
|
||||||
:linkattrs:
|
:linkattrs:
|
||||||
|
|
||||||
include::topics/templates/document-attributes-product.adoc[]
|
include::topics/templates/document-attributes-product.adoc[]
|
||||||
|
|
|
@ -15,21 +15,15 @@
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
|
||||||
<groupId>org.keycloak.documentation</groupId>
|
|
||||||
<artifactId>header-maven-plugin</artifactId>
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<id>add-file-headers</id>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.asciidoctor</groupId>
|
<groupId>org.asciidoctor</groupId>
|
||||||
<artifactId>asciidoctor-maven-plugin</artifactId>
|
<artifactId>asciidoctor-maven-plugin</artifactId>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>asciidoc-to-html</id>
|
<id>asciidoc-to-html</id>
|
||||||
|
<configuration>
|
||||||
|
<sourceDirectory>${basedir}</sourceDirectory>
|
||||||
|
</configuration>
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
|
@ -1 +1,15 @@
|
||||||
include::topics/4_0_0_final.adoc[leveloffset=0]
|
ifeval::[{project_community}==true]
|
||||||
|
== {project_name_full} 4.0.0.Final
|
||||||
|
include::topics/4_0_0_final.adoc[leveloffset=2]
|
||||||
|
include::topics/4_0_0_beta3.adoc[leveloffset=2]
|
||||||
|
endif::[]
|
||||||
|
|
||||||
|
ifeval::[{project_product}==true]
|
||||||
|
== {project_name_full} 2
|
||||||
|
include::topics/4_0_0_final.adoc[leveloffset=2]
|
||||||
|
endif::[]
|
||||||
|
|
||||||
|
ifeval::[{project_product}==true]
|
||||||
|
== {project_name_full} 1
|
||||||
|
include::topics/4_0_0_beta3.adoc[leveloffset=2]
|
||||||
|
endif::[]
|
49
release_notes/topics/4_0_0_beta3.adoc
Normal file
49
release_notes/topics/4_0_0_beta3.adoc
Normal file
|
@ -0,0 +1,49 @@
|
||||||
|
= Authorization Services
|
||||||
|
|
||||||
|
== UMA 2.0
|
||||||
|
|
||||||
|
UMA 2.0 is now supported for Authorization Services, including support for users to manage user access through
|
||||||
|
the account management console. There are also other additions and improvements to authorization services.
|
||||||
|
|
||||||
|
== Pushed Claims
|
||||||
|
|
||||||
|
Clients can now push additional claims and have them used by policies when evaluating permissions.
|
||||||
|
|
||||||
|
== Resource Attributes
|
||||||
|
|
||||||
|
It is now possible to define attributes on resources in order to have them used by policies when evaluating permissions.
|
||||||
|
|
||||||
|
= Themes and Theme Resources
|
||||||
|
|
||||||
|
It is now possible to hot-deploy themes to Keycloak through a regular provider deployment. We have also added support for theme resources, which allows adding additional templates and resources without creating a theme. This is useful for custom authenticators that require additional pages to be added to the authentication flow.
|
||||||
|
|
||||||
|
We have also added support to override the theme for specific clients. If that is not adequate for your needs, then there is also a new Theme Selector SPI that allows you to implement custom logic to select the theme.
|
||||||
|
|
||||||
|
= Instagram Identity Provider
|
||||||
|
|
||||||
|
We have added support to login with Instagram. Thanks to https://github.com/hguerrero[hguerrero] for the contribution.
|
||||||
|
|
||||||
|
= Search by User ID in Admin Console
|
||||||
|
|
||||||
|
To search for a user by id in the admin console you previously had to edit the URL. It is now possible to search
|
||||||
|
directly in the user search field.
|
||||||
|
|
||||||
|
= Adapters
|
||||||
|
|
||||||
|
== Sprint Boot 2
|
||||||
|
|
||||||
|
We now have support for Spring Boot 2.
|
||||||
|
|
||||||
|
== Fuse 7
|
||||||
|
|
||||||
|
We now have support for Fuse 7.
|
||||||
|
|
||||||
|
== JavaScript - Native Promise Support
|
||||||
|
|
||||||
|
The JavaScript adapter now supports native promises. It retains support for the old style promises as well.
|
||||||
|
Both can be used interchangeably.
|
||||||
|
|
||||||
|
== JavaScript - Cordova Options
|
||||||
|
|
||||||
|
It is now possible to pass Cordova-specific options to login and other methods in the JavaScript adapter.
|
||||||
|
Thanks to https://github.com/looorent[loorent] for the contribution.
|
|
@ -1,56 +1,3 @@
|
||||||
ifeval::[{project_community}==true]
|
= Test Feature
|
||||||
= {project_name_full} 4.0.0.Final
|
|
||||||
endif::[]
|
|
||||||
ifeval::[{project_product}==true]
|
|
||||||
= {project_name_full} 7.3.0 CD1
|
|
||||||
endif::[]
|
|
||||||
|
|
||||||
== Authorization Services
|
Some test feature.
|
||||||
|
|
||||||
=== UMA 2.0
|
|
||||||
|
|
||||||
UMA 2.0 is now supported for Authorization Services, including support for users to manage user access through
|
|
||||||
the account management console. There are also other additions and improvements to authorization services.
|
|
||||||
|
|
||||||
=== Pushed Claims
|
|
||||||
|
|
||||||
Clients can now push additional claims and have them used by policies when evaluating permissions.
|
|
||||||
|
|
||||||
=== Resource Attributes
|
|
||||||
|
|
||||||
It is now possible to define attributes on resources in order to have them used by policies when evaluating permissions.
|
|
||||||
|
|
||||||
== Themes and Theme Resources
|
|
||||||
|
|
||||||
It is now possible to hot-deploy themes to Keycloak through a regular provider deployment. We have also added support for theme resources, which allows adding additional templates and resources without creating a theme. This is useful for custom authenticators that require additional pages to be added to the authentication flow.
|
|
||||||
|
|
||||||
We have also added support to override the theme for specific clients. If that is not adequate for your needs, then there is also a new Theme Selector SPI that allows you to implement custom logic to select the theme.
|
|
||||||
|
|
||||||
== Instagram Identity Provider
|
|
||||||
|
|
||||||
We have added support to login with Instagram. Thanks to https://github.com/hguerrero[hguerrero] for the contribution.
|
|
||||||
|
|
||||||
== Search by User ID in Admin Console
|
|
||||||
|
|
||||||
To search for a user by id in the admin console you previously had to edit the URL. It is now possible to search
|
|
||||||
directly in the user search field.
|
|
||||||
|
|
||||||
== Adapters
|
|
||||||
|
|
||||||
=== Sprint Boot 2
|
|
||||||
|
|
||||||
We now have support for Spring Boot 2.
|
|
||||||
|
|
||||||
=== Fuse 7
|
|
||||||
|
|
||||||
We now have support for Fuse 7.
|
|
||||||
|
|
||||||
=== JavaScript - Native Promise Support
|
|
||||||
|
|
||||||
The JavaScript adapter now supports native promises. It retains support for the old style promises as well.
|
|
||||||
Both can be used interchangeably.
|
|
||||||
|
|
||||||
=== JavaScript - Cordova Options
|
|
||||||
|
|
||||||
It is now possible to pass Cordova-specific options to login and other methods in the JavaScript adapter.
|
|
||||||
Thanks to https://github.com/looorent[loorent] for the contribution.
|
|
Loading…
Reference in a new issue