diff --git a/13/umbraco-workflow/getting-started/configuration.md b/13/umbraco-workflow/getting-started/configuration.md index bd965943c09..3464e028455 100644 --- a/13/umbraco-workflow/getting-started/configuration.md +++ b/13/umbraco-workflow/getting-started/configuration.md @@ -36,7 +36,7 @@ All Workflow configuration is optional and will fallback to defaults, if not set "ReminderNotificationPeriod": Timespan.FromHours(8), "ActionNotificationPeriod": Timespance.FromMinutes(5), "EnableTestLicense": false, - "EmailTemplatePath": "~/Views/Partials/WorkflowEmails", + "DisableVersionCheck": false, "SettingsCustomization": {...}, "HistoryCleanupPolicy": {...} } @@ -57,9 +57,9 @@ A `string` that represents the period between checking for and sending action no 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. -#### EmailTemplatePath +#### DisableVersionCheck -A `string` value representing the path to the email notification templates. +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. #### Colors diff --git a/13/umbraco-workflow/release-notes.md b/13/umbraco-workflow/release-notes.md index 75e5041d55f..0225ea869cb 100644 --- a/13/umbraco-workflow/release-notes.md +++ b/13/umbraco-workflow/release-notes.md @@ -17,6 +17,12 @@ Check the [Version Specific Upgrade Notes](upgrading/version-specific.md) articl This section contains the release notes for Umbraco Workflow 13 including all changes for this version. +### 13.4.5 (https://github.com/umbraco/Umbraco.Workflow.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F13.4.5) (July 30 2025) +* Ensures inherited group members are always populated [#111](https://github.com/umbraco/Umbraco.Workflow.Issues/issues/111) +* Adds an option to disable the remote version check [#99](https://github.com/umbraco/Umbraco.Workflow.Issues/issues/99) +* 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. +* Ensures `DateHelper.getLocalDate` always receives a date string, not a Date object. + ### 13.4.4 (https://github.com/umbraco/Umbraco.Workflow.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F13.4.4) (July 16 2025) * Additional formatting and content improvements in email task summaries [#94](https:/github.com/umbraco/Umbraco.Workflow.Issues/issues/94) diff --git a/15/umbraco-workflow/getting-started/configuration.md b/15/umbraco-workflow/getting-started/configuration.md index ad849ee5aff..a164bb6ec37 100644 --- a/15/umbraco-workflow/getting-started/configuration.md +++ b/15/umbraco-workflow/getting-started/configuration.md @@ -34,8 +34,9 @@ All Workflow configuration is optional and will fallback to defaults, if not set { "Workflow": { "ReminderNotificationPeriod": Timespan.FromHours(8), + "ActionNotificationPeriod": Timespance.FromMinutes(5), "EnableTestLicense": false, - "EmailTemplatePath": "~/Views/Partials/WorkflowEmails", + "DisableVersionCheck": false, "DateFormats": { "DateFormat": "MMMM d, yyyy h:mm tt", "DateFormatNoMinute": "MMMM d, yyy h tt", @@ -53,13 +54,17 @@ All Workflow configuration is optional and will fallback to defaults, if not set 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. +#### ActionNotificationPeriod + +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. + #### EnableTestLicense 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. -#### EmailTemplatePath +#### DisableVersionCheck -A `string` value representing the path to the email notification templates. +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. #### DateFormats diff --git a/15/umbraco-workflow/release-notes.md b/15/umbraco-workflow/release-notes.md index 7d63e8b20b9..88f833586ea 100644 --- a/15/umbraco-workflow/release-notes.md +++ b/15/umbraco-workflow/release-notes.md @@ -16,6 +16,12 @@ Check the [Version Specific Upgrade Notes](upgrading/version-specific.md) articl This section contains the release notes for Umbraco Workflow 15 including all changes for this version. +### 15.1.7 (https://github.com/umbraco/Umbraco.Workflow.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F15.1.7) (July 30 2025) +* Ensures inherited group members are always populated [#111](https://github.com/umbraco/Umbraco.Workflow.Issues/issues/111) +* Adds an option to disable the remote version check [#99](https://github.com/umbraco/Umbraco.Workflow.Issues/issues/99) +* 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. +* Register the French localizations. + ### [15.1.6](https://github.com/umbraco/Umbraco.Workflow.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F15.1.6) (July 17 2025) * Adds French localization (hat-tip Copilot/Claude) * Improves display of inherited approval group members diff --git a/16/umbraco-workflow/getting-started/configuration.md b/16/umbraco-workflow/getting-started/configuration.md index ad849ee5aff..643be1cdb7c 100644 --- a/16/umbraco-workflow/getting-started/configuration.md +++ b/16/umbraco-workflow/getting-started/configuration.md @@ -34,8 +34,8 @@ All Workflow configuration is optional and will fallback to defaults, if not set { "Workflow": { "ReminderNotificationPeriod": Timespan.FromHours(8), + "ActionNotificationPeriod": Timespance.FromMinutes(5), "EnableTestLicense": false, - "EmailTemplatePath": "~/Views/Partials/WorkflowEmails", "DateFormats": { "DateFormat": "MMMM d, yyyy h:mm tt", "DateFormatNoMinute": "MMMM d, yyy h tt", @@ -53,13 +53,17 @@ All Workflow configuration is optional and will fallback to defaults, if not set 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. +#### ActionNotificationPeriod + +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. + #### EnableTestLicense 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. -#### EmailTemplatePath +#### DisableVersionCheck -A `string` value representing the path to the email notification templates. +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. #### DateFormats diff --git a/16/umbraco-workflow/release-notes.md b/16/umbraco-workflow/release-notes.md index d8d80042e52..8d3ab2de0ca 100644 --- a/16/umbraco-workflow/release-notes.md +++ b/16/umbraco-workflow/release-notes.md @@ -16,6 +16,13 @@ Check the [Version Specific Upgrade Notes](upgrading/version-specific.md) articl This section contains the release notes for Umbraco Workflow 16 including all changes for this version. +### 16.0.3 (https://github.com/umbraco/Umbraco.Workflow.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F16.0.3) (July 30 2025) +* Ensures inherited group members are always populated [#111](https://github.com/umbraco/Umbraco.Workflow.Issues/issues/111) +* Adds an option to disable the remote version check [#99](https://github.com/umbraco/Umbraco.Workflow.Issues/issues/99) +* 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. +* Register the French localizations. +* Improve alternate version property mapping when the source Document Type variation has changed since the version was created. + ### [16.0.2](https://github.com/umbraco/Umbraco.Workflow.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F16.0.2) (July 17 2025) * Adds French localization (hat-tip Copilot/Claude) * Improves display of inherited approval group members