diff --git a/typo3/sysext/core/Documentation/Changelog-9.rst b/typo3/sysext/core/Documentation/Changelog-9.rst
index babf68771593c52681183aa1b213f6f5cb40c5a7..2472cbadd1a816e1f83cd3eba3001a33b2788e3d 100644
--- a/typo3/sysext/core/Documentation/Changelog-9.rst
+++ b/typo3/sysext/core/Documentation/Changelog-9.rst
@@ -11,5 +11,6 @@ Every change to the TYPO3 Core which might affect your site is documented here.
 .. toctree::
    :titlesonly:
 
+   Changelog/9.2/Index
    Changelog/9.1/Index
    Changelog/9.0/Index
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Breaking-75834-ReorderProcessingOfTcaSelectItems.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Breaking-75834-ReorderProcessingOfTcaSelectItems.rst
similarity index 52%
rename from typo3/sysext/core/Documentation/Changelog/master/Breaking-75834-ReorderProcessingOfTcaSelectItems.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Breaking-75834-ReorderProcessingOfTcaSelectItems.rst
index e3483612cf24d6550ff1e36d87fa7f09723c6319..659eebe2aefb7a3489cf5aaa338717a62614de9c 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Breaking-75834-ReorderProcessingOfTcaSelectItems.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Breaking-75834-ReorderProcessingOfTcaSelectItems.rst
@@ -10,25 +10,25 @@ See :issue:`75834`
 Description
 ===========
 
-It's now possible again to add and remove items via pageTSconfig after itemsProcFunc has been processed
+It's now possible again to add and remove items via `pageTSconfig` after `itemsProcFunc` has been processed
 for TCA select fields.
 
 
 Impact
 ======
 
-Items generated by itemsProcFunc no longer have the highest priority.
+Items generated by `itemsProcFunc` no longer have the highest priority.
 
 
 Affected Installations
 ======================
 
-Any installation that relied on itemsProcFunc being the source of truth for a given field.
+Any installation that relied on `itemsProcFunc` being the source of truth for a given field.
 
 
 Migration
 =========
 
-Cross check if you added or removed items via pageTSconfig. These might be really gone now.
+Cross check if you added or removed items via `pageTSconfig`. These might be really gone now.
 
 .. index:: Backend, NotScanned
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Breaking-83475-AggregateValidatorInformationInClassSchema.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Breaking-83475-AggregateValidatorInformationInClassSchema.rst
similarity index 85%
rename from typo3/sysext/core/Documentation/Changelog/master/Breaking-83475-AggregateValidatorInformationInClassSchema.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Breaking-83475-AggregateValidatorInformationInClassSchema.rst
index 550ced0716f65c3e2f310cfc2b43347e1f4e87e2..35ab25c51f83952df88e2c1e317d678adf9b1f56 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Breaking-83475-AggregateValidatorInformationInClassSchema.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Breaking-83475-AggregateValidatorInformationInClassSchema.rst
@@ -48,8 +48,10 @@ All installations that use that feature.
 Migration
 =========
 
-If you used that feature for adding validators to models, you can define the validators inside the model instead or inside a model validator, that is automatically registered and loaded if defined.
+If you used that feature for adding validators to models, you can define the validators inside the model instead or
+inside a model validator, that is automatically registered and loaded if defined.
 
-When using that feature with regular objects, you need to write custom validators and call the desired property validators in there.
+When using that feature with regular objects, you need to write custom validators and call the desired property
+validators in there.
 
 .. index:: NotScanned
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Breaking-83889-E_NOTICEFreeUnitTesting.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Breaking-83889-E_NOTICEFreeUnitTesting.rst
similarity index 73%
rename from typo3/sysext/core/Documentation/Changelog/master/Breaking-83889-E_NOTICEFreeUnitTesting.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Breaking-83889-E_NOTICEFreeUnitTesting.rst
index cec8a28e7ea3cd15594c9a391cb183ec5b1f174d..96e1a14ef1d750973f65feeff970d42992f79dc0 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Breaking-83889-E_NOTICEFreeUnitTesting.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Breaking-83889-E_NOTICEFreeUnitTesting.rst
@@ -9,7 +9,7 @@ See :issue:`83889`
 Description
 ===========
 
-Writing unit tests and executing them using the typo3/testing-framework
+Writing unit tests and executing them using the `typo3/testing-framework`
 now requires the system under test to no longer raise PHP :php:`E_NOTICE`
 level errors, or the test fails.
 
@@ -23,16 +23,16 @@ This is a first step towards a PHP notice free core.
 Affected Installations
 ======================
 
-Extensions that use the core v9 compatible typo3/testing-framework
+Extensions that use the core v9 compatible `typo3/testing-framework`
 package in a version >= 3.0.0 may see failing unit tests if the tested
-class raises E_NOTICE errors.
+class raises `E_NOTICE` errors.
 
 
 Migration
 =========
 
-Best solution is to fix the unit test and/or the system under test
-to no longer raise E_NOTICE level PHP errors.
+The best solution is to fix the unit test and/or the system under test
+to no longer raise `E_NOTICE` level PHP errors.
 
 In a transition phase, a single unit test case file can set a
 property to still suppress E_NOTICE warnings:
@@ -47,7 +47,7 @@ property to still suppress E_NOTICE warnings:
         protected static $suppressNotices = true;
     }
 
-Note this property is deprecated and will be removed from
+Note that this property is deprecated and will be removed from
 :php:`UnitTestCase` as soon as the core does not need it
 anymore.
 
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Breaking-84055-MigrateSys_notesAwayFromExtbase.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Breaking-84055-MigrateSys_notesAwayFromExtbase.rst
similarity index 100%
rename from typo3/sysext/core/Documentation/Changelog/master/Breaking-84055-MigrateSys_notesAwayFromExtbase.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Breaking-84055-MigrateSys_notesAwayFromExtbase.rst
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Breaking-84131-RemovedClassesOfLanguageExtension.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Breaking-84131-RemovedClassesOfLanguageExtension.rst
similarity index 100%
rename from typo3/sysext/core/Documentation/Changelog/master/Breaking-84131-RemovedClassesOfLanguageExtension.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Breaking-84131-RemovedClassesOfLanguageExtension.rst
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Breaking-84148-RequireJSModuleForLanguageHandlingRemoved.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Breaking-84148-RequireJSModuleForLanguageHandlingRemoved.rst
similarity index 84%
rename from typo3/sysext/core/Documentation/Changelog/master/Breaking-84148-RequireJSModuleForLanguageHandlingRemoved.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Breaking-84148-RequireJSModuleForLanguageHandlingRemoved.rst
index ee55d965aac8a16f92ec99f9b96e4f0a5f055582..423c61349199f0caf7208380b4d725b7d8c4e98e 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Breaking-84148-RequireJSModuleForLanguageHandlingRemoved.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Breaking-84148-RequireJSModuleForLanguageHandlingRemoved.rst
@@ -9,7 +9,8 @@ See :issue:`84148`
 Description
 ===========
 
-Since the removal of ExtJS, the JavaScript files that handle the localization of labels in backend modules became obsolete and are removed.
+Since the removal of ExtJS, the JavaScript files that handled the localization of labels in backend modules became
+obsolete and have been removed.
 
 
 Impact
diff --git a/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-81434-StringCacheFrontendDeprecated.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-81434-StringCacheFrontendDeprecated.rst
new file mode 100644
index 0000000000000000000000000000000000000000..05b8d59cdf925cb14c174e645ae6080cb1ff5052
--- /dev/null
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-81434-StringCacheFrontendDeprecated.rst
@@ -0,0 +1,32 @@
+.. include:: ../../Includes.txt
+
+======================================================
+Deprecation: #81434 - String Cache Frontend Deprecated
+======================================================
+
+See :issue:`81434`
+
+Description
+===========
+
+The `StringFrontend` cache frontend has been marked as deprecated in favor of `VariableFrontend`.
+
+
+Impact
+======
+
+Using `TYPO3\CMS\Core\Cache\Frontend\StringFrontend` will trigger a deprecation warning.
+
+
+Affected Installations
+======================
+
+Any TYPO3 installation which defines any custom cache using `StringFrontend`.
+
+
+Migration
+=========
+
+Replace `TYPO3\CMS\Core\Cache\Frontend\StringFrontend` occurrences in cache configurations with `TYPO3\CMS\Core\Cache\Frontend\VariableFrontend`.
+
+.. index:: PHP-API, NotScanned
\ No newline at end of file
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-83475-AggregateValidatorInformationInClassSchema-1.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83475-AggregateValidatorInformationInClassSchema-1.rst
similarity index 71%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-83475-AggregateValidatorInformationInClassSchema-1.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83475-AggregateValidatorInformationInClassSchema-1.rst
index a5a88b60f80033bd9f4358bfc53afdb0af42ae6d..4dfd08d0ea541fe070569e622f291c56eaae0b83 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-83475-AggregateValidatorInformationInClassSchema-1.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83475-AggregateValidatorInformationInClassSchema-1.rst
@@ -9,13 +9,15 @@ See :issue:`83475`
 Description
 ===========
 
-The method `\TYPO3\CMS\Extbase\Mvc\Controller\ActionController::getActionMethodParameters` is deprecated and will be removed in TYPO3 v10.0
+The method `\TYPO3\CMS\Extbase\Mvc\Controller\ActionController::getActionMethodParameters` has been marked as deprecated
+and will be removed in TYPO3 v10.0
 
 
 Impact
 ======
 
-The method is not considered public api and it is unlikely that the methods is used in the wild. If you rely on that method, please migrate your code base.
+The method was not considered public API and it is unlikely that the methods is used in the wild. If you rely on that
+method, please migrate your code base.
 
 
 Affected Installations
@@ -27,7 +29,7 @@ All installations that use that method.
 Migration
 =========
 
-Use the ClassSchema class and get all necessary information from it.
+Use the `ClassSchema` class and get all necessary information from it.
 Example:
 
 .. code-block:: php
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-83475-AggregateValidatorInformationInClassSchema-2.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83475-AggregateValidatorInformationInClassSchema-2.rst
similarity index 55%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-83475-AggregateValidatorInformationInClassSchema-2.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83475-AggregateValidatorInformationInClassSchema-2.rst
index 180d6aebad3301a6b43e19120c13c7dc8adf8de5..8e4c2d8fe8697ac6fa7e6bb7e64a330056c21711 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-83475-AggregateValidatorInformationInClassSchema-2.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83475-AggregateValidatorInformationInClassSchema-2.rst
@@ -9,19 +9,21 @@ See :issue:`83475`
 Description
 ===========
 
-The method `\TYPO3\CMS\Extbase\Validation\ValidatorResolver::buildMethodArgumentsValidatorConjunctions` is deprecated and will be removed in TYPO3 v10.0
+The method `\TYPO3\CMS\Extbase\Validation\ValidatorResolver::buildMethodArgumentsValidatorConjunctions` has been marked
+as deprecated and will be removed in TYPO3 v10.0
 
 
 Impact
 ======
 
-The method is not considered public api and it is unlikely that the methods is used in the wild. If you rely on that method, you will need to implement the logic yourself.
+The method was not considered public API and it is unlikely that the methods is used in the wild. If you rely on that
+method, you will need to implement the logic yourself.
 
 
 Affected Installations
 ======================
 
-All installations that use that method.
+All installations that use `\TYPO3\CMS\Extbase\Validation\ValidatorResolver::buildMethodArgumentsValidatorConjunctions`.
 
 
 Migration
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-83506-DeprecateFeUserSesDataCondition.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83506-DeprecateFeUserSesDataCondition.rst
similarity index 74%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-83506-DeprecateFeUserSesDataCondition.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83506-DeprecateFeUserSesDataCondition.rst
index 84902ad82ed803ff22a39f342555bad4fb957842..2f1ccabf73855d1fa4f4ed8f58d4011fd3f825e1 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-83506-DeprecateFeUserSesDataCondition.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83506-DeprecateFeUserSesDataCondition.rst
@@ -10,20 +10,20 @@ See :issue:`83506`
 Description
 ===========
 
-Since the session API has been adjusted it is no longer possible
-to access the (now protected) sesData property of the fe_user object.
+Since the session API has been adjusted it is no longer possible to access the (now protected) `sesData` property of
+the `fe_user` object.
 
 
 Impact
 ======
 
-Using :typoscript:`[globalVar = TSFE:fe_user|sesData|foo|bar = 1234567]` will trigger a deprecation log entry.
+Using :typoscript:`[globalVar = TSFE:fe_user|sesData|foo|bar = 1234567]` will trigger a deprecation warning.
 
 
 Affected Installations
 ======================
 
-Any installation using the old value TSFE:fe_user|sesData in a TypoScript condition.
+Any installation using the old value :typoscript:`TSFE:fe_user|sesData` in a TypoScript condition.
 
 
 Migration
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-83736-DeprecatedGlobalsTYPO3_REQUEST.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83736-DeprecatedGlobalsTYPO3_REQUEST.rst
similarity index 80%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-83736-DeprecatedGlobalsTYPO3_REQUEST.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83736-DeprecatedGlobalsTYPO3_REQUEST.rst
index 0321e6bd848182919d02a7381e1643270cff9098..41167dfe62a8ff1dcdd0b921609632f0c04539a3 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-83736-DeprecatedGlobalsTYPO3_REQUEST.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83736-DeprecatedGlobalsTYPO3_REQUEST.rst
@@ -12,8 +12,7 @@ Description
 The :php:`ServerRequestInterface $request` is available as :php:`$GLOBALS['TYPO3_REQUEST']`
 in HTTP requests. This global is available in a transition phase only and will be removed later.
 
-Extension authors are discouraged to use that global and the extension scanner marks any
-usage as deprecated.
+Extension authors are discouraged to use that global and the extension scanner marks any usage as deprecated.
 
 
 Impact
@@ -31,8 +30,7 @@ Instances with extensions using :php:`$GLOBALS['TYPO3_REQUEST']`.
 Migration
 =========
 
-Controller classes for HTTP requests retrieve the request object. Access should either be
-done from within controllers or by passing :php:`$request` to service classes that
-need to access values from :php:`$request`.
+Controller classes for HTTP requests retrieve the request object. Access should either be done from within controllers
+or by passing :php:`$request` to service classes that need to access values from :php:`$request`.
 
 .. index:: PHP-API, FullyScanned
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-83740-CleanupOfAbstractRecordListBreaksHook.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83740-CleanupOfAbstractRecordListBreaksHook.rst
similarity index 73%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-83740-CleanupOfAbstractRecordListBreaksHook.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83740-CleanupOfAbstractRecordListBreaksHook.rst
index d19bfaae3cb05cee519abe35def33c6f23b7c872..58b88e055f6ca2088bba9619ed03b22b45cee1ab 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-83740-CleanupOfAbstractRecordListBreaksHook.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83740-CleanupOfAbstractRecordListBreaksHook.rst
@@ -11,19 +11,20 @@ Description
 
 The hook `$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['TYPO3\CMS\Recordlist\RecordList\DatabaseRecordList']['buildQueryParameters']`
 has been marked as deprecated. It was a hook to modify the current database query but used in multiple classes which
