diff --git a/10/umbraco-deploy/release-notes.md b/10/umbraco-deploy/release-notes.md
index 7e8afc17f23..86a9e1ec094 100644
--- a/10/umbraco-deploy/release-notes.md
+++ b/10/umbraco-deploy/release-notes.md
@@ -21,7 +21,7 @@ This section contains the release notes for Umbraco Deploy 4 and 10 including al
Version 10
-[**10.3.2**](https://github.com/umbraco/Umbraco.Deploy.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F10.3.2) **(January 9th 2023)**
+[**10.3.2**](https://github.com/umbraco/Umbraco.Deploy.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F10.3.2) **(January 9th 2024)**
* Fixed issue with transfer of content using language variants [#193](https://github.com/umbraco/Umbraco.Deploy.Issues/issues/193)
@@ -185,7 +185,7 @@ This section contains the release notes for Umbraco Deploy 4 and 10 including al
Version 4
-[**4.9.2**](https://github.com/umbraco/Umbraco.Deploy.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F4.9.2) **(January 9th 2023)**
+[**4.9.2**](https://github.com/umbraco/Umbraco.Deploy.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F4.9.2) **(January 9th 2024)**
* Fixed issue with transfer of content using language variants [#193](https://github.com/umbraco/Umbraco.Deploy.Issues/issues/193)
diff --git a/10/umbraco-forms/developer/configuration/README.md b/10/umbraco-forms/developer/configuration/README.md
index fcb7afc540d..b9154dc008f 100644
--- a/10/umbraco-forms/developer/configuration/README.md
+++ b/10/umbraco-forms/developer/configuration/README.md
@@ -84,7 +84,9 @@ For illustration purposes, the following structure represents the full set of op
"DisableRecordIndexing": false,
"EnableFormsApi": false,
"EnableRecordingOfIpWithFormSubmission": "true",
- "UseSemanticFieldsetRendering": false
+ "UseSemanticFieldsetRendering": false,
+ "DisableRelationTracking": false,
+ "TrackRenderedFormsStorageMethod": "TempData"
},
"Security": {
"DisallowedFileUploadExtensions": "config,exe,dll,asp,aspx",
@@ -112,6 +114,9 @@ For illustration purposes, the following structure represents the full set of op
},
"RichText": {
"DataTypeId": "ca90c950-0aff-4e72-b976-a30b1ac57dad"
+ },
+ "TitleAndDescription": {
+ "AllowUnsafeHtmlRendering": true
}
}
}
@@ -375,6 +380,24 @@ Although this semantic markup is preferred, it could be a presentational breakin
In Umbraco 13 this configuration option will be removed and the semantic rendering made the only option.
+### DisableRelationTracking
+
+Forms will by default track relations between forms and the content pages they are used on. This allows editors to see where forms are being used in their Umbraco website.
+
+If you would like to disable this feature, you can set the value of this setting to `false`.
+
+## TrackRenderedFormsStorageMethod
+
+Forms tracks the forms rendered on a page in order that the associated scripts can be placed in a different location within the HTML. Usually this is used to [render the scripts](../rendering-scripts.md)) at the bottom of the page.
+
+By default, `TempData` is used as the storage mechanism for this tracking.
+
+This can cause some issues when applying a Content Delivery Network (CDN) to your website, and as such an alternative is available using `HttpContext.Items`.
+
+To switch to this storage mechanism change the value of this setting from the default of `TempData` to `HttpContextItems`.
+
+We expect `HttpContextItems` to be the default option from Forms 14 onwards.
+
## Security configuration
### DisallowedFileUploadExtensions
@@ -457,9 +480,20 @@ This setting defines the domain from which the client-side assets for using the
Valid options are `www.google.com` (the default) or `www.recaptcha.net`. You may want to use the latter for control of which domains are setting cookies on your site. [Read more at the reCAPTCHA documentation](https://developers.google.com/recaptcha/docs/faq#does-recaptcha-use-cookies).
-
### Rich text field type configuration
#### DataTypeId
Sets the Data Type Guid to use to obtain the configuration for the rich text field type. If the setting is absent, the value of the default rich text Data Type created by Umbraco on a new install is used.
+
+### Title and description field type configuration
+
+#### AllowUnsafeHtmlRendering
+
+When using the "title and description" field type, editors can provide HTML in the "description" field and have that rendered on the website.
+
+As a tightened security measure, you can set this value to `false` which will ensure HTML is no longer rendered.
+
+As some installations may be relying on HTML rendering, to preserve backward compatible behavior the default value of this setting is `true`.
+
+We expect to make the default value of this option `false` from Forms 14 onwards.
\ No newline at end of file
diff --git a/10/umbraco-forms/developer/rendering-scripts.md b/10/umbraco-forms/developer/rendering-scripts.md
index c4d276ed9ac..daecb8ac8be 100644
--- a/10/umbraco-forms/developer/rendering-scripts.md
+++ b/10/umbraco-forms/developer/rendering-scripts.md
@@ -4,7 +4,11 @@ Forms output some JavaScript which is by default rendered right below the markup
In many cases, you might prefer rendering your scripts at the bottom of the page. For example, before the closing `