Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions 13/umbraco-workflow/getting-started/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -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": {...}
}
Expand All @@ -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

Expand Down
6 changes: 6 additions & 0 deletions 13/umbraco-workflow/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
11 changes: 8 additions & 3 deletions 15/umbraco-workflow/getting-started/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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

Expand Down
6 changes: 6 additions & 0 deletions 15/umbraco-workflow/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 7 additions & 3 deletions 16/umbraco-workflow/getting-started/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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

Expand Down
7 changes: 7 additions & 0 deletions 16/umbraco-workflow/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down