-leads to some issues. For this reason, the old hook is now deprecated and will be removed in v10.
+leads to some issues. For this reason, the old hook is now marked as deprecated and will be removed in v10.
 
 
 Impact
 ======
 
-Registering a hook in `$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['TYPO3\CMS\Recordlist\RecordList\DatabaseRecordList']['buildQueryParameters']` will trigger a deprecation warning.
+Registering a hook in `$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['TYPO3\CMS\Recordlist\RecordList\DatabaseRecordList']['buildQueryParameters']`
+will trigger a deprecation warning.
 
 
 Affected installations
 ======================
 
-Instances with extensions using a `$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['TYPO3\CMS\Recordlist\RecordList\DatabaseRecordList']['buildQueryParameters']`-hook
+Instances with extensions using the hook `$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['TYPO3\CMS\Recordlist\RecordList\DatabaseRecordList']['buildQueryParameters']`
 
 
 Migration
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-83803-DeprecateEidRequestHandler.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83803-DeprecateEidRequestHandler.rst
similarity index 95%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-83803-DeprecateEidRequestHandler.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83803-DeprecateEidRequestHandler.rst
index 61bd54813731f65ee7b0f01ec8fefe6c00823ac1..46bb5d61fe4fe739c7b11952b62b78b2e7181b13 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-83803-DeprecateEidRequestHandler.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83803-DeprecateEidRequestHandler.rst
@@ -18,7 +18,7 @@ The eID functionality itself is not deprecated and can be used as before.
 Impact
 ======
 
-Installations that use :php:`\TYPO3\CMS\Frontend\Http\EidRequestHandler` will trigger a deprecation log entry.
+Installations that use :php:`\TYPO3\CMS\Frontend\Http\EidRequestHandler` will trigger a deprecation warning.
 
 
 Affected Installations
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-83806-DeprecatePagejavascriptLibsAndPagejavascriptLibsjQuery.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83806-DeprecatePagejavascriptLibsAndPagejavascriptLibsjQuery.rst
similarity index 84%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-83806-DeprecatePagejavascriptLibsAndPagejavascriptLibsjQuery.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83806-DeprecatePagejavascriptLibsAndPagejavascriptLibsjQuery.rst
index 7ab2c218444d3eb5ce8f4f7fd0e5e25ff88996ef..74e46c685c6ee327ac5d75c8f31501970f51e2f3 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-83806-DeprecatePagejavascriptLibsAndPagejavascriptLibsjQuery.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83806-DeprecatePagejavascriptLibsAndPagejavascriptLibsjQuery.rst
@@ -9,13 +9,15 @@ See :issue:`83806`
 Description
 ===========
 
-The settings :typoscript:`page.javascriptLibs` and :typoscript:`page.javascriptLibs.jQuery` have been marked as deprecated and will be removed in CMS 10.
+The settings :typoscript:`page.javascriptLibs` and :typoscript:`page.javascriptLibs.jQuery` have been marked as
+deprecated and will be removed in CMS 10.
 
 
 Impact
 ======
 
-Installations that use :typoscript:`page.javascriptLibs` or :typoscript:`page.javascriptLibs.jQuery` will trigger a deprecation warning.
+Installations that use :typoscript:`page.javascriptLibs` or :typoscript:`page.javascriptLibs.jQuery` will trigger a
+deprecation warning.
 
 
 Affected Installations
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-83844-DeprecatedUsageOfToplaunchView.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83844-DeprecatedUsageOfToplaunchView.rst
similarity index 82%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-83844-DeprecatedUsageOfToplaunchView.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83844-DeprecatedUsageOfToplaunchView.rst
index 1aeac8cc74ecb0984f2e7fce2982b1bd64e7ddd3..5aa558ab35ea2d7e5f1334541562849446d1b43a 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-83844-DeprecatedUsageOfToplaunchView.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83844-DeprecatedUsageOfToplaunchView.rst
@@ -9,13 +9,13 @@ See :issue:`83844`
 Description
 ===========
 
-The usage of :js:`top.launchView()`, that opens certain information in a popup window, has been deprecated.
+The usage of :js:`top.launchView()`, that opens certain information in a popup window, has been marked as deprecated.
 
 
 Impact
 ======
 
-Calling :js:`top.launchView()` will trigger a deprecation log entry in the browser's console.
+Calling :js:`top.launchView()` will trigger a deprecation warning in the browser console.
 
 
 Affected Installations
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-83853-BackendAjaxRequestHandler.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83853-BackendAjaxRequestHandler.rst
similarity index 89%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-83853-BackendAjaxRequestHandler.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83853-BackendAjaxRequestHandler.rst
index dce3ae22013ed08b418a11665a8d5e57a3e0dd6e..b99ead9fc0ec0455db401a5dcb9947055ebffe78 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-83853-BackendAjaxRequestHandler.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83853-BackendAjaxRequestHandler.rst
@@ -10,7 +10,7 @@ Description
 ===========
 
 The class :php:`\TYPO3\CMS\Backend\Http\AjaxRequestHandler` has been marked as deprecated and will be removed in TYPO3 v10.
-This functionality has been moved into the backends' generic Request Handler functionality.
+This functionality has been moved into the backend's generic Request Handler functionality.
 
 The AJAX functionality itself is not deprecated and can be used as before.
 
@@ -18,7 +18,7 @@ The AJAX functionality itself is not deprecated and can be used as before.
 Impact
 ======
 
-Installations that use :php:`\TYPO3\CMS\Backend\Http\AjaxRequestHandler` will trigger a deprecation log entry.
+Installations that use :php:`\TYPO3\CMS\Backend\Http\AjaxRequestHandler` will trigger a deprecation warning.
 
 
 Affected Installations
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-83883-PageNotFoundAndErrorHandlingInFrontend.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83883-PageNotFoundAndErrorHandlingInFrontend.rst
similarity index 84%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-83883-PageNotFoundAndErrorHandlingInFrontend.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83883-PageNotFoundAndErrorHandlingInFrontend.rst
index b994d30391d8965fa5355335da3e26ba1aec96b4..9aec55e5177922f404b6c2a86a0f568951bae374 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-83883-PageNotFoundAndErrorHandlingInFrontend.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83883-PageNotFoundAndErrorHandlingInFrontend.rst
@@ -18,14 +18,14 @@ The following methods have been marked as deprecated:
 * php:`TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController->pageNotFoundHandler()`
 * php:`TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController->pageErrorHandler()`
 
-These methods have been commonly used by third-party extensions to show that a page is not found, or
-a page is unavailable due to misconfiguration, or the access to a page was denied.
+These methods have been commonly used by third-party extensions to show that a page is not found,
+a page is unavailable due to misconfiguration or the access to a page was denied.
 
 
 Impact
 ======
 
-Calling any of the methods above will trigger a deprecation error.
+Calling any of the methods above will trigger a deprecation warning.
 
 
 Affected Installations
@@ -40,7 +40,7 @@ Migration
 Use the new `ErrorController` with its custom actions `unavailableAction()`, `pageNotFoundAction()` and
 `accessDeniedAction()`.
 
-Instead of exiting the currently running script, a proposed PSR-7 compliant response is returned which can be
-handled by the third-party extension to enrich, return or customly exiting the script.
+Instead of exiting the currently running script, a proposed PSR-7-compliant response is returned which can be
+handled by the third-party extension to enrich, return or customize exiting the script.
 
 .. index:: Frontend, PHP-API, FullyScanned
\ No newline at end of file
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-83904-ArrayHandlingInAbstractTreeView.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83904-ArrayHandlingInAbstractTreeView.rst
similarity index 79%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-83904-ArrayHandlingInAbstractTreeView.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83904-ArrayHandlingInAbstractTreeView.rst
index db19752751a766ea68e8f783f8188fc64e1b89c9..4bed6fc6a568367a104d1b0eed078c2b5bc9f15f 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-83904-ArrayHandlingInAbstractTreeView.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83904-ArrayHandlingInAbstractTreeView.rst
@@ -9,15 +9,14 @@ See :issue:`83904`
 Description
 ===========
 
-Handling arrays instead of database relations in class
-:php:`TYPO3\CMS\Backend\Tree\View\AbstractTreeView`
-has been deprecated.
+Handling arrays instead of database relations in class :php:`TYPO3\CMS\Backend\Tree\View\AbstractTreeView`
+has been marked as deprecated.
 
 
 Impact
 ======
 
-Calling the following methods will throw deprecation errors and will be removed with core version 10:
+Calling the following methods will throw deprecation warnings and will be removed with core version 10:
 
 * [scanned] :php:`AbstractTreeView->setDataFromArray`
 * [scanned] :php:`AbstractTreeView->setDataFromTreeArray`
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-83905-TypoScriptFrontendController-page_cache_reg1.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83905-TypoScriptFrontendController-page_cache_reg1.rst
similarity index 84%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-83905-TypoScriptFrontendController-page_cache_reg1.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83905-TypoScriptFrontendController-page_cache_reg1.rst
index fad1dff0e691aaad31e27d955da7d97c73b3f721..ad24ba94cda6cdd4f081307d9a9760aa0d4bd93d 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-83905-TypoScriptFrontendController-page_cache_reg1.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83905-TypoScriptFrontendController-page_cache_reg1.rst
@@ -9,20 +9,19 @@ See :issue:`83905`
 Description
 ===========
 
-Property :php:`TypoScriptFrontendController->page_cache_reg1` has been deprecated
+Property :php:`TypoScriptFrontendController->page_cache_reg1` has been marked as deprecated.
 
 
 Impact
 ======
 
-Setting this property triggers a deprecation log entry.
+Setting this property triggers a deprecation warning.
 
 
 Affected Installations
 ======================
 
-This property was of very little use ever since, it is unlikely an instance runs an
-extension consuming it.
+This property was of very little use ever since, it is unlikely an instance runs an extension consuming it.
 The extension scanner will find usages.
 
 
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-83942-DeprecatedFileFacadegetIcon.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83942-DeprecatedFileFacadegetIcon.rst
similarity index 100%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-83942-DeprecatedFileFacadegetIcon.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83942-DeprecatedFileFacadegetIcon.rst
diff --git a/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83964-ExtForm-StreamlineUsageOfIcons.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83964-ExtForm-StreamlineUsageOfIcons.rst
new file mode 100644
index 0000000000000000000000000000000000000000..7fca616bff35ead37df1e41ff51afdd64e9279f5
--- /dev/null
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-83964-ExtForm-StreamlineUsageOfIcons.rst
@@ -0,0 +1,98 @@
+.. include:: ../../Includes.txt
+
+==========================================================
+Deprecation: #83964 - EXT:form - streamline usage of icons
+==========================================================
+
+See :issue:`83964`
+
+Description
+===========
+
+With issue #82348 EXT:form icons have been cloned into :file:`EXT:core/Resources/Public/Icons/T3Icons/form`.
+Icons are now available with the identifier prefix `form-` (previously `t3-form-icon-`).
+For this reason, the old icon identifiers with `t3-form-icon-` prefix have been marked as deprecated and will be
+removed in TYPO3v10.
+
+
+Impact
+======
+
+Usage of the following icon identifiers will trigger a deprecation warning:
+
+* `t3-form-icon-advanced-password`
+* `t3-form-icon-checkbox`
+* `t3-form-icon-content-element`
+* `t3-form-icon-date-picker`
+* `t3-form-icon-duplicate`
+* `t3-form-icon-email`
+* `t3-form-icon-fieldset`
+* `t3-form-icon-file-upload`
+* `t3-form-icon-finisher`
+* `t3-form-icon-form-element-selector`
+* `t3-form-icon-gridcontainer`
+* `t3-form-icon-gridrow`
+* `t3-form-icon-hidden`
+* `t3-form-icon-image-upload`
+* `t3-form-icon-insert-after`
+* `t3-form-icon-insert-in`
+* `t3-form-icon-multi-checkbox`
+* `t3-form-icon-multi-select`
+* `t3-form-icon-number`
+* `t3-form-icon-page`
+* `t3-form-icon-password`
+* `t3-form-icon-radio-button`
+* `t3-form-icon-single-select`
+* `t3-form-icon-static-text`
+* `t3-form-icon-summary-page`
+* `t3-form-icon-telephone`
+* `t3-form-icon-text`
+* `t3-form-icon-textarea`
+* `t3-form-icon-url`
+* `t3-form-icon-validator`
+
+Affected installations
+======================
+
+All instances are affected which register one of the icon identifiers listed above through the
+:php:`IconRegistry`.
+
+
+Migration
+=========
+
+Use one of the following icon identifier replacements ('deprecated-icon-identifier' => 'new-icon-identifier')
+
+* `t3-form-icon-advanced-password` => `form-advanced-password`
+* `t3-form-icon-checkbox` => `form-checkbox`
+* `t3-form-icon-content-element` => `form-content-element`
+* `t3-form-icon-date-picker` => `form-date-picker`
+* `t3-form-icon-duplicate` => `actions-duplicate`
+* `t3-form-icon-email` => `form-email`
+* `t3-form-icon-fieldset` => `form-fieldset`
+* `t3-form-icon-file-upload` => `form-file-upload`
+* `t3-form-icon-finisher` => `form-finisher`
+* `t3-form-icon-form-element-selector` => `actions-variable-select`
+* `t3-form-icon-gridcontainer` => `form-gridcontainer`
+* `t3-form-icon-gridrow` => `form-gridrow`
+* `t3-form-icon-hidden` => `form-hidden`
+* `t3-form-icon-image-upload` => `form-image-upload`
+* `t3-form-icon-insert-after` => `form-insert-after`
+* `t3-form-icon-insert-in` => `form-insert-in`
+* `t3-form-icon-multi-checkbox` => `form-multi-checkbox`
+* `t3-form-icon-multi-select` => `form-multi-select`
+* `t3-form-icon-number` => `form-number`
+* `t3-form-icon-page` => `form-page`
+* `t3-form-icon-password` => `form-password`
+* `t3-form-icon-radio-button` => `form-radio-button`
+* `t3-form-icon-single-select` => `form-single-select`
+* `t3-form-icon-static-text` => `form-static-text`
+* `t3-form-icon-summary-page` => `form-summary-page`
+* `t3-form-icon-telephone` => `form-telephone`
+* `t3-form-icon-text` => `form-text`
+* `t3-form-icon-textarea` => `form-textarea`
+* `t3-form-icon-url` => `form-url`
+* `t3-form-icon-validator` => `form-validator`
+
+
+.. index:: Backend, ext:form, NotScanned
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84045-AdminPanelHookDeprecated.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84045-AdminPanelHookDeprecated.rst
similarity index 59%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-84045-AdminPanelHookDeprecated.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84045-AdminPanelHookDeprecated.rst
index 7eee7eafe20517cca6e3f34dfed1b06b8effff60..d39458eefd707cfec7f16a320ff62287c8c321f9 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84045-AdminPanelHookDeprecated.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84045-AdminPanelHookDeprecated.rst
@@ -1,7 +1,7 @@
 .. include:: ../../Includes.txt
 
 ================================================
