Skip to content

Commit d2eec97

Browse files
Merge branch 'main' into pr/6548
2 parents 25168ab + 2e137fe commit d2eec97

File tree

18 files changed

+100
-56
lines changed

18 files changed

+100
-56
lines changed

10/umbraco-commerce/key-concepts/bulk-actions.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ App_Plugins\MyPlugin\package.manifest
4040
5. Inject a bulk action inside the `umbraco-commerce-bulk-actions-config.js` by adding the following:
4141

4242
```csharp
43-
angular.module('umbracoCommerce')
44-
.config(['umbracoCommerceActionsProvider', function (umbracoCommerceActionsProvider) {
45-
umbracoCommerceActionsProvider.bulkActions.push(['myResource', function (myResource)
43+
angular.module('umbraco.commerce')
44+
.config(['ucActionsProvider', function (ucActionsProvider) {
45+
ucActionsProvider.bulkActions.push(['myResource', function (myResource)
4646
{
4747
return {
4848
name: 'My Action',
@@ -95,9 +95,9 @@ Only an `itemAction` or a `bulkAction` method can be defined for a bulk action c
9595
The following section display an example of a bulk action with dialog configuration step:
9696

9797
```csharp
98-
angular.module('umbracoCommerce')
99-
.config(['umbracoCommerceActionsProvider', function (umbracoCommerceActionsProvider) {
100-
umbracoCommerceActionsProvider.bulkActions.push(['$q', 'editorService', 'myResource', function ($q, editorService, myResource)
98+
angular.module('umbraco.commerce')
99+
.config(['ucActionsProvider', function (ucActionsProvider) {
100+
ucActionsProvider.bulkActions.push(['$q', 'editorService', 'myResource', function ($q, editorService, myResource)
101101
{
102102
return {
103103
name: 'My Action',

10/umbraco-forms/release-notes.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -346,6 +346,14 @@ This section contains the release notes for Umbraco Forms 8 and 10 including all
346346

347347
<summary>Version 8</summary>
348348

349+
[**8.13.16**](https://github.com/umbraco/Umbraco.Forms.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F8.13.16) **(October 15th 2024)**
350+
351+
* Added server-side validation of configured maximum length for short and long answer fields.
352+
353+
[**8.13.15**](https://github.com/umbraco/Umbraco.Forms.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F8.13.15) **(April 16th 2024)**
354+
355+
* Tightened path check used in middleware for restriction of access to form file uploads.
356+
349357
[**8.13.14**](https://github.com/umbraco/Umbraco.Forms.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F8.13.14) **(February 20th 2024)**
350358

351359
* Null checks on setting prevalue captions handling issues with upgraded form definitions [#1148](https://github.com/umbraco/Umbraco.Forms.Issues/issues/1148).

13/umbraco-cms/extending/package-manifest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ To associate the hosted JSON schema file to all package.manifest files you will
303303

304304
### Setting up JetBrains Rider 2019+
305305

306-
To associate the hosted JSON schema file to all package.manifest files you will need to perform the following inside of Visual Studio 2015.
306+
To associate the hosted JSON schema file to all package.manifest files you will need to perform the following inside of JetBrains Rider 2019+.
307307

308308
* File -> Settings
309309
* Browse down to Editor -> File Types -> JSON

13/umbraco-commerce/key-concepts/bulk-actions.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ App_Plugins\MyPlugin\package.manifest
4040
5. Inject a bulk action inside the `umbraco-commerce-bulk-actions-config.js` by adding the following:
4141

4242
```csharp
43-
angular.module('umbracoCommerce')
44-
.config(['umbracoCommerceActionsProvider', function (umbracoCommerceActionsProvider) {
45-
umbracoCommerceActionsProvider.bulkActions.push(['myResource', function (myResource)
43+
angular.module('umbraco.commerce')
44+
.config(['ucActionsProvider', function (ucActionsProvider) {
45+
ucActionsProvider.bulkActions.push(['myResource', function (myResource)
4646
{
4747
return {
4848
name: 'My Action',
@@ -95,9 +95,9 @@ Only an `itemAction` or a `bulkAction` method can be defined for a bulk action c
9595
The following section display an example of a bulk action with dialog configuration step:
9696

9797
```csharp
98-
angular.module('umbracoCommerce')
99-
.config(['umbracoCommerceActionsProvider', function (umbracoCommerceActionsProvider) {
100-
umbracoCommerceActionsProvider.bulkActions.push(['$q', 'editorService', 'myResource', function ($q, editorService, myResource)
98+
angular.module('umbraco.commerce')
99+
.config(['ucActionsProvider', function (ucActionsProvider) {
100+
ucActionsProvider.bulkActions.push(['$q', 'editorService', 'myResource', function ($q, editorService, myResource)
101101
{
102102
return {
103103
name: 'My Action',
293 KB
Loading
158 KB
Loading
171 KB
Loading
9.43 KB
Loading
984 KB
Loading
483 KB
Loading

0 commit comments

Comments
 (0)