Skip to content

Commit 8732d1c

Browse files
committed
Merge branch 'main' of https://github.com/umbraco/UmbracoDocs into custom-error-page
2 parents bb53d10 + 2c10b69 commit 8732d1c

File tree

49 files changed

+1359
-480
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+1359
-480
lines changed

10/umbraco-cms/reference/configuration/contentsettings.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The following snippet will give an overview of the keys and values in the conten
1313
"KeepAllVersionsNewerThanDays": 7,
1414
"KeepLatestVersionPerDayForDays": 90
1515
},
16-
"AllowEditInvariantFromNonDefault": true,
16+
"AllowEditInvariantFromNonDefault": false,
1717
"AllowedUploadFiles": [],
1818
"AllowedMediaHosts": [],
1919
"DisableDeleteWhenReferenced": false,
@@ -60,9 +60,9 @@ In the root level section, that is those without a seperate sub section like Ima
6060

6161
Invariant properties are properties on a multilingual site that are not varied by culture. This means that they share the same value across all languages added to the website.
6262

63-
When the setting is set to `false` the invariant properties that are shared between all languages can only be edited from the default language. This means you need access to the default language, in order to edit the property.
63+
When the setting is set to `false` (default) the invariant properties that are shared between all languages can only be edited from the default language. This means you need access to the default language, in order to edit the property.
6464

65-
When set to `true` (default) the invariant properties will need to be unlocked before they can be edited. The lock exists in order to make it clear that this change will affect more languages.
65+
When set to `true` the invariant properties will need to be unlocked before they can be edited. The lock exists in order to make it clear that this change will affect more languages.
6666

6767
### Allowed upload files
6868

13/umbraco-cms/.gitbook.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ redirects:
1212
extending/property-editors/build-a-block-editor: fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/README.md
1313
tutorials/creating-and-distributing-a-package: extending/packages/creating-a-package.md
1414
fundamentals/design/templates/razor-cheatsheet: fundamentals/design/templates/README.md
15+
reference/management-api: reference/dive-into-the-code.md

13/umbraco-cms/fundamentals/backoffice/variants.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,6 @@ Each Property Editor that does not allow variants (an Invariant Property) will b
6666
{% hint style="info" %}
6767
Whether or not the lock is enabled on the invariant properties depends on the `AllowEditInvariantFromNonDefault` setting in the `appsettings.json` file.
6868

69-
For projects created on Umbraco version 10.2 or later, the setting is `true`, by default. If the project is upgraded to version 10.2 or later, the setting will by default be `false`.
70-
7169
Learn more about the `AllowEditInvariantFromNonDefault` setting in the [Security Settings](../../reference/configuration/securitysettings.md) article.
7270
{% endhint %}
7371

13/umbraco-cms/reference/configuration/contentsettings.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The following snippet will give an overview of the keys and values in the conten
1717
"KeepAllVersionsNewerThanDays": 7,
1818
"KeepLatestVersionPerDayForDays": 90
1919
},
20-
"AllowEditInvariantFromNonDefault": true,
20+
"AllowEditInvariantFromNonDefault": false,
2121
"AllowedMediaHosts": [],
2222
"AllowedUploadedFileExtensions": [],
2323
"DisableDeleteWhenReferenced": false,
@@ -62,9 +62,9 @@ In the root level section, that is those without a separate sub section like Ima
6262

6363
Invariant properties are properties on a multilingual site that are not varied by culture. This means that they share the same value across all languages added to the website.
6464

65-
When the setting is set to `false` the invariant properties that are shared between all languages can only be edited from the default language. This means you need access to the default language, in order to edit the property.
65+
When the setting is set to `false` (default) the invariant properties that are shared between all languages can only be edited from the default language. This means you need access to the default language, in order to edit the property.
6666

67-
When set to `true` (default) the invariant properties will need to be unlocked before they can be edited. The lock exists in order to make it clear that this change will affect more languages.
67+
When set to `true` the invariant properties will need to be unlocked before they can be edited. The lock exists in order to make it clear that this change will affect more languages.
6868

6969
### Allowed upload file extensions
7070

13/umbraco-forms/upgrading/migration-ids.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ A unique **migration ID** is generated for each Umbraco Forms upgrade that requi
1616
| 44949e12-e4ef-42c0-949b-67286b946fe0 | 12.2.0/13.0.0 | No operation migration. |
1717
| 773ae769-00b7-4429-b7d5-de0fda0b4217 | 12.2.1/13.0.1 | Ensures the consistent key is used for the relation type between content and forms. |
1818
| 55d53d2e-f795-42fb-9e77-8edfc6eed4aa | 13.2.0 | Adds an AdditionalData column to the Records table. |
19-
| 1fff8b7b-48e7-450a-80b1-7df628508b27 | 13.3.0 | Adds delete entries permissions field to the security tables |
20-
| 7e170195-cab7-48ca-98c7-bbcbd5cfda95 | 13.4.0 | Adds created and updated by columns to the entity tables |
19+
| 1fff8b7b-48e7-450a-80b1-7df628508b27 | 13.3.0 | Adds delete entries permissions field to the security tables. |
20+
| 7e170195-cab7-48ca-98c7-bbcbd5cfda95 | 13.4.0 | Adds created and updated by columns to the entity tables. |