-Deprecation: #84045 - AdminPanel Hook Deprecated
+Deprecation: #84045 - AdminPanel Hook deprecated
 ================================================
 
 See :issue:`84045`
@@ -9,13 +9,15 @@ See :issue:`84045`
 Description
 ===========
 
-The hook `$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_adminpanel.php']['extendAdminPanel']` has been deprecated along with the corresponding interface `\TYPO3\CMS\Frontend\View\AdminPanelViewHookInterface`.
+The hook `$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_adminpanel.php']['extendAdminPanel']` has been
+marked as deprecated along with the corresponding interface `\TYPO3\CMS\Frontend\View\AdminPanelViewHookInterface`.
 
 
 Impact
 ======
 
-Using either the interface or registering the hook will result in a deprecation error and will stop working in future TYPO3 versions.
+Using either the interface or registering the hook will result in a deprecation warning and will stop working in future
+TYPO3 versions.
 
 
 Affected Installations
@@ -27,6 +29,6 @@ Installations using the `\TYPO3\CMS\Frontend\View\AdminPanelViewHookInterface`.
 Migration
 =========
 
-Use the new admin panel module API starting with TYPO3 v9 LTS.
+Use the new admin panel module API starting with TYPO3 v9.2.
 
 .. index:: Frontend, FullyScanned, ext:frontend
diff --git a/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84109-DeprecateDependencyResolver.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84109-DeprecateDependencyResolver.rst
new file mode 100644
index 0000000000000000000000000000000000000000..71d37b24e02ca1d595e25b583b3e02dde66526fd
--- /dev/null
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84109-DeprecateDependencyResolver.rst
@@ -0,0 +1,39 @@
+.. include:: ../../Includes.txt
+
+==================================================
+Deprecation: #84109 - Deprecate DependencyResolver
+==================================================
+
+See :issue:`84109`
+
+Description
+===========
+
+The class :php:`\TYPO3\CMS\Core\Package\DependencyResolver` has been marked as deprecated as the code as been merged
+into :php:`\TYPO3\CMS\Core\Package\PackageManager`.
+Additionally the :php:`\TYPO3\CMS\Core\Package\PackageManager` method :php:`injectDependencyResolver` has been marked as
+deprecated and the :php:`\TYPO3\CMS\Core\Package\PackageManager` triggers a deprecation warning when
+:php:`\TYPO3\CMS\Core\Service\DependencyOrderingService` is not injected through the constructor.
+
+Impact
+======
+
+Installations that use :php:`\TYPO3\CMS\Core\Package\DependencyResolver` or create an own
+:php:`\TYPO3\CMS\Core\Package\PackageManager` instance will trigger a deprecation warning.
+
+
+Affected Installations
+======================
+
+All installations that use custom extensions that use the :php:`\TYPO3\CMS\Core\Package\DependencyResolver` class or
+create an own :php:`\TYPO3\CMS\Core\Package\PackageManager` instance.
+
+
+Migration
+=========
+
+Use :php:`\TYPO3\CMS\Core\Service\DependencyOrderingService` to manually sort packages.
+Pass :php:`\TYPO3\CMS\Core\Service\DependencyOrderingService` to the :php:`\TYPO3\CMS\Core\Package\PackageManager`
+constructor if a new instance is created.
+
+.. index:: PHP-API, FullyScanned
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84118-VariousPublicMethodsOfAdminPanelViewDeprecated.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84118-VariousPublicMethodsOfAdminPanelViewDeprecated.rst
similarity index 92%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-84118-VariousPublicMethodsOfAdminPanelViewDeprecated.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84118-VariousPublicMethodsOfAdminPanelViewDeprecated.rst
index 2aad46a61eeb1a01d5cb7212a2825992892dfb0a..751cd8ff1dcf412f8ab60735c4dd281293c932a7 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84118-VariousPublicMethodsOfAdminPanelViewDeprecated.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84118-VariousPublicMethodsOfAdminPanelViewDeprecated.rst
@@ -9,7 +9,8 @@ See :issue:`84118`
 Description
 ===========
 
-To clean up the admin panel and provide a new API various functions of the main class `AdminPanelView` were deprecated:
+To clean up the admin panel and provide a new API various functions of the main class `AdminPanelView` have been marked
+as deprecated:
 
 * `getAdminPanelHeaderData`
 * `isAdminModuleEnabled`
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84145-DeprecateExt_isLinkable.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84145-DeprecateExt_isLinkable.rst
similarity index 62%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-84145-DeprecateExt_isLinkable.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84145-DeprecateExt_isLinkable.rst
index 76c3ca8ff906fa3c24693b26f563b79a8740304e..178afd95f8b8e138b41bd92c7f30cf56331ccf43 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84145-DeprecateExt_isLinkable.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84145-DeprecateExt_isLinkable.rst
@@ -9,8 +9,8 @@ See :issue:`84145`
 Description
 ===========
 
-Method :php:`TYPO3\CMS\Backend\Tree\View\ElementBrowserFolderTreeView->ext_isLinkable()`
-has been deprecated. It always returned true and still does it until removed.
+The method :php:`TYPO3\CMS\Backend\Tree\View\ElementBrowserFolderTreeView->ext_isLinkable()` has been marked as
+deprecated. It always returned true and still does it until removed.
 
 
 Impact
@@ -22,9 +22,8 @@ Little to no impact in extensions, the method behavior usually does not change.
 Affected Installations
 ======================
 
-Extensions extending the folder tree of the element browser may be affected but
-still should not change their behavior. Extension scanner may find usages and
-marks them as weak match since the methods appears in other classes as well.
+Extensions extending the folder tree of the element browser may be affected but still should not change their behavior.
+Extension scanner may find usages and marks them as weak match since the methods appears in other classes as well.
 
 
 Migration
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84171-AddingGeneralUtilitygetUrlRequestHeadersAsNon-associativeArrayAreDeprecated.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84171-AddingGeneralUtilitygetUrlRequestHeadersAsNon-associativeArrayAreDeprecated.rst
similarity index 66%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-84171-AddingGeneralUtilitygetUrlRequestHeadersAsNon-associativeArrayAreDeprecated.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84171-AddingGeneralUtilitygetUrlRequestHeadersAsNon-associativeArrayAreDeprecated.rst
index 3c29731efcf894e175d00c8d218268b21a57ccfb..c52e696807af0d9cbe42f96bc019db999c51325a 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84171-AddingGeneralUtilitygetUrlRequestHeadersAsNon-associativeArrayAreDeprecated.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84171-AddingGeneralUtilitygetUrlRequestHeadersAsNon-associativeArrayAreDeprecated.rst
@@ -9,19 +9,20 @@ See :issue:`84171`
 Description
 ===========
 
-RequestHeaders passed to getUrl as string (format `Header:Value`) have been deprecated. Associative arrays should be used instead.
+RequestHeaders passed to `getUrl()` as string (format `Header:Value`) have been marked as deprecated.
+Associative arrays should be used instead.
 
 
 Impact
 ======
 
-Using `GeneralUtility::getUrl` request headers in a non-associative way will trigger an `E_USER_DEPRECATED` PHP error.
+Using `GeneralUtility::getUrl()` request headers in a non-associative way will trigger an `E_USER_DEPRECATED` PHP error.
 
 
 Affected Installations
 ======================
 
-All using request headers for `GeneralUtility::getUrl` in a non-associative way.
+All using request headers for `GeneralUtility::getUrl()` in a non-associative way.
 
 
 Migration
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84195-ProtectedMethodsAndPropertiesInEditDocumentController.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84195-ProtectedMethodsAndPropertiesInEditDocumentController.rst
similarity index 96%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-84195-ProtectedMethodsAndPropertiesInEditDocumentController.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84195-ProtectedMethodsAndPropertiesInEditDocumentController.rst
index 6783c90dc95f6e69198c0b39a2bc8093b2037042..411dd38b28ae60dd7a005959ea91b6d5a03b0b8c 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84195-ProtectedMethodsAndPropertiesInEditDocumentController.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84195-ProtectedMethodsAndPropertiesInEditDocumentController.rst
@@ -85,8 +85,8 @@ removed or set to protected in v10 and throw deprecation warnings if used from a
 * :php:`closeDocument()`
 * :php:`setDocument()`
 
-Two slots retrieve a parent object that will throw deprecations if properties are read or
-methods called. They receive a :php:`ServerRequestInterface $request` argument as second
+Two slots retrieve a parent object that will throw deprecation warnings if properties are read or
+methods are called. They receive a :php:`ServerRequestInterface $request` argument as second
 argument instead:
 
 * :php:`TYPO3\CMS\Backend\Controller\EditDocumentController::preInitAfter`
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84222-ExtForm-GridContainer.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84222-ExtForm-GridContainer.rst
similarity index 100%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-84222-ExtForm-GridContainer.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84222-ExtForm-GridContainer.rst
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84273-ProtectedMethodsAndPropertiesInFileSystemNavigationFrameController.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84273-ProtectedMethodsAndPropertiesInFileSystemNavigationFrameController.rst
similarity index 100%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-84273-ProtectedMethodsAndPropertiesInFileSystemNavigationFrameController.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84273-ProtectedMethodsAndPropertiesInFileSystemNavigationFrameController.rst
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84274-ProtectedMethodsAndPropertiesInLoginController.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84274-ProtectedMethodsAndPropertiesInLoginController.rst
similarity index 100%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-84274-ProtectedMethodsAndPropertiesInLoginController.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84274-ProtectedMethodsAndPropertiesInLoginController.rst
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84275-ProtectedMethodInLogoutController.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84275-ProtectedMethodInLogoutController.rst
similarity index 100%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-84275-ProtectedMethodInLogoutController.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84275-ProtectedMethodInLogoutController.rst
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84284-ProtectedMethodsAndPropertiesInContentElementElementInformationController.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84284-ProtectedMethodsAndPropertiesInContentElementElementInformationController.rst
similarity index 94%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-84284-ProtectedMethodsAndPropertiesInContentElementElementInformationController.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84284-ProtectedMethodsAndPropertiesInContentElementElementInformationController.rst
index 0c581de302f3e259a2f82e1a910a3eeb617c171e..5aa46a4bf58607d9c6d0dcc4b35fbef9f3e05110 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84284-ProtectedMethodsAndPropertiesInContentElementElementInformationController.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84284-ProtectedMethodsAndPropertiesInContentElementElementInformationController.rst
@@ -49,6 +49,7 @@ Migration
 In general, extensions should not instantiate and re-use controllers of the core. Existing
 usages should be rewritten to be free of calls like these.
 
-Since some of the deprecated methods and properties have quite common names and would produce false positives, their usage is not detected by the extension scanner.
+Since some of the deprecated methods and properties have quite common names and would produce false positives, their
+usage is not detected by the extension scanner.
 
 .. index:: Backend, PHP-API, PartiallyScanned, ext:backend
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84285-ProtectedMethodsAndPropertiesInMoveElementController.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84285-ProtectedMethodsAndPropertiesInMoveElementController.rst
similarity index 100%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-84285-ProtectedMethodsAndPropertiesInMoveElementController.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84285-ProtectedMethodsAndPropertiesInMoveElementController.rst
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84289-UseServerRequestInterfaceInFileCreateFolderController.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84289-UseServerRequestInterfaceInFileCreateFolderController.rst
similarity index 100%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-84289-UseServerRequestInterfaceInFileCreateFolderController.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84289-UseServerRequestInterfaceInFileCreateFolderController.rst
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84295-UseServerRequestInterfaceInFileEditFileController.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84295-UseServerRequestInterfaceInFileEditFileController.rst
similarity index 100%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-84295-UseServerRequestInterfaceInFileEditFileController.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84295-UseServerRequestInterfaceInFileEditFileController.rst
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84307-ProtectedMethodsAndPropertiesInNewContentElementController.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84307-ProtectedMethodsAndPropertiesInNewContentElementController.rst
similarity index 100%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-84307-ProtectedMethodsAndPropertiesInNewContentElementController.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84307-ProtectedMethodsAndPropertiesInNewContentElementController.rst
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84321-ProtectedMethodsAndPropertiesInAddController.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84321-ProtectedMethodsAndPropertiesInAddController.rst
similarity index 100%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-84321-ProtectedMethodsAndPropertiesInAddController.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84321-ProtectedMethodsAndPropertiesInAddController.rst
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84324-UseServerRequestInterfaceInFileFileController.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84324-UseServerRequestInterfaceInFileFileController.rst
similarity index 100%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-84324-UseServerRequestInterfaceInFileFileController.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84324-UseServerRequestInterfaceInFileFileController.rst
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84326-ProtectedMethodsAndPropertiesInFileUploadController.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84326-ProtectedMethodsAndPropertiesInFileUploadController.rst
similarity index 100%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-84326-ProtectedMethodsAndPropertiesInFileUploadController.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84326-ProtectedMethodsAndPropertiesInFileUploadController.rst
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84327-DeprecatedPublicMethodsAndPropertiesInWizardEditController.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84327-DeprecatedPublicMethodsAndPropertiesInWizardEditController.rst
similarity index 100%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-84327-DeprecatedPublicMethodsAndPropertiesInWizardEditController.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84327-DeprecatedPublicMethodsAndPropertiesInWizardEditController.rst
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84332-ProtectedMethodsAndPropertiesInRenameFileController.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84332-ProtectedMethodsAndPropertiesInRenameFileController.rst
similarity index 100%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-84332-ProtectedMethodsAndPropertiesInRenameFileController.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84332-ProtectedMethodsAndPropertiesInRenameFileController.rst
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84334-ProtectedMethodsAndPropertiesInReplaceFileController.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84334-ProtectedMethodsAndPropertiesInReplaceFileController.rst
similarity index 100%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-84334-ProtectedMethodsAndPropertiesInReplaceFileController.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84334-ProtectedMethodsAndPropertiesInReplaceFileController.rst
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84337-ProtectedMethodsAndPropertiesInListController.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84337-ProtectedMethodsAndPropertiesInListController.rst
similarity index 100%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-84337-ProtectedMethodsAndPropertiesInListController.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84337-ProtectedMethodsAndPropertiesInListController.rst
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84338-ProtectedMethodsAndPropertiesInTableController.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84338-ProtectedMethodsAndPropertiesInTableController.rst
similarity index 100%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-84338-ProtectedMethodsAndPropertiesInTableController.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84338-ProtectedMethodsAndPropertiesInTableController.rst
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84341-ProtectedMethodsAndPropertiesInNewRecordController.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84341-ProtectedMethodsAndPropertiesInNewRecordController.rst
similarity index 100%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-84341-ProtectedMethodsAndPropertiesInNewRecordController.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84341-ProtectedMethodsAndPropertiesInNewRecordController.rst
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84368-ProtectedMethodsAndPropertiesInLoginFramesetController.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84368-ProtectedMethodsAndPropertiesInLoginFramesetController.rst
similarity index 100%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-84368-ProtectedMethodsAndPropertiesInLoginFramesetController.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84368-ProtectedMethodsAndPropertiesInLoginFramesetController.rst
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84369-ProtectedMethodsAndPropertiesInUserSettingsController.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84369-ProtectedMethodsAndPropertiesInUserSettingsController.rst
similarity index 100%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-84369-ProtectedMethodsAndPropertiesInUserSettingsController.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84369-ProtectedMethodsAndPropertiesInUserSettingsController.rst
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84374-ProtectedMethodsAndPropertiesInSimpleDataHandlerController.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84374-ProtectedMethodsAndPropertiesInSimpleDataHandlerController.rst
similarity index 100%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-84374-ProtectedMethodsAndPropertiesInSimpleDataHandlerController.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84374-ProtectedMethodsAndPropertiesInSimpleDataHandlerController.rst
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84399-ClassRecordListRenamedToRecordListController.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84399-ClassRecordListRenamedToRecordListController.rst
similarity index 100%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-84399-ClassRecordListRenamedToRecordListController.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84399-ClassRecordListRenamedToRecordListController.rst
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84407-AJAXRequestMethodsInRsaEncryptionEncoder.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84407-AJAXRequestMethodsInRsaEncryptionEncoder.rst
similarity index 75%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-84407-AJAXRequestMethodsInRsaEncryptionEncoder.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84407-AJAXRequestMethodsInRsaEncryptionEncoder.rst
index baf9f8ea6f34637733418c15d860c468f919e894..bea9efe5ed4dba79b02376ac7915bce0d397ea09 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84407-AJAXRequestMethodsInRsaEncryptionEncoder.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84407-AJAXRequestMethodsInRsaEncryptionEncoder.rst
@@ -9,21 +9,20 @@ See :issue:`84407`
 Description
 ===========
 
