Skip to content

Commit 33ebfef

Browse files
authored
Merge pull request #7084 from umbraco/misc-changes
Updates from v15
2 parents ca19d32 + 0fb2476 commit 33ebfef

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed
10.2 KB
Loading

16/umbraco-cms/fundamentals/code/umbraco-services.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -142,12 +142,9 @@ public static class UmbracoBuilderServiceExtensions
142142
{
143143
public static IUmbracoBuilder AddCustomServices(this IUmbracoBuilder builder)
144144
{
145-
public static IUmbracoBuilder AddCustomServices(this IUmbracoBuilder builder)
146-
{
147-
builder.Services.AddScoped<ICustomNewsArticleService, CustomNewsArticleService>();
145+
builder.Services.AddScoped<ICustomNewsArticleService, CustomNewsArticleService>();
148146

149-
return builder;
150-
}
147+
return builder;
151148
}
152149
}
153150
```

16/umbraco-cms/reference/umbraco-flavored-markdown.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ If you wish to develop your own custom UFM component, you can use the `ufmCompon
127127
The corresponding JavaScript/TypeScript API would contain a method to render the custom label/markup.
128128

129129
```js
130+
import { Tokens } from '@umbraco-cms/backoffice/external/marked';
130131
import { UmbUfmComponentBase } from '@umbraco-cms/backoffice/ufm';
131132

132133
export class MyCustomUfmComponentApi extends UmbUfmComponentBase {

16/umbraco-ui-builder/release-notes.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,16 @@ If you are upgrading to a new major version, check the breaking changes in the [
1818

1919
Below are the release notes for Umbraco UI Builder 15, detailing all changes in this version.
2020

21+
#### [**15.1.3**](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F15.1.3) **(May 5th 2025)**
22+
23+
* Fixed actions notifications [#143](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/143) and [#161](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/161)
24+
* Fixed default sorting for the `Name` column [#159](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/159)
25+
* Fixed collection list view pagination [#133](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/133) and [#142](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/142)
26+
* Fixed issues with the entity picker regarding the configuration of selected items - [#140](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/140), and the persisted value [#153](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/153)
27+
* Fixed filterable properties that were using an `Integer` [#154](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/154)
28+
* Update the filtering component to handle a persistence issue [#156](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/156)
29+
* Fixed localization issues for fieldsets, tabs, properties, and context apps [#132](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/132), [#135](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/135), and [#152](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/152)
30+
2131
#### [**15.1.2**](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F15.1.2) **(April 4th 2025)**
2232

2333
* Removed global registration of `UDI` converters [#144](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/144), [#136](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/136), and introduced new [Entity Identifier Converters](./collections/entity-identifier-converters.md).

0 commit comments

Comments
 (0)