13/umbraco-workflow/getting-started/configuration.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ All Workflow configuration is optional and will fallback to defaults, if not set
3636
"ReminderNotificationPeriod": Timespan.FromHours(8),
3737
"ActionNotificationPeriod": Timespance.FromMinutes(5),
3838
"EnableTestLicense": false,
39-
"EmailTemplatePath": "~/Views/Partials/WorkflowEmails",
39+
"DisableVersionCheck": false,
4040
"SettingsCustomization": {...},
4141
"HistoryCleanupPolicy": {...}
4242
}
@@ -57,9 +57,9 @@ A `string` that represents the period between checking for and sending action no
5757

5858
A `bool` value used to enable or disable the test license. When true, and running Umbraco in development mode, all licensed features are available on local domains.
5959

60-
#### EmailTemplatePath
60+
#### DisableVersionCheck
6161

62-
A `string` value representing the path to the email notification templates.
62+
A `bool` value used to enable or disable the remote version check. When false, Workflow will not attempt to fetch the latest version information. When true, Workflow will send a network request to the Umbraco Marketplace API to retrieve the latest version. If a newer version exists, an update prompt is displayed in the Workflow section.
6363

6464
#### Colors
6565

13/umbraco-workflow/release-notes.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ Check the [Version Specific Upgrade Notes](upgrading/version-specific.md) articl
1717

1818
This section contains the release notes for Umbraco Workflow 13 including all changes for this version.
1919

20+
### 13.4.5 (https://github.com/umbraco/Umbraco.Workflow.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F13.4.5) (July 30 2025)
21+
* Ensures inherited group members are always populated [#111](https://github.com/umbraco/Umbraco.Workflow.Issues/issues/111)
22+
* Adds an option to disable the remote version check [#99](https://github.com/umbraco/Umbraco.Workflow.Issues/issues/99)
23+
* Corrects user attribution when completing a workflow. Previously the resulting publish was attributed to the user who actioned the last task in the workflow. The correct attribution is the user who started the workflow.
24+
* Ensures `DateHelper.getLocalDate` always receives a date string, not a Date object.
25+
2026
### 13.4.4 (https://github.com/umbraco/Umbraco.Workflow.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F13.4.4) (July 16 2025)
2127
* Additional formatting and content improvements in email task summaries [#94](https:/github.com/umbraco/Umbraco.Workflow.Issues/issues/94)
2228

14/umbraco-cms/.gitbook.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,4 +131,4 @@ redirects:
131131
customizing/property-editors/build-a-block-editor: fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/README.md
132132
tutorials/creating-and-distributing-a-package: extending/packages/creating-a-package.md
133133
fundamentals/design/templates/named-sections: fundamentals/design/templates/README.md
134-
134+
extending-backoffice/customize-backoffice: customizing/README.md

14/umbraco-cms/fundamentals/backoffice/variants.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -59,18 +59,6 @@ When you return to your content node you will notice two things:
5959

6060
![Allowing Variance on properties](images/Allowing-Variance-on-properties.png)
6161

62-
Each Property Editor that does not allow variants (an Invariant Property) will by default need to be unlocked in order to be edited. The lock exists to make it clear that this change will affect more languages. Since the value of the invariant properties are shared between all variants on the website.
63-
64-
![How an invariant property looks when it is locked](../../../../10/umbraco-cms/fundamentals/backoffice/images/invariant-property-locked.png)
65-
66-
{% hint style="info" %}
67-
Whether or not the lock is enabled on the invariant properties depends on the `AllowEditInvariantFromNonDefault` setting in the `appsettings.json` file.
68-
69-
For projects created on Umbraco version 10.2 or later, the setting is `true`, by default. If the project is upgraded to version 10.2 or later, the setting will by default be `false`.
70-
71-
Learn more about the `AllowEditInvariantFromNonDefault` setting in the [Security Settings](../../reference/configuration/securitysettings.md) article.
72-
{% endhint %}
73-
7462
To read about how you render variant content in Templates, check out the [rendering content section](../design/rendering-content.md).
7563

7664
## Test your language variants

14/umbraco-cms/reference/configuration/contentsettings.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The following snippet will give an overview of the keys and values in the conten
1717
"KeepAllVersionsNewerThanDays": 7,
1818
"KeepLatestVersionPerDayForDays": 90
1919
},
20-
"AllowEditInvariantFromNonDefault": true,
20+
"AllowEditInvariantFromNonDefault": false,
2121
"AllowedMediaHosts": [],
2222
"AllowedUploadedFileExtensions": [],
2323
"DisableDeleteWhenReferenced": false,
@@ -61,9 +61,9 @@ In the root level section, that is those without a separate sub section like Ima
6161

6262
Invariant properties are properties on a multilingual site that are not varied by culture. This means that they share the same value across all languages added to the website.
6363

64-
When the setting is set to `false` the invariant properties that are shared between all languages can only be edited from the default language. This means you need access to the default language, in order to edit the property.
64+
When the setting is set to `false` (default) the invariant properties that are shared between all languages can only be edited from the default language. This means you need access to the default language, in order to edit the property.
6565

66-
When set to `true` (default) the invariant properties will need to be unlocked before they can be edited. The lock exists in order to make it clear that this change will affect more languages.
66+
When set to `true` the invariant properties will need to be unlocked before they can be edited. The lock exists in order to make it clear that this change will affect more languages.
6767

6868
### Allowed upload file extensions
6969

0 commit comments

Comments
 (0)