-All methods related to AJAX requests in :php:`\TYPO3\CMS\Rsaauth\RsaEncryptionEncoder` have been
-deprecated:
+All methods related to AJAX requests in :php:`\TYPO3\CMS\Rsaauth\RsaEncryptionEncoder` have been marked as deprecated:
 
 * :php:`getRsaPublicKeyAjaxHandler()`
 
-The ``rsa_publickey`` AJAX route has been adapted to use the
-:php:`\TYPO3\CMS\Rsaauth\Controller\RsaPublicKeyGenerationController` which was already used for
-RSA key retrieval via eID in the frontend.
+The `rsa_publickey` AJAX route has been adapted to use the
+:php:`\TYPO3\CMS\Rsaauth\Controller\RsaPublicKeyGenerationController` which was already used for RSA key retrieval via
+eID in the frontend.
 
 
 Impact
 ======
 
-Calling the above method on an instance of :php:`RsaEncryptionEncoder` will throw a
-deprecation warning in v9 and a PHP fatal in v10.
+Calling the above method on an instance of :php:`RsaEncryptionEncoder` will throw a deprecation warning in v9 and a
+PHP fatal in v10.
 
 
 Affected Installations
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84407-RSAPublicKeyGenerationWithoutContentTypeApplicationJson.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84407-RSAPublicKeyGenerationWithoutContentTypeApplicationJson.rst
similarity index 100%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-84407-RSAPublicKeyGenerationWithoutContentTypeApplicationJson.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84407-RSAPublicKeyGenerationWithoutContentTypeApplicationJson.rst
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84409-ImageManipulationWizardRenamedToImageManipulationController.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84409-ImageManipulationWizardRenamedToImageManipulationController.rst
similarity index 93%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-84409-ImageManipulationWizardRenamedToImageManipulationController.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84409-ImageManipulationWizardRenamedToImageManipulationController.rst
index d3ce1481335b9c45c6b584a8fe7650c6abbfcaf5..efdd3c73b7d4ef48f22f5ee8f4b68ff2872a2d2e 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84409-ImageManipulationWizardRenamedToImageManipulationController.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84409-ImageManipulationWizardRenamedToImageManipulationController.rst
@@ -24,7 +24,8 @@ alias will vanish with core version 10.
 Affected Installations
 ======================
 
-Extensions which use the old class name are affected. The extension scanner will find affected extensions using the old class name.
+Extensions which use the old class name are affected. The extension scanner will find affected extensions using the old
+class name.
 
 
 Migration
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84410-CodeCompletionRenamedToCodeCompletionController.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84410-CodeCompletionRenamedToCodeCompletionController.rst
similarity index 87%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-84410-CodeCompletionRenamedToCodeCompletionController.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84410-CodeCompletionRenamedToCodeCompletionController.rst
index af5fb62135cd9727c590f73f70ff7c4bff75d0c1..cb75354cd5ae5b2bb8a34a4d2631ed4131ad8adb 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84410-CodeCompletionRenamedToCodeCompletionController.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84410-CodeCompletionRenamedToCodeCompletionController.rst
@@ -17,14 +17,14 @@ Impact
 ======
 
 The old class name has been registered as class alias and will still work.
-Old class name usage however is discouraged and should be avoided, the
-alias will vanish with core version 10.
+Old class name usage however is discouraged and should be avoided, the alias will vanish with core version 10.
 
 
 Affected Installations
 ======================
 
-Extensions which use the old class name are affected. The extension scanner will find affected extensions using the old class name.
+Extensions which use the old class name are affected. The extension scanner will find affected extensions using the old
+class name.
 
 
 Migration
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84411-TypoScriptReferenceLoaderRenamedToTypoScriptReferenceController.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84411-TypoScriptReferenceLoaderRenamedToTypoScriptReferenceController.rst
similarity index 88%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-84411-TypoScriptReferenceLoaderRenamedToTypoScriptReferenceController.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84411-TypoScriptReferenceLoaderRenamedToTypoScriptReferenceController.rst
index 28d35289057e05985344ae86279117c6dc411920..242e331ba517954452c9c9014d7ac6e0d34a8dbc 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84411-TypoScriptReferenceLoaderRenamedToTypoScriptReferenceController.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84411-TypoScriptReferenceLoaderRenamedToTypoScriptReferenceController.rst
@@ -17,14 +17,14 @@ Impact
 ======
 
 The old class name has been registered as class alias and will still work.
-Old class name usage however is discouraged and should be avoided, the
-alias will vanish with core version 10.
+Old class name usage however is discouraged and should be avoided, the alias will vanish with core version 10.
 
 
 Affected Installations
 ======================
 
-Extensions which use the old class name are affected. The extension scanner will find affected extensions using the old class name.
+Extensions which use the old class name are affected. The extension scanner will find affected extensions using the old
+class name.
 
 
 Migration
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84463-PageTsConfigOptionModweb_listnewWizardsDropped.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84463-PageTsConfigOptionModweb_listnewWizardsDropped.rst
similarity index 73%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-84463-PageTsConfigOptionModweb_listnewWizardsDropped.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84463-PageTsConfigOptionModweb_listnewWizardsDropped.rst
index 8f08bbf0f92b9ee3b1056655e3e9c67d02742114..fef5cb3bbec7f910ed2e9565299d3ce33333131c 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84463-PageTsConfigOptionModweb_listnewWizardsDropped.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84463-PageTsConfigOptionModweb_listnewWizardsDropped.rst
@@ -9,28 +9,25 @@ See :issue:`84463`
 Description
 ===========
 
-The widely unknown PageTsConfig option :ts:`mod.web_list.newWizards` has
-been enabled by default and dropped.
+The widely unknown PageTsConfig option :ts:`mod.web_list.newWizards` has been enabled by default and dropped.
 
-PHP property :php:`newWizards` of class :php:`TYPO3\CMS\Recordlist\RecordList\DatabaseRecordList`
-has been deprecated along the way.
+PHP property :php:`newWizards` of class :php:`TYPO3\CMS\Recordlist\RecordList\DatabaseRecordList` has been deprecated
+along the way.
 
 
 Impact
 ======
 
-The "+" sign in the list module of `pages` table now by default links to the wizard
-to select the new page position.
+The "+" sign in the list module of `pages` table now by default links to the wizard to select the new page position.
 
-The "+" sign in the list module of `tt_content` table now by default links to the
-new content element wizard in a modal.
+The "+" sign in the list module of `tt_content` table now by default links to the new content element wizard in a modal.
 
 
 Affected Installations
 ======================
 
-Most installations should not be affected by the code change, the extension scanner
-will find extensions using the mentioned class property.
+Most installations should not be affected by the code change, the extension scanner will find extensions using the
+mentioned class property.
 
 
 Migration
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84530-DefaultValuesFromGlobalsDeprecatedInFormEngine.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84530-DefaultValuesFromGlobalsDeprecatedInFormEngine.rst
similarity index 77%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-84530-DefaultValuesFromGlobalsDeprecatedInFormEngine.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84530-DefaultValuesFromGlobalsDeprecatedInFormEngine.rst
index 89fa59d6d0f4de801a15c43405bfc1dd39415d5a..51621f0f5c0bb05da8a2289dcc3aade6930ca4fc 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84530-DefaultValuesFromGlobalsDeprecatedInFormEngine.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84530-DefaultValuesFromGlobalsDeprecatedInFormEngine.rst
@@ -9,16 +9,15 @@ See :issue:`84530`
 Description
 ===========
 
-Setting default values for new database records from GET/POST `defVals` parameter
-has been deprecated in 9.2 and will be removed in version 10.
+Setting default values for new database records from GET/POST `defVals` parameter has been marked as deprecated in 9.2
+and will be removed in version 10.
 
 
 Impact
 ======
 
-If not already provided within the new configuration setting `$result['defaultValues']`, the
-default values are applied from GET/POST `defVals` configuration, but will trigger a
-deprecation warning.
+If not already provided within the new configuration setting `$result['defaultValues']`, the default values are applied
+from GET/POST `defVals` configuration, but will trigger a deprecation warning.
 
 
 Affected Installations
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84549-DeprecateMethodsInCoreVersionService.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84549-DeprecateMethodsInCoreVersionService.rst
similarity index 85%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-84549-DeprecateMethodsInCoreVersionService.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84549-DeprecateMethodsInCoreVersionService.rst
index 617437d24e10f57db81021407f3982431f735aad..f97297ea763fb9d6e581343008aefda2d313e341 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84549-DeprecateMethodsInCoreVersionService.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84549-DeprecateMethodsInCoreVersionService.rst
@@ -9,9 +9,10 @@ See :issue:`84549`
 Description
 ===========
 
-The core version service was refactored to make use of the new REST API available via `https://get.typo3.org/v1/api/doc <https://get.typo3.org/v1/api/doc>`_.
+The core version service has been refactored to make use of the new REST API available via
+`https://get.typo3.org/v1/api/doc <https://get.typo3.org/v1/api/doc>`_.
 
-Due to that refactoring multiple methods in class :php:`CoreVersionService` have been deprecated:
+Due to that refactoring multiple methods in class :php:`CoreVersionService` have been marked as deprecated:
 
 * :php:`getDownloadBaseUrl()`
 * :php:`isYoungerPatchDevelopmentReleaseAvailable()`
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84637-TemplateService-linkDataFunctionalityMovedInPageLinkBuilder.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84637-TemplateService-linkDataFunctionalityMovedInPageLinkBuilder.rst
similarity index 99%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-84637-TemplateService-linkDataFunctionalityMovedInPageLinkBuilder.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84637-TemplateService-linkDataFunctionalityMovedInPageLinkBuilder.rst
index 0f3a9f00eef51b2f5cc65c397340f92bf3361df4..e071430f0e3e8033913349e8f35aa0bb8852f84f 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84637-TemplateService-linkDataFunctionalityMovedInPageLinkBuilder.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84637-TemplateService-linkDataFunctionalityMovedInPageLinkBuilder.rst
@@ -22,7 +22,7 @@ The following methods have been marked as deprecated:
 Impact
 ======
 
-Calling any of the methods above will trigger a PHP deprecation message.
+Calling any of the methods above will trigger a PHP deprecation warning.
 
 
 Affected Installations
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84641-DeprecatedAdminPanelRelatedMethods.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84641-DeprecatedAdminPanelRelatedMethods.rst
similarity index 86%
rename from typo3/sysext/core/Documentation/Changelog/master/Deprecation-84641-DeprecatedAdminPanelRelatedMethods.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84641-DeprecatedAdminPanelRelatedMethods.rst
index 051f5ed17f8e0780389fafdfb37b0d5267741af4..3dc90a35ae4f6d136d261b1886b5f8dd716a9d63 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84641-DeprecatedAdminPanelRelatedMethods.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Deprecation-84641-DeprecatedAdminPanelRelatedMethods.rst
@@ -9,8 +9,10 @@ See :issue:`84641`
 Description
 ===========
 
-The admin panel has been extracted into an own extension. To enable users to de-activate the admin panel completely, the hard coupling between the extension and other parts of the core had to be resolved. The admin panel now takes care of its own initialization and provides API methods related to its functionality.
-The following API methods and properties located in `FrontendBackendUserAuthentication` have been deprecated:
+The admin panel has been extracted into an own extension. To enable users to de-activate the admin panel completely,
+the hard coupling between the extension and other parts of the core had to be resolved. The admin panel now takes care
+of its own initialization and provides API methods related to its functionality.
+The following API methods and properties located in `FrontendBackendUserAuthentication` have been marked as deprecated:
 
 * `\TYPO3\CMS\Backend\FrontendBackendUserAuthentication::$adminPanel`
 * `\TYPO3\CMS\Backend\FrontendBackendUserAuthentication::$extAdminConfig`
@@ -38,7 +40,7 @@ Any installation directly calling one of the mentioned methods or properties.
 Migration
 =========
 
