Skip to content

Commit b01cd24

Browse files
committed
Update Umbraco.UIBuilder release notes and searchable properties
1 parent fc700db commit b01cd24

File tree

6 files changed

+64
-0
lines changed

6 files changed

+64
-0
lines changed

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

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

1919
This section contains the release notes for Umbraco UI Builder 13 including all changes for this version.
2020

21+
#### [**13.1.6**](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F13.1.6) **(December 16th 2024)**
22+
23+
* Added previously validated license resolver, to validate a license if a validation process was already executed successfully in the past 7 days.
24+
* Fixed an issue caused by `where` clauses for filter expression and deleted property.
25+
* Allow entity properties to be searched based on pattern: `StartsWith` | `Contains` [#116](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/116)
26+
* Switch entity create/edit header to label view for read-only collections [#111](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/111)
27+
2128
#### [**13.1.5**](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F13.1.5) **(June 17th 2024)**
2229

2330
* Fixed an issue that did not allow a readonly field to be added multiple times to an editor [#105](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/105)

13/umbraco-ui-builder/searching/searchable-properties.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,14 @@ Adds the given property to the searchable properties collection.
2121
collectionConfig.AddSearchableProperty(p => p.FirstName);
2222
collectionConfig.AddSearchableProperty(p => p.Address.Street);
2323
````
24+
25+
## Search Expression Pattern
26+
27+
Up to version 13.1.6, the search was performed using the `StartsWith` method call.
28+
From 13.1.6 and up, search operations can be performed using the `Contains` method call.
29+
30+
````csharp
31+
// Example
32+
collectionConfig.AddSearchableProperty(p => p.FirstName); // will search for keywords that start with.
33+
collectionConfig.AddSearchableProperty(p => p.FirstName, )SearchExpressionPattern.Contains); // will search for keywords that are contained.
34+
````

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

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

1919
This section contains the release notes for Umbraco UI Builder 14 including all changes for this version.
2020

21+
#### [**14.0.1**](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F14.0.1) **(December 16th 2024)**
22+
23+
* Added previously validated license resolver, to validate a license if a validation process was already executed successfully in the past 7 days.
24+
* Fixed an issue caused by `where` clauses for filter expression and deleted property.
25+
* Allow entity properties to be searched based on pattern: `StartsWith` | `Contains` [#116](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/116)
26+
* Switch entity create/edit header to label view for read-only collections [#111](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/111)
27+
28+
#### [**14.0.0**](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F14.0.0) **(November 11th 2024)**
29+
30+
* Release major version of `Umbraco.UIBuilder 14`
31+
2132
#### [**14.0.0-alpha1**](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F14.0.0) **(September 2nd 2024)**
2233

2334
* Product migrated to support the new Web Component-based Umbraco

14/umbraco-ui-builder/searching/searchable-properties.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,14 @@ Adds the given property to the searchable properties collection.
2121
collectionConfig.AddSearchableProperty(p => p.FirstName);
2222
collectionConfig.AddSearchableProperty(p => p.Address.Street);
2323
````
24+
25+
## Search Expression Pattern
26+
27+
Up to version 14.0.1, the search was performed using the `StartsWith` method call.
28+
From 14.0.1 and up, search operations can be performed using the `Contains` method call.
29+
30+
````csharp
31+
// Example
32+
collectionConfig.AddSearchableProperty(p => p.FirstName); // will search for keywords that start with.
33+
collectionConfig.AddSearchableProperty(p => p.FirstName, )SearchExpressionPattern.Contains); // will search for keywords that are contained.
34+
````

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

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

1919
This section contains the release notes for Umbraco UI Builder 14 including all changes for this version.
2020

21+
#### [**15.0.1**](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F15.0.1) **(December 16th 2024)**
22+
23+
* Added previously validated license resolver, to validate a license if a validation process was already executed successfully in the past 7 days.
24+
* Fixed an issue caused by `where` clauses for filter expression and deleted property.
25+
* Allow entity properties to be searched based on pattern: `StartsWith` | `Contains` [#116](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/116)
26+
* Switch entity create/edit header to label view for read-only collections [#111](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/111)
27+
28+
#### [**15.0.0**](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F15.0.0) **(November 14th 2024)**
29+
30+
* Product migrated to support the new Web Component-based Umbraco
31+
32+
You can read more about the new Backoffice [in the Umbraco CMS documentation](https://docs.umbraco.com/umbraco-cms/extending/customize-the-editing-experience).
33+
2134
## Legacy release notes
2235

2336
You can find the release notes for **Konstrukt** in the [Change log file on GitHub](changelog-archive/changelog.md).

15/umbraco-ui-builder/searching/searchable-properties.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,14 @@ Adds the given property to the searchable properties collection.
2121
collectionConfig.AddSearchableProperty(p => p.FirstName);
2222
collectionConfig.AddSearchableProperty(p => p.Address.Street);
2323
````
24+
25+
## Search Expression Pattern
26+
27+
Up to version 15.0.1, the search was performed using the `StartsWith` method call.
28+
From 15.0.1 and up, search operations can be performed using the `Contains` method call.
29+
30+
````csharp
31+
// Example
32+
collectionConfig.AddSearchableProperty(p => p.FirstName); // will search for keywords that start with.
33+
collectionConfig.AddSearchableProperty(p => p.FirstName, )SearchExpressionPattern.Contains); // will search for keywords that are contained.
34+
````

0 commit comments

Comments
 (0)