From 62edad17a1f6c2c170395431a93901bde492ea0b Mon Sep 17 00:00:00 2001 From: Andy Butland Date: Thu, 16 Oct 2025 20:50:59 +0200 Subject: [PATCH 1/2] Bumped version to 16.3.1. --- src/Umbraco.Web.UI.Client/package.json | 2 +- version.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/package.json b/src/Umbraco.Web.UI.Client/package.json index de785cc205..766ffa96ba 100644 --- a/src/Umbraco.Web.UI.Client/package.json +++ b/src/Umbraco.Web.UI.Client/package.json @@ -1,7 +1,7 @@ { "name": "@umbraco-cms/backoffice", "license": "MIT", - "version": "16.3.0", + "version": "16.3.1", "type": "module", "exports": { ".": null, diff --git a/version.json b/version.json index e71c12fcd9..922b55eca9 100644 --- a/version.json +++ b/version.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/main/src/NerdBank.GitVersioning/version.schema.json", - "version": "16.3.0", + "version": "16.3.1", "assemblyVersion": { "precision": "build" }, From 6458bb40f9eaf3a88318cc38268f3e522acf8f0c Mon Sep 17 00:00:00 2001 From: Ben White Date: Thu, 16 Oct 2025 20:06:10 +0100 Subject: [PATCH 2/2] Don't use non-generic ILogger as a fallback in BlockEditorPropertyValueEditor (#20532) Update logger service retrieval in BlockEditorPropertyValueEditor --- .../PropertyEditors/BlockEditorPropertyValueEditor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Infrastructure/PropertyEditors/BlockEditorPropertyValueEditor.cs b/src/Umbraco.Infrastructure/PropertyEditors/BlockEditorPropertyValueEditor.cs index 10c752088b..84299d6399 100644 --- a/src/Umbraco.Infrastructure/PropertyEditors/BlockEditorPropertyValueEditor.cs +++ b/src/Umbraco.Infrastructure/PropertyEditors/BlockEditorPropertyValueEditor.cs @@ -51,7 +51,7 @@ public abstract class BlockEditorPropertyValueEditor : BlockVal languageService, ioHelper, attribute, - StaticServiceProvider.Instance.GetRequiredService()) + StaticServiceProvider.Instance.GetRequiredService>>()) { }