diff --git a/10/umbraco-ui-builder/release-notes.md b/10/umbraco-ui-builder/release-notes.md index 9bda3cb0afa..e860d089ea5 100644 --- a/10/umbraco-ui-builder/release-notes.md +++ b/10/umbraco-ui-builder/release-notes.md @@ -17,6 +17,10 @@ If you are upgrading to a new major version, check the breaking changes in the [ This section contains the release notes for Umbraco UI Builder 10 including all changes for this version. +#### [**10.0.4**](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F10.0.4) **(March 18th 2024)** + +* Fixed an issue where the database is getting disposed in a UIBuilder repository, causing an error when Forms tries to save the form submission after the workflow is complete [Umbraco.Forms.Issues#1179](https://github.com/umbraco/Umbraco.Forms.Issues/issues/1179). + #### [**10.0.3**](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F10.0.3) **(February 20th 2024)** * Dependency version update for `Umbraco.Licenses` diff --git a/12/umbraco-ui-builder/release-notes.md b/12/umbraco-ui-builder/release-notes.md index 3133289ef98..a2706138cff 100644 --- a/12/umbraco-ui-builder/release-notes.md +++ b/12/umbraco-ui-builder/release-notes.md @@ -17,6 +17,10 @@ If you are upgrading to a new major version, check the breaking changes in the [ This section contains the release notes for Umbraco UI Builder 12 including all changes for this version. +#### [**12.0.5**](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F12.0.5) **(March 18th 2024)** + +* Fixed an issue where the database is getting disposed in a UIBuilder repository, causing an error when Forms tries to save the form submission after the workflow is complete [Umbraco.Forms.Issues#1179](https://github.com/umbraco/Umbraco.Forms.Issues/issues/1179). + #### [**12.0.4**](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F12.0.4) **(February 20th 2024)** * Dependency version update for `Umbraco.Licenses` diff --git a/13/umbraco-ui-builder/collections/the-basics.md b/13/umbraco-ui-builder/collections/the-basics.md index eb7a1ba61a3..72b6bf5d655 100644 --- a/13/umbraco-ui-builder/collections/the-basics.md +++ b/13/umbraco-ui-builder/collections/the-basics.md @@ -69,6 +69,15 @@ Sets which property of your entity to use as the name property. Property must be collectionConfig.SetNameProperty(p => p.Name); ```` +### **SetNameProperty(Lambda namePropertyExpression, string heading) : CollectionConfigBuilder<TEntityType>** + +Sets which property of your entity to use as the name property and what custom heading should the list view column heading be. Property must be of type `string`. By defining a property as the name property, its value will be used as the label for the entity in trees and list views. It will also be editable in the header region of the editor interface. The property will also automatically be added to the searchable properties collection and be used for the default sort property. + +````csharp +// Example +collectionConfig.SetNameProperty(p => p.Name, "Person Name"); +```` + ### **SetNameFormat(Lambda nameFormatExpression) : CollectionConfigBuilder<TEntityType>** Sets a format expression to use to dynamically create a label for the entity in things like trees and list views. By providing a name format it is assumed there is no single name property available on the entity. And as such none of the default behaviors described for the `SetNameProperty` method will apply. diff --git a/13/umbraco-ui-builder/release-notes.md b/13/umbraco-ui-builder/release-notes.md index 561df8aa3b7..3153071bf9f 100644 --- a/13/umbraco-ui-builder/release-notes.md +++ b/13/umbraco-ui-builder/release-notes.md @@ -18,6 +18,15 @@ If you are upgrading to a new major version, check the breaking changes in the [ This section contains the release notes for Umbraco UI Builder 13 including all changes for this version. +#### [**13.1.1**](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F13.1.1) **(March 18th 2024)** + +* Fixed an issue where the database is getting disposed in a UIBuilder repository, causing an error when Forms tries to save the form submission after the workflow is complete [Umbraco.Forms.Issues#1179](https://github.com/umbraco/Umbraco.Forms.Issues/issues/1179). +* Allow renaming the heading of the implicit `Name` column by calling the `SetNameProperty` method overload. + +You can read more about this in [the basics](collections/the-basics.md) article. +* Use `CsvHelper` library with the built in `ExportEntityAction`. +* Update `CsvHelper` version dependency. + #### [**13.1.0**](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F13.1.0) **(March 6th 2024)** * All updates listed under 13.1.0-rc1 and 13.1.0-rc2.