diff --git a/docbook/reference/en/en-US/modules/MigrationFromOlderVersions.xml b/docbook/reference/en/en-US/modules/MigrationFromOlderVersions.xml
index 116219817b..f66c09d2ea 100755
--- a/docbook/reference/en/en-US/modules/MigrationFromOlderVersions.xml
+++ b/docbook/reference/en/en-US/modules/MigrationFromOlderVersions.xml
@@ -124,6 +124,37 @@
to describe the themes included in a JAR. See the themes section in the docs for more information.
+
+ Claims changes
+
+ Previously there was Claims tab in admin console for application and OAuth clients. This
+ was used to configure which attributes should go into access token for particular application/client. This was removed
+ and replaced with Protocol mappers, which are more flexible.
+
+
+ You don't need to care about migration of database from previous version.
+ We did migration scripts for both RDBMS and Mongo, which should ensure that claims configured for particular application/client
+ will be converted into corresponding protocol mappers (Still it's safer to backup DB before migrating to newer version though).
+ Same applies for exported JSON representation from previous version.
+
+
+
+ Social migration to identity brokering
+
+ We refactored social providers SPI and replaced it with identity brokering SPI,
+ which is more flexible. The Social tab in admin console is renamed to Identity Provider tab.
+
+
+ Again you don't need to care about migration of database from previous version similarly like for Claims/protocol mappers.
+ Both configuration of social providers and "social links" to your users will be converted to corresponding Identity providers.
+
+
+ Only required action from you would be to change allowed Redirect URI in the admin console of
+ particular 3rd party social providers. You can first go to the Keycloak admin console and copy Redirect URI from the page where
+ you configure the identity provider. Then you can simply paste this as allowed Redirect URI to the admin console
+ of 3rd party provider (IE. Facebook admin console).
+
+ Migrating from 1.1.0.Beta2 to 1.1.0.Final
diff --git a/docbook/reference/en/en-US/modules/application-clustering.xml b/docbook/reference/en/en-US/modules/application-clustering.xml
index 0406522318..c4246d2f12 100644
--- a/docbook/reference/en/en-US/modules/application-clustering.xml
+++ b/docbook/reference/en/en-US/modules/application-clustering.xml
@@ -65,8 +65,15 @@
- Default value of token-store is session, hence saving data in HTTP session. One disadvantage of cookie store is,
- that whole info about account is passed in cookie KEYCLOAK_ADAPTER_STATE in each HTTP request. Hence it's not the best for network performance.
+ Default value of token-store is session, hence saving data in HTTP session.
+
+
+ One limitation of cookie store is, that whole info about account is passed in cookie KEYCLOAK_ADAPTER_STATE in each HTTP request.
+ Hence it's not the best for network performance.
+ Another small limitation is limited support for Single-Sign out. It works without issues if you init servlet logout (HttpServletRequest.logout)
+ from this application itself as the adapter will delete the KEYCLOAK_ADAPTER_STATE cookie. But back-channel logout initialized from different application can't be
+ propagated by Keycloak to this application with cookie store. Hence it's recommended to use very short value of access token
+ timeout (1 minute for example).
diff --git a/docbook/reference/en/en-US/modules/identity-broker.xml b/docbook/reference/en/en-US/modules/identity-broker.xml
index 5ebbbe239f..74bd40af23 100755
--- a/docbook/reference/en/en-US/modules/identity-broker.xml
+++ b/docbook/reference/en/en-US/modules/identity-broker.xml
@@ -1,4 +1,4 @@
-
+Identity Broker
diff --git a/forms/common-themes/src/main/resources/theme/base/admin/resources/partials/realm-identity-provider-oidc.html b/forms/common-themes/src/main/resources/theme/base/admin/resources/partials/realm-identity-provider-oidc.html
index b2a90917d1..382f73714c 100755
--- a/forms/common-themes/src/main/resources/theme/base/admin/resources/partials/realm-identity-provider-oidc.html
+++ b/forms/common-themes/src/main/resources/theme/base/admin/resources/partials/realm-identity-provider-oidc.html
@@ -13,7 +13,7 @@