-* `\TYPO3\CMS\Backend\FrontendBackendUserAuthentication::$adminPanel` - use `MainController` of adminpanel instead
+* `\TYPO3\CMS\Backend\FrontendBackendUserAuthentication::$adminPanel` - use `MainController` of EXT:adminpanel instead
 * `\TYPO3\CMS\Backend\FrontendBackendUserAuthentication::$extAdminConfig` - load directly from TSConfig if needed
 * `\TYPO3\CMS\Backend\FrontendBackendUserAuthentication::$extAdmEnabled` - check directly against TSConfig if necessary
 
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Feature-48013-AddSupportForProgressiveImages.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-48013-AddSupportForProgressiveImages.rst
similarity index 75%
rename from typo3/sysext/core/Documentation/Changelog/master/Feature-48013-AddSupportForProgressiveImages.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Feature-48013-AddSupportForProgressiveImages.rst
index 5fb8ece552218844ee53abc5e25bcd119e440026..df2934a360d41101952b0343c8c44874ffaa719f 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Feature-48013-AddSupportForProgressiveImages.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-48013-AddSupportForProgressiveImages.rst
@@ -9,12 +9,11 @@ See :issue:`83724`
 Description
 ===========
 
-It is now possible to generate progressive images by setting
-`$GLOBALS['TYPO3_CONF_VARS'][GFX][processor_interlace]` in the Install Tool.
+It is now possible to generate progressive images by setting `$GLOBALS['TYPO3_CONF_VARS'][GFX][processor_interlace]` in
+the Settings Module.
 
 The possible values to set are identical to the ones in defined in the GM / IM manuals.
 
-
 Possible values by the time of writing are:
 
 * None
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Feature-61981-SearchAllFieldsInSuggestWizard.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-61981-SearchAllFieldsInSuggestWizard.rst
similarity index 91%
rename from typo3/sysext/core/Documentation/Changelog/master/Feature-61981-SearchAllFieldsInSuggestWizard.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Feature-61981-SearchAllFieldsInSuggestWizard.rst
index a8149e550e3d4538d3bc30dcdd3deca17683c827..a1c4cad064fe9618aa45730934be68a42e484e0b 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Feature-61981-SearchAllFieldsInSuggestWizard.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-61981-SearchAllFieldsInSuggestWizard.rst
@@ -9,7 +9,7 @@ See :issue:`61981`
 Description
 ===========
 
-Suggest Wizard search terms are split by +.
+Suggest Wizard search terms are split by `+`.
 This allows to search for a combination of strings in any given field.
 
 
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Feature-69187-EXTSchedulerCreateTaskGroupFromAddeditTaskForm.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-69187-EXTSchedulerCreateTaskGroupFromAddeditTaskForm.rst
similarity index 87%
rename from typo3/sysext/core/Documentation/Changelog/master/Feature-69187-EXTSchedulerCreateTaskGroupFromAddeditTaskForm.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Feature-69187-EXTSchedulerCreateTaskGroupFromAddeditTaskForm.rst
index 0be14c8ef62ea0af7312cf2f4f1834b42c6b48bb..b085d2082f5f6852f492f1090da3a071d8dfbdd5 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Feature-69187-EXTSchedulerCreateTaskGroupFromAddeditTaskForm.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-69187-EXTSchedulerCreateTaskGroupFromAddeditTaskForm.rst
@@ -15,6 +15,7 @@ It is now possible to create a new scheduler task group while editing or creatin
 Impact
 ======
 
-It is no longer needed to switch to the list module and create a new task group on page 0 before editing or creating a scheduler task.
+It is no longer needed to switch to the list module and create a new task group on page 0 before editing or creating a
+scheduler task.
 
 .. index:: Backend, ext:scheduler
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Feature-71911-AddConstraintHookInDatabaseRecordListMakeSearchString.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-71911-AddConstraintHookInDatabaseRecordListMakeSearchString.rst
similarity index 89%
rename from typo3/sysext/core/Documentation/Changelog/master/Feature-71911-AddConstraintHookInDatabaseRecordListMakeSearchString.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Feature-71911-AddConstraintHookInDatabaseRecordListMakeSearchString.rst
index ded9ac62136172d25b79a2a70996397ae1d0392d..1096eb484d9f050d9ff557243fa294f1d8ad9749 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Feature-71911-AddConstraintHookInDatabaseRecordListMakeSearchString.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-71911-AddConstraintHookInDatabaseRecordListMakeSearchString.rst
@@ -9,8 +9,8 @@ See :issue:`71911`
 Description
 ===========
 
-A newly introduced hook in DatabaseRecordList->makeSearchString allows to
-modify the constraints which are applied to the search string.
+A newly introduced hook in `DatabaseRecordList->makeSearchString` allows to modify the constraints which are applied to
+the search string.
 
 Example
 =======
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Feature-76349-IntegrateSwiftMailersSpoolTransportIntoTYPO3.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-76349-IntegrateSwiftMailersSpoolTransportIntoTYPO3.rst
similarity index 91%
rename from typo3/sysext/core/Documentation/Changelog/master/Feature-76349-IntegrateSwiftMailersSpoolTransportIntoTYPO3.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Feature-76349-IntegrateSwiftMailersSpoolTransportIntoTYPO3.rst
index c2ecab77b6c527f893dee86c91f20685927676ef..dd423ac4fa084129be049ab32c5b70c34074f6cd 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Feature-76349-IntegrateSwiftMailersSpoolTransportIntoTYPO3.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-76349-IntegrateSwiftMailersSpoolTransportIntoTYPO3.rst
@@ -11,9 +11,9 @@ Description
 
 The default behavior of the TYPO3 mailer is to send the email messages immediately. You may, however, want to avoid
 the performance hit of the communication to the email server, which could cause the user to wait for the next page to
-load while the email is sending. This can be avoided by choosing to "spool" the emails instead of sending them directly.
+load while the email is being sent. This can be avoided by choosing to "spool" the emails instead of sending them directly.
 
-This makes the mailer to not attempt to send the email message but instead save it somewhere such as a file. Another
+This makes the mailer not attempt to send the email message but instead save it somewhere such as a file. Another
 process can then read from the spool and take care of sending the emails in the spool. Currently only spooling to file
 or memory is supported.
 
diff --git a/typo3/sysext/core/Documentation/Changelog/9.2/Feature-77685-CreateASaveAndOpenCopyButtonWhenSavingAContentElement.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-77685-CreateASaveAndOpenCopyButtonWhenSavingAContentElement.rst
new file mode 100644
index 0000000000000000000000000000000000000000..d02512f1d651e9b885aaa826d237909e4407f20e
--- /dev/null
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-77685-CreateASaveAndOpenCopyButtonWhenSavingAContentElement.rst
@@ -0,0 +1,28 @@
+.. include:: ../../Includes.txt
+
+==================================================================================
+Feature: #77685 - Create a save and open copy button when saving a content element
+==================================================================================
+
+See :issue:`77685`
+
+Description
+===========
+
+Editors can no clone a new record by using the new button "clone" in the edit record form for already persisted records.
+If there are not persisted changes when pressing the button a modal appears, providing the following 3 options:
+
+* abort
+* clone the content element without saving the current changes
+* save the changes and clones the record afterwards.
+
+The copy of the record will by put right below the record itself.
+After saving, the edit record form opens for the cloned element.
+
+
+Impact
+======
+
+Editors are able to make a duplicate of a record with just a single click. They don't have to copy & paste.
+
+.. index:: Backend
\ No newline at end of file
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Feature-78332-AllowSettingADefaultReplyTo-email-addressForNotification-mails.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-78332-AllowSettingADefaultReplyTo-email-addressForNotification-mails.rst
similarity index 72%
rename from typo3/sysext/core/Documentation/Changelog/master/Feature-78332-AllowSettingADefaultReplyTo-email-addressForNotification-mails.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Feature-78332-AllowSettingADefaultReplyTo-email-addressForNotification-mails.rst
index 2e84937a5e887b8f86457a68aa6be08267eb14a8..3c1112067596f01d84278e44087b5a0c32973836 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Feature-78332-AllowSettingADefaultReplyTo-email-addressForNotification-mails.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-78332-AllowSettingADefaultReplyTo-email-addressForNotification-mails.rst
@@ -9,7 +9,7 @@ See :issue:`78332`
 Description
 ===========
 
-Two new LocalConfiguration settings are introduced:
+Two new LocalConfiguration settings have been introduced:
 
 .. code-block:: php
 
@@ -24,13 +24,16 @@ Also a new function to build a mail address for SwiftMailer from these settings
 
 If no default reply-to address is set this function will return an empty array.
 
-This function is used in :php:`ContentObjectRenderer::sendNotifyEmail()` to set a ReplyTo address in case no address was supplied in the function parameters.
-In other places where notifications are sent for e.g. (failed) login attempts, reports and where the notification uses the system from address this function is also used.
+This function is used in :php:`ContentObjectRenderer::sendNotifyEmail()` to set a ReplyTo address in case no address is
+supplied in the function parameters.
+In other places where notifications are sent for e.g. (failed) login attempts, reports and where the notification uses
+the system from address this function is also used.
 
 
 Impact
 ======
 
-It's now possible to set a reply-to address for notification mails from TYPO3. Extensions can also use this system reply-to address by calling :php:`MailUtility::getSystemReplyTo()`.
+It's now possible to set a reply-to address for notification mails from TYPO3. Extensions can also use this system
+reply-to address by calling :php:`MailUtility::getSystemReplyTo()`.
 
 .. index:: LocalConfiguration, PHP-API
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Feature-80124-EXTform-AllowSettingOfValidationMessagesInFormEditor.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-80124-EXTform-AllowSettingOfValidationMessagesInFormEditor.rst
similarity index 73%
rename from typo3/sysext/core/Documentation/Changelog/master/Feature-80124-EXTform-AllowSettingOfValidationMessagesInFormEditor.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Feature-80124-EXTform-AllowSettingOfValidationMessagesInFormEditor.rst
index 543711834046e2aaa59d8149ed2e322f269bb804..a7f8d2db55dbb5d27bc3b12952b33e40d2638979 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Feature-80124-EXTform-AllowSettingOfValidationMessagesInFormEditor.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-80124-EXTform-AllowSettingOfValidationMessagesInFormEditor.rst
@@ -9,6 +9,7 @@ See :issue:`80124`
 Description
 ===========
 
-A new form element property "validationErrorMessages" has been introduced. It allows the definition of custom validation error messages. Within the form editor, one can set those error messages for all existing validators.
+A new form element property "validationErrorMessages" has been introduced. It allows the definition of custom validation
+error messages. Within the form editor, one can set those error messages for all existing validators.
 
 .. index:: Backend, Frontend, ext:form, NotScanned
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Feature-80263-AddANewSignalSlotForUserSwitch.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-80263-AddANewSignalSlotForUserSwitch.rst
similarity index 100%
rename from typo3/sysext/core/Documentation/Changelog/master/Feature-80263-AddANewSignalSlotForUserSwitch.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Feature-80263-AddANewSignalSlotForUserSwitch.rst
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Feature-81310-AddButtonToSelectAllRecordsInEXTrecycler.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-81310-AddButtonToSelectAllRecordsInEXTrecycler.rst
similarity index 69%
rename from typo3/sysext/core/Documentation/Changelog/master/Feature-81310-AddButtonToSelectAllRecordsInEXTrecycler.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Feature-81310-AddButtonToSelectAllRecordsInEXTrecycler.rst
index 10fb25ae7539b9454d9c1cead9e1759e8440495e..3e932aaeb744e27fce2d39affc753d9c37685590 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Feature-81310-AddButtonToSelectAllRecordsInEXTrecycler.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-81310-AddButtonToSelectAllRecordsInEXTrecycler.rst
@@ -9,12 +9,6 @@ See :issue:`81310`
 Description
 ===========
 
-Add button to select all records from all pages in EXT:recycler.
-
-
-Impact
-======
-
-All TYPO3 installations where EXT:recycler is enabled.
+A new button to select all records from all pages in EXT:recycler has been added.
 
 .. index:: Backend, ext:recycler
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Feature-82704-AddReadonlyAndRequiredAttributesToTextareaViewHelper.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-82704-AddReadonlyAndRequiredAttributesToTextareaViewHelper.rst
similarity index 87%
rename from typo3/sysext/core/Documentation/Changelog/master/Feature-82704-AddReadonlyAndRequiredAttributesToTextareaViewHelper.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Feature-82704-AddReadonlyAndRequiredAttributesToTextareaViewHelper.rst
index a0ab109549fb917574989a9d6986ac6da6d0ad64..6a7d042f6afeda2cbdc567ba9147c8cfa0a20930 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Feature-82704-AddReadonlyAndRequiredAttributesToTextareaViewHelper.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-82704-AddReadonlyAndRequiredAttributesToTextareaViewHelper.rst
@@ -9,7 +9,7 @@ See :issue:`82704`
 Description
 ===========
 
-The view helper `f:form.textarea` now supports the field attributes `readonly` and `required`.
+The view helper `f:form.textarea` now supports the attributes `readonly` and `required`.
 
 
 Impact
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Feature-83460-HideRestrictedColumns.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-83460-HideRestrictedColumns.rst
similarity index 57%
rename from typo3/sysext/core/Documentation/Changelog/master/Feature-83460-HideRestrictedColumns.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Feature-83460-HideRestrictedColumns.rst
index 974f4d6a396012f4bf27fef04e2fca6ca95c2b42..cfea065a83af7905b0909cf1ad77da78b08045e9 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Feature-83460-HideRestrictedColumns.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-83460-HideRestrictedColumns.rst
@@ -9,21 +9,20 @@ See :issue:`83460`
 Description
 ===========
 
-In order to get a cleaner page layout view for backend users, an option to hide
-the restricted columns in page module has been introduced.
+In order to get a cleaner page layout view for backend users, an option to hide the restricted columns in page module
+has been introduced.
 
