Skip to content

Commit 6600d76

Browse files
Release 2025-02-20 (#200)
* release_2025-02-20 * Updated changelog * Fix test warning --------- Co-authored-by: Norm Johanson <[email protected]>
1 parent 6acd0f4 commit 6600d76

File tree

5 files changed

+18
-24
lines changed

5 files changed

+18
-24
lines changed

.autover/autover.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"Projects": [
3-
{
4-
"Name": "Amazon.Extensions.Configuration.SystemsManager",
5-
"Path": "src/Amazon.Extensions.Configuration.SystemsManager/Amazon.Extensions.Configuration.SystemsManager.csproj"
6-
}
7-
],
8-
"UseCommitsForChangelog": false,
9-
"DefaultIncrementType": "Patch",
10-
"ChangeFilesDetermineIncrementType": true
2+
"Projects": [
3+
{
4+
"Name": "Amazon.Extensions.Configuration.SystemsManager",
5+
"Path": "src/Amazon.Extensions.Configuration.SystemsManager/Amazon.Extensions.Configuration.SystemsManager.csproj"
6+
}
7+
],
8+
"UseCommitsForChangelog": false,
9+
"DefaultIncrementType": "Patch",
10+
"ChangeFilesDetermineIncrementType": true
1111
}

.autover/changes/44bf0928-edf9-4888-aebb-196b6364ffa8.json

Lines changed: 0 additions & 11 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
## Release 2024-10-15
1+
## Release 2025-02-20
2+
3+
### Amazon.Extensions.Configuration.SystemsManager (6.3.0)
4+
* Add opt-in JsonOrStringParameterProcessor processor supporting parameters being either strings or JSON
5+
6+
## Release 2024-10-15
27

38
### Amazon.Extensions.Configuration.SystemsManager (6.2.2)
49
* Update System.Text.Json for .NET Standard 2.0 target to version 8.0.5.

src/Amazon.Extensions.Configuration.SystemsManager/Amazon.Extensions.Configuration.SystemsManager.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<!-- Included netstandard2.0 support for a .NET Framework use-case, see: https://github.com/aws/aws-dotnet-extensions-configuration/pull/150 -->
55
<TargetFrameworks>netstandard2.0;netcoreapp3.1;net6.0;net8.0</TargetFrameworks>
66
<AssemblyName>Amazon.Extensions.Configuration.SystemsManager</AssemblyName>
77
<RootNamespace>Amazon.Extensions.Configuration.SystemsManager</RootNamespace>
88
<OutputType>Library</OutputType>
9-
<Version>6.2.2</Version>
9+
<Version>6.3.0</Version>
1010
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1111
<PackageId>Amazon.Extensions.Configuration.SystemsManager</PackageId>
1212
<Title>.NET Configuration Extensions for AWS Systems Manager</Title>

test/Amazon.Extensions.Configuration.SystemsManager.Tests/JsonOrStringParameterProcessorTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public void ProcessParametersFallBackOnString()
6060
};
6161
var result = _parameterProcessor.ProcessParameters(parameters, "/test");
6262

63-
Assert.Equal(1, result.Count);
63+
Assert.Single(result);
6464
Assert.True(result.ContainsKey("stringParam"));
6565
Assert.Equal("some string", result["stringParam"]);
6666
}

0 commit comments

Comments
 (0)