Skip to content

Commit ec0f615

Browse files
authored
Merge branch 'umbraco:main' into patch-1
2 parents e636238 + b47948f commit ec0f615

File tree

104 files changed

+1343
-1035
lines changed

Some content is hidden

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

104 files changed

+1343
-1035
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ An example of a HealthChecks settings can look something like this:
1919
],
2020
"Notification": {
2121
"Enabled": true,
22-
"FirstRunTime": "* 4 * * *",
22+
"FirstRunTime": "0 4 * * *",
2323
"Period": "1.00:00:00",
2424
"NotificationMethods": {
2525
"email": {

13/umbraco-deploy/release-notes.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ If you are upgrading to a new major version you can find the details about the b
1616

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

19+
### [13.4.3](https://github.com/umbraco/Umbraco.Deploy.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F13.4.3) (October 9th 2025)
20+
21+
* Fix granular permissions not cascading to children [#277](https://github.com/umbraco/Umbraco.Deploy.Issues/issues/277)
22+
1923
### [13.4.2](https://github.com/umbraco/Umbraco.Deploy.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F13.4.2) (September 24th 2025)
2024

2125
* Migrate form picker grid editor as macro [#274](https://github.com/umbraco/Umbraco.Deploy.Issues/issues/274)

13/umbraco-forms/developer/configuration/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ Set to `true` to enabled the background task.
392392

393393
#### FirstRunTime
394394

395-
This will configure when the record deletion process will run for the first time. If the value is not configured the health checks will run after a short delay following the website start. The value is specified as a string in crontab format. For example, a value of `"* 4 * * *"` will first run the operation at 4 a.m.
395+
This setting configures when the record deletion process will run for the first time. If the value is not configured, the process will run 3 minutes after the website starts. The value is specified as a string in crontab format. For example, a value of `"0 4 * * *"` schedules the operation to start at 04:00.
396396

397397
#### Period
398398

15/umbraco-cms/SUMMARY.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -371,8 +371,6 @@
371371
* [UserService Notifications Example](reference/notifications/userservice-notifications.md)
372372
* [Sending Allowed Children Notification](reference/notifications/sendingallowedchildrennotifications.md)
373373
* [Umbraco Application Lifetime Notifications](reference/notifications/umbracoapplicationlifetime-notifications.md)
374-
* [EditorModel Notifications](reference/notifications/editormodel-notifications/README.md)
375-
* [Customizing the "Links" box](reference/notifications/editormodel-notifications/customizing-the-links-box.md)
376374
* [Hot vs. cold restarts](reference/notifications/hot-vs-cold-restarts.md)
377375
* [Inversion of Control / Dependency injection](reference/using-ioc.md)
378376
* [Management](reference/management/README.md)

15/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/rich-text-editor/style-menu.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Alternatively, while configuring an editor on a Document Type, you can drag **St
2424

2525
## Creating a Style Select Menu
2626

27-
In this article, you can find an example of how to set up a Style Select Menu using the package manifest file.
27+
In this article, you can find an example of how to set up a Style Select Menu using an [Umbraco Package Manifest](../../../../../customizing/umbraco-package.md) file.
2828

2929
{% code title="umbraco-package.json" %}
3030
```json

15/umbraco-cms/fundamentals/code/debugging/README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,10 @@ Umbraco includes the Mini Profiler project in its core (see [https://miniprofile
5252

5353
### Displaying the MiniProfiler
5454

55-
To display the profiler ensure that the configuration `Umbraco:CMS:Hosting:Debug` is set to `true` in the appSettings.json file. Thereafter you can add `?umbDebug=true` to the query string of any request.
56-
57-
Also, ensure your template calls `@Html.RenderProfiler()` as one of the last things.
55+
To display the profiler on the front end of your site:
56+
- Set `Umbraco:CMS:Hosting:Debug` to `true` in `appsettings.json`.
57+
- Sign in to the backoffice as a user who has access to the **Settings** section.
58+
- Add `?umbDebug=true` to the request query string.
5859

5960
<figure><img src="../../../../../10/umbraco-cms/fundamentals/code/debugging/images/v8-miniprofiler-view.png" alt=""><figcaption></figcaption></figure>
6061

15/umbraco-cms/reference/configuration/healthchecks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ An example of a HealthChecks settings can look something like this:
1919
],
2020
"Notification": {
2121
"Enabled": true,
22-
"FirstRunTime": "* 4 * * *",
22+
"FirstRunTime": "0 4 * * *",
2323
"Period": "1.00:00:00",
2424
"NotificationMethods": {
2525
"email": {

15/umbraco-cms/reference/notifications/README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -263,14 +263,6 @@ Below you can find a list of the most common UmbracoApplicationLifetime object n
263263

264264
Learn more about these under [Tree Change Notifications](https://apidocs.umbraco.com/v15/csharp/api/Umbraco.Cms.Core.Notifications.TreeChangeNotification-1.html) in the CMS API Docs.
265265

266-
### Editor Model Notifications
267-
268-
See [EditorModel Notifications](editormodel-notifications/) for a list of the EditorModel events.
269-
270-
{% hint style="info" %}
271-
Useful for manipulating the model before it is sent to an editor in the backoffice. It could be used to set a default value of a property on a new document.
272-
{% endhint %}
273-
274266
## Creating and publishing your own custom notifications
275267

276268
Umbraco uses notifications to allow people to hook into different workflow processes. This notification pattern is extensible, allowing you to create and publish custom notifications, and other people to observe and hook into your custom processes. This approach can be useful when creating Umbraco packages. For more information on how you create and publish your own notifications, see the [creating and publishing notifications](creating-and-publishing-notifications.md) article.

15/umbraco-cms/reference/notifications/editormodel-notifications/README.md

Lines changed: 0 additions & 168 deletions
This file was deleted.

15/umbraco-cms/reference/notifications/editormodel-notifications/customizing-the-links-box.md

Lines changed: 0 additions & 39 deletions
This file was deleted.

0 commit comments

Comments
 (0)