From 003130d6da43e31f381125eb1fe4b496474804c7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 5 Jun 2026 18:07:18 +0000 Subject: [PATCH 1/2] Bump TIKSN-Framework from 5.7.0 to 5.7.1 --- updated-dependencies: - dependency-name: TIKSN-Framework dependency-version: 5.7.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Directory.Packages.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Directory.Packages.props b/Directory.Packages.props index c9ddcf1..b3de04e 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -14,7 +14,7 @@ - + From 6dcec8c2428675113f2e47a3119aac9a4f5b2148 Mon Sep 17 00:00:00 2001 From: Tigran TIKSN Torosyan Date: Fri, 5 Jun 2026 13:15:36 -0500 Subject: [PATCH 2/2] Fix TIKSN Framework update issues --- Source/Licensing/SystemEntitlementsConverter.cs | 4 ++-- Tests/Licensing.Test/SystemEntitlementsConverterTests.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Licensing/SystemEntitlementsConverter.cs b/Source/Licensing/SystemEntitlementsConverter.cs index 04d84c6..f370c68 100644 --- a/Source/Licensing/SystemEntitlementsConverter.cs +++ b/Source/Licensing/SystemEntitlementsConverter.cs @@ -79,7 +79,7 @@ public Validation Convert( result.CountryCodes.AddRange( entitlements.Countries - .Select(x => x.TwoLetterISORegionName)); + .Select(x => x.PrincipalRegion.TwoLetterISORegionName)); } if (errors.Count > 0) @@ -180,7 +180,7 @@ private Option CreateCountry(string? name, Action addError) } private void ValidateCountryCode(CountryInfo? country, Action addError) - => this.ValidateCountryCode(country?.TwoLetterISORegionName, addError); + => this.ValidateCountryCode(country?.PrincipalRegion.TwoLetterISORegionName, addError); private void ValidateCountryCode(string? code, Action addError) { diff --git a/Tests/Licensing.Test/SystemEntitlementsConverterTests.cs b/Tests/Licensing.Test/SystemEntitlementsConverterTests.cs index 2c2e9e9..d943548 100644 --- a/Tests/Licensing.Test/SystemEntitlementsConverterTests.cs +++ b/Tests/Licensing.Test/SystemEntitlementsConverterTests.cs @@ -81,7 +81,7 @@ public void GivenCountryCode_WhenSystemEntitlementsConverted_Then(string country _ = validation.IfSuccess(x => { _ = Assert.Single(x.CountryCodes); - Assert.Equal(country.TwoLetterISORegionName, x.CountryCodes.Single()); + Assert.Equal(country.PrincipalRegion.TwoLetterISORegionName, x.CountryCodes.Single()); }); }