Skip to content

Commit 93805eb

Browse files
committed
release notes 13.3 14.1
1 parent 6498e70 commit 93805eb

File tree

4 files changed

+43
-6
lines changed

4 files changed

+43
-6
lines changed

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

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,24 @@ 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,
3839
"EmailTemplatePath": "~/Views/Partials/WorkflowEmails",
39-
"SettingsCustomization”: {...}
40+
"SettingsCustomization": {...},
41+
"HistoryCleanupPolicy": {...}
4042
}
43+
}
4144
```
4245

4346
### Workflow Configuration
4447

4548
#### ReminderNotificationPeriod
4649

47-
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.
50+
A `string` 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. The default value is eight hours. The permitted value is a `TimeSpan`-parseable string, eg `0.00.01:00` for one minute.
51+
52+
#### ActionNotificationPeriod
53+
54+
A `string` representing 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, eg `0.00.01:00` for one minute.
4855

4956
#### EnableTestLicense
5057

@@ -98,6 +105,7 @@ All available `SettingsCustomization` options are illustrated below along with t
98105
"ConfigureApprovalThreshold": bool,
99106
"RejectionResetsApprovals": bool,
100107
"LockIfActive": bool,
108+
"ScheduledContentLock": 0|1|2 matching the ScheduledLockMode enum values,
101109
"MandatoryComments": bool,
102110
"AllowAttachments": bool,
103111
"AllowScheduling": bool,
@@ -123,9 +131,8 @@ All available `SettingsCustomization` options are illustrated below along with t
123131
}
124132
}
125133
```
126-
127134
{% hint style="info" %}
128-
These are complex types and are not recommended to have values set from Configuration. Instead, these values can be set from the BackOffice to hidden or read-only to prevent further changes.
135+
* These are complex types and are not recommended to have values set from Configuration. Instead, these values can be set from the BackOffice to hidden or read-only to prevent further changes.
129136
{% endhint %}
130137

131138
### General

13/umbraco-workflow/release-notes.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,13 @@ 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.3.0](https://github.com/umbraco/Umbraco.Workflow.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F13.3.0) (October 23 2024 )
21+
* Adds scheduled content locking feature
22+
* Adds support for content segments
23+
* Adds support for Arabic
24+
* Improves UI in workflow detail overlay
25+
* Adds email queue for thread-safe email notifications
26+
2027
### [13.2.1](https://github.com/umbraco/Umbraco.Workflow.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F13.2.1) (October 3 2024)
2128
* Ensure scheduling information is displayed in workflow history [#82](https://github.com/umbraco/Umbraco.Workflow.Issues/issues/82)
2229
* Fixes an issue where dates were not correctly localised for scheduled workflows [#81](https://github.com/umbraco/Umbraco.Workflow.Issues/issues/81)

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

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ 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,
3839
"EmailTemplatePath": "~/Views/Partials/WorkflowEmails",
3940
"DateFormats": {
@@ -51,7 +52,11 @@ All Workflow configuration is optional and will fallback to defaults, if not set
5152

5253
#### ReminderNotificationPeriod
5354

54-
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.
55+
A `string` 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. The default value is eight hours. The permitted value is a `TimeSpan`-parseable string, eg `0.00.01:00` for one minute.
56+
57+
#### ActionNotificationPeriod
58+
59+
A `string` representing 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, eg `0.00.01:00` for one minute.
5560

5661
#### EnableTestLicense
5762

@@ -109,6 +114,7 @@ All available `SettingsCustomization` options are illustrated below along with t
109114
"ConfigureApprovalThreshold": bool,
110115
"RejectionResetsApprovals": bool,
111116
"LockIfActive": bool,
117+
"ScheduledContentLock": 0|1|2 matching the ScheduledLockMode enum values,
112118
"MandatoryComments": bool,
113119
"AllowAttachments": bool,
114120
"AllowScheduling": bool,
@@ -136,7 +142,7 @@ All available `SettingsCustomization` options are illustrated below along with t
136142
```
137143

138144
{% hint style="info" %}
139-
These are complex types and are not recommended to have values set from Configuration. Instead, these values can be set from the BackOffice to hidden or read-only to prevent further changes.
145+
* These are complex types and are not recommended to have values set from Configuration. Instead, these values can be set from the BackOffice to hidden or read-only to prevent further changes.
140146
{% endhint %}
141147

142148
### General
@@ -173,6 +179,16 @@ When true, and ApprovalThreshold is Most or All, rejecting a task resets progres
173179

174180
When true, prevents editing content where the node is in an active workflow. When false, content can be edited at any stage of a workflow.
175181

182+
#### ScheduledContentLock (int)
183+
184+
Sets the scheduled content lock to one of None (0), Workflow (1), or All (2):
185+
186+
| Value | Name | Description |
187+
| ------------- | -------- | -------------------------------------------------|
188+
| 0 (_default_) | None | Scheduled content is not locked |
189+
| 1 | Workflow | Content scheduled via Workflow can not be edited |
190+
| 2 | All | All scheduled content can not be edited
191+
176192
#### MandatoryComments (bool)
177193

178194
When true (default), comments are required when approving a workflow task. When false, comments are optional when approving a workflow task. Comments are always required when submitting changes for approval.

14/umbraco-workflow/release-notes.md

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

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

20+
### [14.1.0](https://github.com/umbraco/Umbraco.Workflow.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F14.1.0) (October 23 2024 )
21+
* Adds scheduled content locking feature
22+
* Adds support for content segments
23+
* Adds support for Arabic
24+
* Improves UI in workflow detail overlay
25+
* Adds email queue for thread-safe email notifications
26+
2027
### [14.0.3](https://github.com/umbraco/Umbraco.Workflow.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F14.0.3) (October 3 2024)
2128
* Ensure scheduling information is displayed in workflow history [#82](https://github.com/umbraco/Umbraco.Workflow.Issues/issues/82)
2229
* Fixes an issue where dates were not correctly localised for scheduled workflows [#81](https://github.com/umbraco/Umbraco.Workflow.Issues/issues/81)

0 commit comments

Comments
 (0)