-When restricting a list of columns to the user, the restricted columns are
-rendered with a message that the user has no access to these columns which might
-be undesired in certain cases (imagine a user having access to only one of 20
+When restricting a list of columns to the user, the restricted columns are rendered with a message that the user has no
+access to these columns which might be undesired in certain cases (imagine a user having access to only one of 20
 columns total).
 
-With assigning the following setting to the UserTS, these columns are hidden and
-the user will only see the columns they are allowed to edit or add content to:
+With assigning the following setting to the UserTS, these columns are hidden and the user will only see the columns they
+are allowed to edit or add content to:
 
 `mod.web_layout.hideRestrictedCols = 1`
 
-If you use backend layouts to provide an abstract view of the frontend, hiding
-the columns with this setting **will** break your layout, so handle it with care.
+If you use backend layouts to provide an abstract view of the frontend, hiding the columns with this setting **will**
+break your layout, so handle it with care.
 
 
 .. index:: Backend
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Feature-83506-RetrieveSessionDataInTSConditions.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-83506-RetrieveSessionDataInTSConditions.rst
similarity index 66%
rename from typo3/sysext/core/Documentation/Changelog/master/Feature-83506-RetrieveSessionDataInTSConditions.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Feature-83506-RetrieveSessionDataInTSConditions.rst
index b7ea80ff6aa29188ccb54494a75f7292aecfcb7f..a7186d4171921afe0433e5faeafdcbd130d0bc04 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Feature-83506-RetrieveSessionDataInTSConditions.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-83506-RetrieveSessionDataInTSConditions.rst
@@ -9,12 +9,10 @@ See :issue:`83506`
 Description
 ===========
 
-As the session API has been modified, it is no longer possible to access
-session data in TypoScript conditions by using the formerly public
-property ``sesData`` of the frontend user object.
+As the session API has been modified, it is no longer possible to access session data in TypoScript conditions by using
+the formerly public property `sesData` of the frontend user object.
 
-So now there is a more direct way using the keyword ``session``
-with the same function:
+So now there is a more direct way using the keyword `session` with the same function:
 
 .. code-block:: typoscript
 
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Feature-83556-AddToggleSwitchesToFormEngine.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-83556-AddToggleSwitchesToFormEngine.rst
similarity index 100%
rename from typo3/sysext/core/Documentation/Changelog/master/Feature-83556-AddToggleSwitchesToFormEngine.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Feature-83556-AddToggleSwitchesToFormEngine.rst
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Feature-83711-FeatureFlagUnifiedPageTranslationHandling.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-83711-FeatureFlagUnifiedPageTranslationHandling.rst
similarity index 67%
rename from typo3/sysext/core/Documentation/Changelog/master/Feature-83711-FeatureFlagUnifiedPageTranslationHandling.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Feature-83711-FeatureFlagUnifiedPageTranslationHandling.rst
index f243a712c8778af1db0e96df6d3581fa4779678f..76810f3e764052577f7025ee17612070c82ecfb1 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Feature-83711-FeatureFlagUnifiedPageTranslationHandling.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-83711-FeatureFlagUnifiedPageTranslationHandling.rst
@@ -9,14 +9,13 @@ See :issue:`83711`
 Description
 ===========
 
-The feature switch `unifiedPageTranslationHandling` is active for all new
-installations, but not active for existing installations.
+The feature switch `unifiedPageTranslationHandling` is active for all new installations, but not active for existing
+installations.
 
 It does the following when active:
-- All DB schema migrations decide to drop `pages_language_overlay`
-- TCA migration no longer throws a deprecation info (but still unsets `pages_language_overlay`)
+* All DB schema migrations decide to drop `pages_language_overlay`
+* TCA migration no longer throws a deprecation info (but still unsets `pages_language_overlay`)
 
-Once the Update Wizard for migrating `pages_language_overlay` records is done,
-the feature is enabled.
+Once the Update Wizard for migrating `pages_language_overlay` records is done, the feature is enabled.
 
 .. index:: Backend, Frontend
\ No newline at end of file
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Feature-83725-SupportForPSR-15HTTPMiddlewares.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-83725-SupportForPSR-15HTTPMiddlewares.rst
similarity index 100%
rename from typo3/sysext/core/Documentation/Changelog/master/Feature-83725-SupportForPSR-15HTTPMiddlewares.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Feature-83725-SupportForPSR-15HTTPMiddlewares.rst
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Feature-83736-ExtendedPSR-7RequestsWithTYPO3ServerParameters.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-83736-ExtendedPSR-7RequestsWithTYPO3ServerParameters.rst
similarity index 73%
rename from typo3/sysext/core/Documentation/Changelog/master/Feature-83736-ExtendedPSR-7RequestsWithTYPO3ServerParameters.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Feature-83736-ExtendedPSR-7RequestsWithTYPO3ServerParameters.rst
index 6942b059fd53ea16ed08c04d9e1348e05dbc50fb..b7f0ab38e3bb26068df118011b7df419ce45adcf 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Feature-83736-ExtendedPSR-7RequestsWithTYPO3ServerParameters.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-83736-ExtendedPSR-7RequestsWithTYPO3ServerParameters.rst
@@ -9,12 +9,12 @@ See :issue:`83736`
 Description
 ===========
 
-The PSR-7 based ServerRequest objects created by TYPO3 now contain a TYPO3-specific
-attribute object for normalized server parameters that for instance resolves variables
-if the instance is behind a reverse proxy. This substitutes :php:`GeneralUtility::getIndpEnv()`.
+The PSR-7 based `ServerRequest` objects created by TYPO3 now contain a TYPO3-specific attribute object for normalized
+server parameters that for instance resolves variables if the instance is behind a reverse proxy. This substitutes
+:php:`GeneralUtility::getIndpEnv()`.
 
-The object is **for now** available from :php:`ServerRequestInterface $request` objects as
-attribute. The request object is given to controllers, example:
+The object is **for now** available from :php:`ServerRequestInterface $request` objects as attribute. The request object
+is given to controllers, example:
 
 .. code-block:: php
 
@@ -22,15 +22,15 @@ attribute. The request object is given to controllers, example:
     $normalizedParams = $request->getAttribute('normalizedParams');
     $requestPort = $normalizedParams->getRequestPort();
 
-The request object is also available as a global variable in :php:`$GLOBALS['TYPO3_REQUEST']`.
-This is a workaround for the core which has to access the server parameters at places where
-$request is not available. So, while this object is globally available during any HTTP request,
-it is considered bad practice to use it, and the extension scanner will mark an access to this
-global variable as deprecated. The global object will vanish later if the core code has been
+
+The request object is also available as a global variable in :php:`$GLOBALS['TYPO3_REQUEST']`. This is a workaround for
+the core which has to access the server parameters at places where $request is not available. So, while this object is
+globally available during any HTTP request, it is considered bad practice to use it, and the extension scanner will mark
+an access to this global variable as deprecated. The global object will vanish later if the core code has been
 refactored enough to not rely on it anymore.
 
-For now, class :php:`NormalizedParams` is a one-to-one transition of :php:`GeneralUtility::getIndpEnv()`,
-the old arguments can be substituted with these calls:
+For now, class :php:`NormalizedParams` is a one-to-one transition of :php:`GeneralUtility::getIndpEnv()`, the old
+arguments can be substituted with these calls:
 
 - :php:`SCRIPT_NAME` is now :php:`->getScriptName()`
 - :php:`SCRIPT_FILENAME` is now :php:`->getScriptFilename()`
@@ -50,9 +50,9 @@ the old arguments can be substituted with these calls:
 - :php:`TYPO3_SITE_SCRIPT` is now :php:`->getSiteScript()`
 - :php:`TYPO3_SSL` is now :php:`->isHttps()`
 
-Some further old :php:`getIndpEnv()` arguments directly access :php:`$request->serverParams()` and
-do not apply any normalization. These have been transferred to the new class, too, but will be
-deprecated later if the core does not use these anymore:
+Some further old :php:`getIndpEnv()` arguments directly access :php:`$request->serverParams()` and do not apply any
+normalization. These have been transferred to the new class, too, but will be deprecated later if the core does not use
+these anymore:
 
 - :php:`PATH_INFO` is now :php:`->getPathInfo()`, but better use :php:`->getScriptPath()` instead
 - :php:`HTTP_REFERER` is now :php:`->getHttpReferer()`, but better use :php:`$request->getServerParams()['HTTP_REFERER']` instead
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Feature-83740-CleanupOfAbstractRecordListBreaksHook.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-83740-CleanupOfAbstractRecordListBreaksHook.rst
similarity index 100%
rename from typo3/sysext/core/Documentation/Changelog/master/Feature-83740-CleanupOfAbstractRecordListBreaksHook.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Feature-83740-CleanupOfAbstractRecordListBreaksHook.rst
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Feature-83748-ShowValueOfFieldsInDebugMode.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-83748-ShowValueOfFieldsInDebugMode.rst
similarity index 78%
rename from typo3/sysext/core/Documentation/Changelog/master/Feature-83748-ShowValueOfFieldsInDebugMode.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Feature-83748-ShowValueOfFieldsInDebugMode.rst
index 6387f1b4ed4bbcc14fcf2b028ea14f4c1929900d..924e4b35153c8ecac1281561098aaf63ef177efd 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Feature-83748-ShowValueOfFieldsInDebugMode.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-83748-ShowValueOfFieldsInDebugMode.rst
@@ -9,7 +9,9 @@ See :issue:`83748`
 Description
 ===========
 
-If the configuration :php:`$GLOBALS['TYPO3_CONF_VARS']['BE']['debug']` is enabled and the current user is an administrator, the value of select, radio and checkbox fields which are generated by the :php:`FormEngine` is appended to its label.
+If the configuration :php:`$GLOBALS['TYPO3_CONF_VARS']['BE']['debug']` is enabled and the current user is an
+administrator, the value of select, radio and checkbox fields which are generated by the :php:`FormEngine` is appended
+to its label.
 
 
 Impact
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Feature-83906-DisableSingleFormEngineDataProvider.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-83906-DisableSingleFormEngineDataProvider.rst
similarity index 64%
rename from typo3/sysext/core/Documentation/Changelog/master/Feature-83906-DisableSingleFormEngineDataProvider.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Feature-83906-DisableSingleFormEngineDataProvider.rst
index 17a6238b306efffe9a8ab6111822696923c1709a..046ab53cca7d0d31bab73cd226484a6ff4ceebe1 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Feature-83906-DisableSingleFormEngineDataProvider.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-83906-DisableSingleFormEngineDataProvider.rst
@@ -9,28 +9,24 @@ See :issue:`83906`
 Description
 ===========
 
-Single data providers used in the FormEngine data compilation step can be
-disabled.
+Single data providers used in the FormEngine data compilation step can be disabled.
 
-As an example, if editing a full database record, the default TcaCheckboxItems
-could be shut down by setting :php:`disabled` in the :php:`tcaDatabaseRecord` group in
-an extensions :file:`ext_localconf.php` file:
+As an example, if editing a full database record, the default TcaCheckboxItems could be shut down by setting
+:php:`disabled` in the :php:`tcaDatabaseRecord` group in an extensions :file:`ext_localconf.php` file:
 
 .. code-block:: php
 
     $GLOBALS['TYPO3_CONF_VARS']['SYS']['formEngine']['formDataGroup']['tcaDatabaseRecord']
     [\TYPO3\CMS\Backend\Form\FormDataProvider\TcaCheckboxItems::class]['disabled'] = true;
 
-Extension authors can then add an own data provider which :php:`depends` on the disabled one
-and is :php:`before` of the next one to effectively substitute single providers with own
-solutions if needed.
+Extension authors can then add an own data provider which :php:`depends` on the disabled one and is :php:`before` of the
+next one to effectively substitute single providers with own solutions if needed.
 
 
 Impact
 ======
 
-The disable feature allows extension authors to easily substitute
-existing data providers with own solutions and avoids nasty array
-and dependency munging by extension authors.
+The disable feature allows extension authors to easily substitute existing data providers with own solutions and avoids
+nasty array- and dependency munging by extension authors.
 
 .. index:: Backend, PHP-API
\ No newline at end of file
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Feature-83942-ProvideViewHelperToRenderIconForResources.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-83942-ProvideViewHelperToRenderIconForResources.rst
similarity index 100%
rename from typo3/sysext/core/Documentation/Changelog/master/Feature-83942-ProvideViewHelperToRenderIconForResources.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Feature-83942-ProvideViewHelperToRenderIconForResources.rst
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Feature-83965-MakePositionOfSysNotesConfigurable.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-83965-MakePositionOfSysNotesConfigurable.rst
similarity index 67%
rename from typo3/sysext/core/Documentation/Changelog/master/Feature-83965-MakePositionOfSysNotesConfigurable.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Feature-83965-MakePositionOfSysNotesConfigurable.rst
index 98edc36e3bad98bec6d926c14611f6f31adf7ed1..3da79f5efca82d40f0ac2c2eecdf98cff753cd31 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Feature-83965-MakePositionOfSysNotesConfigurable.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-83965-MakePositionOfSysNotesConfigurable.rst
@@ -9,7 +9,7 @@ See :issue:`83965`
 Description
 ===========
 
-Sys_note records can now be rendered either in the top or bottom of the page and list module by
-defining the position in the record itself.
+sys_note records can now be rendered either in the top or bottom of the page and list module by defining the position in
+the record itself.
 
 .. index:: Backend, ext:sys_note
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Feature-84045-NewAdminPanelModuleAPI.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-84045-NewAdminPanelModuleAPI.rst
similarity index 83%
rename from typo3/sysext/core/Documentation/Changelog/master/Feature-84045-NewAdminPanelModuleAPI.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Feature-84045-NewAdminPanelModuleAPI.rst
index 60ce4db734abf69f1445f10ffa4c236f92633faf..4fe5ac29557e8ac65cd7628c796bc28ae135d9d5 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Feature-84045-NewAdminPanelModuleAPI.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-84045-NewAdminPanelModuleAPI.rst
@@ -9,9 +9,11 @@ See :issue:`84045`
 Description
 ===========
 
-Extending the Admin Panel was only partially possible in earlier TYPO3 versions by using a hook that provided the possibility to add pure content (no new modules) as plain HTML.
+Extending the Admin Panel was only partially possible in earlier TYPO3 versions by using a hook that provided the
+possibility to add pure content (no new modules) as plain HTML.
 
-A new API has been introduced, providing more flexible options to add custom modules to the admin panel or replace and deactivate existing ones.
+A new API has been introduced, providing more flexible options to add custom modules to the admin panel or replace and
+deactivate existing ones.
 
 
 Impact
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Feature-84120-AbsoluteURLsForTypolinkViewHelpers.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-84120-AbsoluteURLsForTypolinkViewHelpers.rst
similarity index 87%
rename from typo3/sysext/core/Documentation/Changelog/master/Feature-84120-AbsoluteURLsForTypolinkViewHelpers.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Feature-84120-AbsoluteURLsForTypolinkViewHelpers.rst
index 33423806142b8063a9a82f3c138945ec18233faf..dd7670cb53d9f06514db39e5b2e74e3af4ed9791 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Feature-84120-AbsoluteURLsForTypolinkViewHelpers.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-84120-AbsoluteURLsForTypolinkViewHelpers.rst
@@ -9,7 +9,7 @@ See :issue:`84120`
 Description
 ===========
 
-A new parameter "absolute" is added to the Fluid ViewHelpers `<f:uri.typolink>` and `<f:link.typolink>`,
+The new parameter `absolute` has been added to the Fluid ViewHelpers `<f:uri.typolink>` and `<f:link.typolink>`,
 allowing to generate absolute links, like other ViewHelpers used for linking handle it already.
 
 
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Feature-84153-IntroduceAGenericEnvironmentClass.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-84153-IntroduceAGenericEnvironmentClass.rst
similarity index 53%
rename from typo3/sysext/core/Documentation/Changelog/master/Feature-84153-IntroduceAGenericEnvironmentClass.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Feature-84153-IntroduceAGenericEnvironmentClass.rst
index d129b5e768cdd346a23e353657bc0caf423b0915..91ec834f554596189ef0ae15085e76824e495d0b 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Feature-84153-IntroduceAGenericEnvironmentClass.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-84153-IntroduceAGenericEnvironmentClass.rst
@@ -12,34 +12,34 @@ Description
 A new base API class :php:`TYPO3\CMS\Core\Core\Environment` has been added. This class contains application-wide
 information related to paths and PHP internals, which were previously exposed via PHP constants.
 
-This Environment class comes with a new possibility, to have a `config` and `var` folder outside of
-the document root (known as `PATH_site`). When the environment variable :php:`TYPO3_PATH_APP` is set, which
-defines the project root folder, the new `config` and `var` folders outside of the document root are used for
-installation-wide configuration and volatile files.
+This Environment class comes with a new possibility, to have a `config` and `var` folder outside of the document root
+(known as `PATH_site`). When the environment variable :php:`TYPO3_PATH_APP` is set, which defines the project root
+folder, the new `config` and `var` folders outside of the document root are used for installation-wide configuration and
+volatile files.
 
 The following static API methods are exposed within the Environment class:
 
-- `Environment::isCli()` - defines whether TYPO3 runs on a CLI context or HTTP context
-- `Environment::getApplicationContext()` - returns the ApplicationContext object that encapsulates `TYPO3_CONTEXT`
-- `Environment::isComposerMode()` - defines whether TYPO3 was installed via composer
-- `Environment::getProjectPath()` - returns the absolute path to the root-level folder without the trailing slash
-- `Environment::getPublicPath()` - returns the absolute path to the publically accessible folder (previously known as PATH_site) without the trailing slash
-- `Environment::getVarPath()` - returns the absolute path to the folder where non-public semi-persistent files can be stored. For regular projects, this is known as PATH_site/typo3temp/var
-- `Environment::getConfigPath()` - returns the absolute path to the folder where (writeable) configuration is stored. For regular projects, this is known as PATH_site/typo3conf
-- `Environment::getCurrentScript()` - the absolute path and filename to the currently executed PHP script
-- `Environment::isWindows()` - whether TYPO3 runs on a windows server
-- `Environment::isUnix()` - whether TYPO3 runs on a unix server
+* `Environment::isCli()` - defines whether TYPO3 runs on a CLI context or HTTP context
+* `Environment::getApplicationContext()` - returns the ApplicationContext object that encapsulates `TYPO3_CONTEXT`
+* `Environment::isComposerMode()` - defines whether TYPO3 was installed via composer
+* `Environment::getProjectPath()` - returns the absolute path to the root-level folder without the trailing slash
+* `Environment::getPublicPath()` - returns the absolute path to the publically accessible folder (previously known as PATH_site) without the trailing slash
+* `Environment::getVarPath()` - returns the absolute path to the folder where non-public semi-persistent files can be stored. For regular projects, this is known as PATH_site/typo3temp/var
+* `Environment::getConfigPath()` - returns the absolute path to the folder where (writeable) configuration is stored. For regular projects, this is known as PATH_site/typo3conf
+* `Environment::getCurrentScript()` - the absolute path and filename to the currently executed PHP script
+* `Environment::isWindows()` - whether TYPO3 runs on a windows server
+* `Environment::isUnix()` - whether TYPO3 runs on a unix server
 
 
 Impact
 ======
 
 You should not rely on the PHP constants anymore, but rather use the Environment class to resolve paths:
-- :php:`PATH_site`
-- :php:`PATH_typo3conf`
-- :php:`PATH_site . 'typo3temp/var/'`
-- :php:`TYPO3_OS`
-- :php:`TYPO3_REQUESTTYPE_CLI`
-- :php:`PATH_thisScript`
+* :php:`PATH_site`
+* :php:`PATH_typo3conf`
+* :php:`PATH_site . 'typo3temp/var/'`
+* :php:`TYPO3_OS`
+* :php:`TYPO3_REQUESTTYPE_CLI`
+* :php:`PATH_thisScript`
 
 .. index:: PHP-API
\ No newline at end of file
diff --git a/typo3/sysext/core/Documentation/Changelog/9.2/Feature-84159-ExtractAdminPanelToOwnExtension.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-84159-ExtractAdminPanelToOwnExtension.rst
new file mode 100644
index 0000000000000000000000000000000000000000..0158a8e8ea89c42f63b10a5dad1fec5c2a8c4dd1
--- /dev/null
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-84159-ExtractAdminPanelToOwnExtension.rst
@@ -0,0 +1,23 @@
+.. include:: ../../Includes.txt
+
+======================================================
+Feature: #84159 - Extract admin panel to own extension
+======================================================
+
+See :issue:`84159`
+
+Description
+===========
+
+The admin panel has been extracted to a standalone extension. All admin panel specific code will be moved to the
+extension removing cross-dependencies and enabling better scoping.
+
+
+Impact
+======
+
+The admin panel can be completely uninstalled by deactivating the extension. To use the admin panel functionality the
+extension has to be activated. Classes have been moved to the new extension and a class alias map for migration of
+legacy code has been provided.
+
+.. index:: Frontend, PHP-API, ext:frontend
\ No newline at end of file
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Feature-84216-FluidPartialDebugOutputShouldNotBeVisibleInAdminPanel.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-84216-FluidPartialDebugOutputShouldNotBeVisibleInAdminPanel.rst
similarity index 63%
rename from typo3/sysext/core/Documentation/Changelog/master/Feature-84216-FluidPartialDebugOutputShouldNotBeVisibleInAdminPanel.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Feature-84216-FluidPartialDebugOutputShouldNotBeVisibleInAdminPanel.rst
index 554e249bbbc19f99703b7b94811dba1f8afc4c27..6132436d860c55c78ec8d70b7a5f69a2170abab3 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Feature-84216-FluidPartialDebugOutputShouldNotBeVisibleInAdminPanel.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-84216-FluidPartialDebugOutputShouldNotBeVisibleInAdminPanel.rst
@@ -9,9 +9,9 @@ See :issue:`84216`
 Description
 ===========
 
-A new attribute "debug" was added to the RenderViewHelper which is true by default.
-Setting this attribute to false disables the debug information rendered in the frontend
-if the fluid debug mode is enabled in the admin panel.
+The new attribute `debug` has been added to the RenderViewHelper which is `true` by default.
+Setting this attribute to `false` disables the debug information rendered in the frontend if the fluid debug mode is
+enabled in the admin panel.
 
 Impact
 ======
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Feature-84466-RequestAwareInterfacesAddedToReports.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-84466-RequestAwareInterfacesAddedToReports.rst
similarity index 92%
rename from typo3/sysext/core/Documentation/Changelog/master/Feature-84466-RequestAwareInterfacesAddedToReports.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Feature-84466-RequestAwareInterfacesAddedToReports.rst
index 7ff1268e158bb748d50173782d2b58dd5cc70f38..09c936330db9fd0e77a4fddb56b6fef02a8f2431 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Feature-84466-RequestAwareInterfacesAddedToReports.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-84466-RequestAwareInterfacesAddedToReports.rst
@@ -14,8 +14,8 @@ Two new interfaces where added to mark reports and status providers as request a
 * :php:`TYPO3\CMS\Reports\RequestAwareReportInterface` (extends :php:`TYPO3\CMS\Reports\ReportInterface`)
 * :php:`TYPO3\CMS\Reports\RequestAwareStatusProviderInterface` (extends :php:`TYPO3\CMS\Reports\StatusProviderInterface`)
 
-Both interfaces allow reports or status providers to receive an optional PSR-7 server
-request argument for their respective interface methods:
+Both interfaces allow reports or status providers to receive an optional PSR-7 server request argument for their
+respective interface methods:
 
 * :php:`getReport()`
 * :php:`getStatus()`
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Feature-84517-Recordlist-MakeCsvDelimiterConfigurable.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-84517-Recordlist-MakeCsvDelimiterConfigurable.rst
similarity index 88%
rename from typo3/sysext/core/Documentation/Changelog/master/Feature-84517-Recordlist-MakeCsvDelimiterConfigurable.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Feature-84517-Recordlist-MakeCsvDelimiterConfigurable.rst
index 19bce79bb3d91670d920cd4ad65dd986b6f5fda1..127f65edb2fa4e172b2b414d85ff09b0656ffc7c 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Feature-84517-Recordlist-MakeCsvDelimiterConfigurable.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-84517-Recordlist-MakeCsvDelimiterConfigurable.rst
@@ -9,7 +9,7 @@ See :issue:`84517`
 Description
 ===========
 
-Two new Page TSconfig options were added for the DatabaseRecordList:
+Two new PageTSconfig options were added for the DatabaseRecordList:
 
 - `mod.web_list.csvDelimiter = ,` - defines the delimiter between csv values
 - `mod.web_list.csvQuote = "` - defines the quote-character to wrap csv values
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Feature-84545-AllowTemporaryFilesToBeStoredOutsideTheDocumentRoot.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-84545-AllowTemporaryFilesToBeStoredOutsideTheDocumentRoot.rst
similarity index 83%
rename from typo3/sysext/core/Documentation/Changelog/master/Feature-84545-AllowTemporaryFilesToBeStoredOutsideTheDocumentRoot.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Feature-84545-AllowTemporaryFilesToBeStoredOutsideTheDocumentRoot.rst
index e9bd24c0b977573c99015c75892a3cb9986af8e6..a51aa2d9dc441ef28d4581a4a1843eaf5b6a11c5 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Feature-84545-AllowTemporaryFilesToBeStoredOutsideTheDocumentRoot.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-84545-AllowTemporaryFilesToBeStoredOutsideTheDocumentRoot.rst
@@ -9,15 +9,14 @@ See :issue:`84545`
 Description
 ===========
 
-The environment variable called `TYPO3_PATH_APP`, which was previously introduced with the Environment
-API, is now used to allow to store data outside of the document root.
+The environment variable called `TYPO3_PATH_APP`, which was previously introduced with the Environment API, is now used
+to allow to store data outside of the document root.
 
-All regular composer-based installations now benefit from this functionality directly, as data which was
-previously stored and hard-coded within :file:`typo3temp/var/` is now stored within the project roots' folder
-:file:`var/`.
+All regular composer-based installations now benefit from this functionality directly, as data which was previously
+stored and hard-coded within :file:`typo3temp/var/` is now stored within the **project root** folder :file:`var/`.
 
 For non-composer installations, it is possible to set the environment variable to a folder usually one level
-upwards than the regular web root. This increases security for any TYPO3 installation as files are not
+upwards than the regular **web root**. This increases security for any TYPO3 installation as files are not
 publicly accessible (for example via web browser) anymore.
 
 A typical example:
@@ -25,7 +24,7 @@ A typical example:
 - The web folder is then set to `TYPO3_PATH_ROOT` :file:`/var/www/my-project/public`.
 
 Non-public files are then put to
-- :file:`/var/www/my-project/var/session` (like Install Tool Session files)
+- :file:`/var/www/my-project/var/session` (like Maintenance Tool Session files)
 - :file:`/var/www/my-project/var/cache` (Caching Framework data)
 - :file:`/var/www/my-project/var/lock` (Files related to locking)
 - :file:`/var/www/my-project/var/log` (Files related to logging)
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Feature-84549-UsageOfNewRESTAPIOnGettypo3org.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-84549-UsageOfNewRESTAPIOnGettypo3org.rst
similarity index 72%
rename from typo3/sysext/core/Documentation/Changelog/master/Feature-84549-UsageOfNewRESTAPIOnGettypo3org.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Feature-84549-UsageOfNewRESTAPIOnGettypo3org.rst
index 85c7092a08abf01c3f26c403a2d32797143b83df..4991b754790d5ef564081764a391edff6116c903 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Feature-84549-UsageOfNewRESTAPIOnGettypo3org.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Feature-84549-UsageOfNewRESTAPIOnGettypo3org.rst
@@ -9,14 +9,14 @@ See :issue:`84549`
 Description
 ===========
 
-Instead of providing only a JSON file, the get.typo3.org website was refactored to
-provide a REST web API for information on TYPO3 releases.
+Instead of providing only a JSON file, the get.typo3.org website was refactored to provide a REST web API for
+information on TYPO3 releases.
 
 The core uses that information to check for available upgrades and download new versions.
-With this change the information will be fetched via the new API. Additionally information
-about new releases will also be displayed in the system information toolbar, both in Composer
-Mode and Classic Mode mode to notify users that TYPO3 might be updated. If the version is
-out-of-support or has known security issues, the notification is displayed as an error.
+With this change the information will be fetched via the new API. Additionally information about new releases will also
+be displayed in the system information toolbar, both in Composer Mode and Classic Mode mode to notify users that TYPO3
+might be updated. If the version is out-of-support or has known security issues, the notification is displayed as an
+error.
 
 
 Impact
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Important-83724-APIAndBehaviorChangeInRequestHandlerClasses.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Important-83724-APIAndBehaviorChangeInRequestHandlerClasses.rst
similarity index 82%
rename from typo3/sysext/core/Documentation/Changelog/master/Important-83724-APIAndBehaviorChangeInRequestHandlerClasses.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Important-83724-APIAndBehaviorChangeInRequestHandlerClasses.rst
index 858bfd3b6375fd835bd7b9915650e6389af0163e..b0eef594a3dc8657338c43a94e62136dde585860 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Important-83724-APIAndBehaviorChangeInRequestHandlerClasses.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Important-83724-APIAndBehaviorChangeInRequestHandlerClasses.rst
@@ -9,16 +9,16 @@ See :issue:`83724`
 Description
 ===========
 
-In preparation for a better PSR-7 and a new PSR-15 integration the internal request handler classes where changed:
+In preparation for a better PSR-7 and a new PSR-15 integration the internal request handler classes have been changed:
 
-* All methods gained strict argument and return type declarations.
+* All methods gained strict argument type and return type declarations.
 * Instead of calling :php:`HttpUtility::redirect()` a :php:`RedirectResponse` is returned.
 * Instead of returning :php:`null` a :php:`NullResponse` is returned.
 
 Impact
 ======
 
-Extending one of the core request handlers without adding type declarations (to overwritten methods),
+Extending one of the core request handlers without adding type declarations (to overloaded methods),
 will trigger a PHP fatal error.
 
 Affected Installations
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Important-83869-RemovedRequestTypeSpecificCodeInBootstrap.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Important-83869-RemovedRequestTypeSpecificCodeInBootstrap.rst
similarity index 78%
rename from typo3/sysext/core/Documentation/Changelog/master/Important-83869-RemovedRequestTypeSpecificCodeInBootstrap.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Important-83869-RemovedRequestTypeSpecificCodeInBootstrap.rst
index 8b1fc8991731880942cc0bf8adf532cfe011e613..447138761f7a46f62a1d1f0766c5f5a0852f16dc 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Important-83869-RemovedRequestTypeSpecificCodeInBootstrap.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Important-83869-RemovedRequestTypeSpecificCodeInBootstrap.rst
@@ -11,7 +11,7 @@ Description
 
 All methods and properties related to specific HTTP or CLI handling in
 :php:`\TYPO3\CMS\Core\Core\Bootstrap` have been removed.
-These methods and properties were either protected or marked ``@internal``.
+These methods and properties were either protected or marked `@internal`.
 
 Methods:
 
@@ -48,11 +48,8 @@ All installations that use custom extensions that use request method specific me
 Migration
 =========
 
-Custom request handlers that are registered using the internal method
-:php:`registerRequestHandlerImplementation()` should
-be converted to PSR-15 middlewares. TYPO3 9.2 gained an API
-:file:`Configuration/Configuration/RequestMiddlewares.php` for registering
-PSR-15 middleware HTTP handlers. See :php:`\TYPO3\CMS\Frontend\Middleware\EidHandler`
-for an example.
+Custom request handlers that are registered using the internal method :php:`registerRequestHandlerImplementation()`
+should be converted to PSR-15 middlewares. TYPO3 9.2 gained an API :file:`Configuration/Configuration/RequestMiddlewares.php`
+for registering PSR-15 middleware HTTP handlers. See :php:`\TYPO3\CMS\Frontend\Middleware\EidHandler` for an example.
 
 .. index:: Backend, CLI, Frontend, PHP-API, FullyScanned
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Important-84420-ProperlyEscapeReservedCharsInYaml.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Important-84420-ProperlyEscapeReservedCharsInYaml.rst
similarity index 86%
rename from typo3/sysext/core/Documentation/Changelog/master/Important-84420-ProperlyEscapeReservedCharsInYaml.rst
rename to typo3/sysext/core/Documentation/Changelog/9.2/Important-84420-ProperlyEscapeReservedCharsInYaml.rst
index 764a4c3ca6e60da05ede3940181c74afef675e30..a59f7ab576e8531e7fdaa9745347380211d5c7a1 100644
--- a/typo3/sysext/core/Documentation/Changelog/master/Important-84420-ProperlyEscapeReservedCharsInYaml.rst
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Important-84420-ProperlyEscapeReservedCharsInYaml.rst
@@ -1,7 +1,7 @@
 .. include:: ../../Includes.txt
 
 ==========================================================
-Important: #84420 - Properly escape reserved chars in yaml
+Important: #84420 - Properly escape reserved chars in YAML
 ==========================================================
 
 See :issue:`84420`
@@ -12,7 +12,7 @@ Description
 If dealing with YAML files in the TYPO3 system - for instance to configure forms
 using the `form` extension or if configuring `ckeditor` - integrators should properly
 quote strings containing special characters like `@` or `%` to be upwards compatible
-with the version 4 symfony yaml parser.
+with the version 4 symfony YAML parser.
 
 More information can be found in the Symfony_ docs.
 
diff --git a/typo3/sysext/core/Documentation/Changelog/9.2/Index.rst b/typo3/sysext/core/Documentation/Changelog/9.2/Index.rst
new file mode 100644
index 0000000000000000000000000000000000000000..f906d7c43b004aedbdf57c584fddde8ae466f495
--- /dev/null
+++ b/typo3/sysext/core/Documentation/Changelog/9.2/Index.rst
@@ -0,0 +1,51 @@
+
+.. include:: ../../Includes.txt
+
+9.2 Changes
+===========
+
+**Table of contents**
+
+.. contents::
+   :local:
+   :depth: 1
+
+Breaking Changes
+^^^^^^^^^^^^^^^^
+
+.. toctree::
+   :maxdepth: 1
+   :titlesonly:
+   :glob:
+
+   Breaking-*
+
+Features
+^^^^^^^^
+
+.. toctree::
+   :maxdepth: 1
+   :titlesonly:
+   :glob:
+
+   Feature-*
+
+Deprecation
+^^^^^^^^^^^
+
+.. toctree::
+   :maxdepth: 1
+   :titlesonly:
+   :glob:
+
+   Deprecation-*
+
+Important
+^^^^^^^^^
+
+.. toctree::
+   :maxdepth: 1
+   :titlesonly:
+   :glob:
+
+   Important-*
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-81434-StringCacheFrontendDeprecated.rst b/typo3/sysext/core/Documentation/Changelog/master/Deprecation-81434-StringCacheFrontendDeprecated.rst
deleted file mode 100644
index d59abeb089d694397b4c7136f44f433efb35a865..0000000000000000000000000000000000000000
--- a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-81434-StringCacheFrontendDeprecated.rst
+++ /dev/null
@@ -1,32 +0,0 @@
-.. include:: ../../Includes.txt
-
-======================================================
-Deprecation: #81434 - String Cache Frontend Deprecated
-======================================================
-
-See :issue:`81434`
-
-Description
-===========
-
-The ``StringFrontend`` cache frontend has been deprecated in favor of VariableFrontend.
-
-
-Impact
-======
-
-The ``TYPO3\CMS\Core\Cache\Frontend\StringFrontend`` class is deprecated.
-
-
-Affected Installations
-======================
-
-Any TYPO3 installation which defines any custom cache using ``StringFrontend``.
-
-
-Migration
-=========
-
-Replace ``TYPO3\CMS\Core\Cache\Frontend\StringFrontend`` occurrences in cache configurations with ``TYPO3\CMS\Core\Cache\Frontend\VariableFrontend``.
-
-.. index:: PHP-API, NotScanned
\ No newline at end of file
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-83964-ExtForm-StreamlineUsageOfIcons.rst b/typo3/sysext/core/Documentation/Changelog/master/Deprecation-83964-ExtForm-StreamlineUsageOfIcons.rst
deleted file mode 100644
index a6bc1186fc24d744f12c40b72b4998de5a95cfd2..0000000000000000000000000000000000000000
--- a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-83964-ExtForm-StreamlineUsageOfIcons.rst
+++ /dev/null
@@ -1,98 +0,0 @@
-.. include:: ../../Includes.txt
-
-==========================================================
-Deprecation: #83964 - EXT:form - streamline usage of icons
-==========================================================
-
-See :issue:`83964`
-
-Description
-===========
-
-With issue #82348 EXT:form icons have been cloned into :file:`EXT:core/Resources/Public/Icons/T3Icons/form`.
-Icons are now available with the identifier prefix ``form-`` (previously ``t3-form-icon-``).
-For this reason, the old icon identifiers with ``t3-form-icon-`` prefix are deprecated and will be
-removed in TYPO3v10.
-
-
-Impact
-======
-
-Usage of the following icon identifiers will trigger a deprecation warning:
-
-* ``t3-form-icon-advanced-password``
-* ``t3-form-icon-checkbox``
-* ``t3-form-icon-content-element``
-* ``t3-form-icon-date-picker``
-* ``t3-form-icon-duplicate``
-* ``t3-form-icon-email``
-* ``t3-form-icon-fieldset``
-* ``t3-form-icon-file-upload``
-* ``t3-form-icon-finisher``
-* ``t3-form-icon-form-element-selector``
-* ``t3-form-icon-gridcontainer``
-* ``t3-form-icon-gridrow``
-* ``t3-form-icon-hidden``
-* ``t3-form-icon-image-upload``
-* ``t3-form-icon-insert-after``
-* ``t3-form-icon-insert-in``
-* ``t3-form-icon-multi-checkbox``
-* ``t3-form-icon-multi-select``
-* ``t3-form-icon-number``
-* ``t3-form-icon-page``
-* ``t3-form-icon-password``
-* ``t3-form-icon-radio-button``
-* ``t3-form-icon-single-select``
-* ``t3-form-icon-static-text``
-* ``t3-form-icon-summary-page``
-* ``t3-form-icon-telephone``
-* ``t3-form-icon-text``
-* ``t3-form-icon-textarea``
-* ``t3-form-icon-url``
-* ``t3-form-icon-validator``
-
-Affected installations
-======================
-
-All instances are affected which register one of the icon identifiers listed above through the
-:php:`IconRegistry`.
-
-
-Migration
-=========
-
-Use one of the following icon identifier replacements ('deprecated-icon-identifier' => 'new-icon-identifier')
-
-* ``t3-form-icon-advanced-password`` => ``form-advanced-password``
-* ``t3-form-icon-checkbox`` => ``form-checkbox``
-* ``t3-form-icon-content-element`` => ``form-content-element``
-* ``t3-form-icon-date-picker`` => ``form-date-picker``
-* ``t3-form-icon-duplicate`` => ``actions-duplicate``
-* ``t3-form-icon-email`` => ``form-email``
-* ``t3-form-icon-fieldset`` => ``form-fieldset``
-* ``t3-form-icon-file-upload`` => ``form-file-upload``
-* ``t3-form-icon-finisher`` => ``form-finisher``
-* ``t3-form-icon-form-element-selector`` => ``actions-variable-select``
-* ``t3-form-icon-gridcontainer`` => ``form-gridcontainer``
-* ``t3-form-icon-gridrow`` => ``form-gridrow``
-* ``t3-form-icon-hidden`` => ``form-hidden``
-* ``t3-form-icon-image-upload`` => ``form-image-upload``
-* ``t3-form-icon-insert-after`` => ``form-insert-after``
-* ``t3-form-icon-insert-in`` => ``form-insert-in``
-* ``t3-form-icon-multi-checkbox`` => ``form-multi-checkbox``
-* ``t3-form-icon-multi-select`` => ``form-multi-select``
-* ``t3-form-icon-number`` => ``form-number``
-* ``t3-form-icon-page`` => ``form-page``
-* ``t3-form-icon-password`` => ``form-password``
-* ``t3-form-icon-radio-button`` => ``form-radio-button``
-* ``t3-form-icon-single-select`` => ``form-single-select``
-* ``t3-form-icon-static-text`` => ``form-static-text``
-* ``t3-form-icon-summary-page`` => ``form-summary-page``
-* ``t3-form-icon-telephone`` => ``form-telephone``
-* ``t3-form-icon-text`` => ``form-text``
-* ``t3-form-icon-textarea`` => ``form-textarea``
-* ``t3-form-icon-url`` => ``form-url``
-* ``t3-form-icon-validator`` => ``form-validator``
-
-
-.. index:: Backend, ext:form, NotScanned
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84109-DeprecateDependencyResolver.rst b/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84109-DeprecateDependencyResolver.rst
deleted file mode 100644
index 4002458223c0a5c93389e3a4f02285a7210389b3..0000000000000000000000000000000000000000
--- a/typo3/sysext/core/Documentation/Changelog/master/Deprecation-84109-DeprecateDependencyResolver.rst
+++ /dev/null
@@ -1,43 +0,0 @@
-.. include:: ../../Includes.txt
-
-==================================================
-Deprecation: #84109 - Deprecate DependencyResolver
-==================================================
-
-See :issue:`84109`
-
-Description
-===========
-
-The class :php:`\TYPO3\CMS\Core\Package\DependencyResolver` has been marked as
-deprecated as the code as been merged into :php:`\TYPO3\CMS\Core\Package\PackageManager`.
-Additionally the :php:`\TYPO3\CMS\Core\Package\PackageManager` method
-:php:`injectDependencyResolver` has been deprecated and the
-:php:`\TYPO3\CMS\Core\Package\PackageManager` triggers a deprecation log entry
-when the :php:`\TYPO3\CMS\Core\Service\DependencyOrderingService` is not injected
-through the constructor.
-
-Impact
-======
-
-Installations that use :php:`\TYPO3\CMS\Core\Package\DependencyResolver` or create
-an own :php:`\TYPO3\CMS\Core\Package\PackageManager` instance will trigger a
-deprecation log entry.
-
-
-Affected Installations
-======================
-
-All installations that use custom extensions that use the
-:php:`\TYPO3\CMS\Core\Package\DependencyResolver` class or create
-an own :php:`\TYPO3\CMS\Core\Package\PackageManager` instance.
-
-
-Migration
-=========
-
-Use :php:`\TYPO3\CMS\Core\Service\DependencyOrderingService` to manually sort packages.
-Pass :php:`\TYPO3\CMS\Core\Service\DependencyOrderingService` to the
-:php:`\TYPO3\CMS\Core\Package\PackageManager` constructor if a new instance is created.
-
-.. index:: PHP-API, FullyScanned
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Feature-77685-CreateASaveAndOpenCopyButtonWhenSavingAContentElement.rst b/typo3/sysext/core/Documentation/Changelog/master/Feature-77685-CreateASaveAndOpenCopyButtonWhenSavingAContentElement.rst
deleted file mode 100644
index f066cd6715de1a3e3625a503aa0f99cf072ec97f..0000000000000000000000000000000000000000
--- a/typo3/sysext/core/Documentation/Changelog/master/Feature-77685-CreateASaveAndOpenCopyButtonWhenSavingAContentElement.rst
+++ /dev/null
@@ -1,21 +0,0 @@
-.. include:: ../../Includes.txt
-
-==================================================================================
-Feature: #77685 - Create a save and open copy button when saving a content element
-==================================================================================
-
-See :issue:`77685`
-
-Description
-===========
-
-This patch adds a "clone content element" icon next to the save icon in the edit record form for already persisted reccords. If there are not persisted changes when pressing the button a modal appears, providing the following 3 options: abort, clone the content element without saving the current changes, save the changes and clones the record afterwards. The copy of the record will by put right below the record itself.
-After saving, the edit record form opens for the copied element.
-
-
-Impact
-======
-
-Editors are able to make a duplicate of a record with just a single click. They don't have to copy & paste.
-
-.. index:: Backend
\ No newline at end of file
diff --git a/typo3/sysext/core/Documentation/Changelog/master/Feature-84159-ExtractAdminPanelToOwnExtension.rst b/typo3/sysext/core/Documentation/Changelog/master/Feature-84159-ExtractAdminPanelToOwnExtension.rst
deleted file mode 100644
index 19d7236d37eaac3cba26ad67c156753eefde29ad..0000000000000000000000000000000000000000
--- a/typo3/sysext/core/Documentation/Changelog/master/Feature-84159-ExtractAdminPanelToOwnExtension.rst
+++ /dev/null
@@ -1,20 +0,0 @@
-.. include:: ../../Includes.txt
-
-======================================================
-Feature: #84159 - Extract admin panel to own extension
-======================================================
-
-See :issue:`84159`
-
-Description
-===========
-
-The admin panel was extracted to a standalone extension. All admin panel specific code will be moved to the extension removing cross-dependencies and enabling better scoping.
-
-
-Impact
-======
-
-The admin panel can be completely uninstalled by deactivating the extension. To use the admin panel functionality the extension has to be activated. Classes have been moved to the new extension and a class alias map for migration of legacy code has been provided.
-
-.. index:: Frontend, PHP-API, ext:frontend
\ No newline at end of file