Skip to content

Commit 79bb10a

Browse files
authored
release notes for WF 13.4.5, 15.1.7, 16.0.3 (#7272)
* release notes, adds configuration info for remote check * lint
1 parent 4cff5d5 commit 79bb10a

File tree

6 files changed

+37
-9
lines changed

6 files changed

+37
-9
lines changed

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

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

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,9 @@ All Workflow configuration is optional and will fallback to defaults, if not set
3434
{
3535
"Workflow": {
3636
"ReminderNotificationPeriod": Timespan.FromHours(8),
37+
"ActionNotificationPeriod": Timespance.FromMinutes(5),
3738
"EnableTestLicense": false,
38-
"EmailTemplatePath": "~/Views/Partials/WorkflowEmails",
39+
"DisableVersionCheck": false,
3940
"DateFormats": {
4041
"DateFormat": "MMMM d, yyyy h:mm tt",
4142
"DateFormatNoMinute": "MMMM d, yyy h tt",
@@ -53,13 +54,17 @@ All Workflow configuration is optional and will fallback to defaults, if not set
5354

5455
A `TimeSpan` representing the period between checking for, and sending, reminder notifications for overdue workflows. This setting is used in conjunction with `ReminderDelay` to determine if a workflow is overdue.
5556

57+
#### ActionNotificationPeriod
58+
59+
A `string` that represents the period between checking for and sending action notifications for active workflows. The default value is five minutes. The permitted value is a `TimeSpan`-parseable string, for example, `0.00.01:00` for one minute.
60+
5661
#### EnableTestLicense
5762

5863
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.
5964

60-
#### EmailTemplatePath
65+
#### DisableVersionCheck
6166

62-
A `string` value representing the path to the email notification templates.
67+
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.
6368

6469
#### DateFormats
6570

15/umbraco-workflow/release-notes.md

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

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

19+
### 15.1.7 (https://github.com/umbraco/Umbraco.Workflow.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F15.1.7) (July 30 2025)
20+
* Ensures inherited group members are always populated [#111](https://github.com/umbraco/Umbraco.Workflow.Issues/issues/111)
21+
* Adds an option to disable the remote version check [#99](https://github.com/umbraco/Umbraco.Workflow.Issues/issues/99)
22+
* 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.
23+
* Register the French localizations.
24+
1925
### [15.1.6](https://github.com/umbraco/Umbraco.Workflow.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F15.1.6) (July 17 2025)
2026
* Adds French localization (hat-tip Copilot/Claude)
2127
* Improves display of inherited approval group members

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

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ All Workflow configuration is optional and will fallback to defaults, if not set
3434
{
3535
"Workflow": {
3636
"ReminderNotificationPeriod": Timespan.FromHours(8),
37+
"ActionNotificationPeriod": Timespance.FromMinutes(5),
3738
"EnableTestLicense": false,
38-
"EmailTemplatePath": "~/Views/Partials/WorkflowEmails",
3939
"DateFormats": {
4040
"DateFormat": "MMMM d, yyyy h:mm tt",
4141
"DateFormatNoMinute": "MMMM d, yyy h tt",
@@ -53,13 +53,17 @@ All Workflow configuration is optional and will fallback to defaults, if not set
5353

5454
A `TimeSpan` representing the period between checking for, and sending, reminder notifications for overdue workflows. This setting is used in conjunction with `ReminderDelay` to determine if a workflow is overdue.
5555

56+
#### ActionNotificationPeriod
57+
58+
A `string` that represents the period between checking for and sending action notifications for active workflows. The default value is five minutes. The permitted value is a `TimeSpan`-parseable string, for example, `0.00.01:00` for one minute.
59+
5660
#### EnableTestLicense
5761

5862
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.
5963

60-
#### EmailTemplatePath
64+
#### DisableVersionCheck
6165

62-
A `string` value representing the path to the email notification templates.
66+
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.
6367

6468
#### DateFormats
6569

16/umbraco-workflow/release-notes.md

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

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

19+
### 16.0.3 (https://github.com/umbraco/Umbraco.Workflow.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F16.0.3) (July 30 2025)
20+
* Ensures inherited group members are always populated [#111](https://github.com/umbraco/Umbraco.Workflow.Issues/issues/111)
21+
* Adds an option to disable the remote version check [#99](https://github.com/umbraco/Umbraco.Workflow.Issues/issues/99)
22+
* 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.
23+
* Register the French localizations.
24+
* Improve alternate version property mapping when the source Document Type variation has changed since the version was created.
25+
1926
### [16.0.2](https://github.com/umbraco/Umbraco.Workflow.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F16.0.2) (July 17 2025)
2027
* Adds French localization (hat-tip Copilot/Claude)
2128
* Improves display of inherited approval group members

0 commit comments

Comments
 (0)