Skip to content
This repository was archived by the owner on Sep 4, 2025. It is now read-only.

Commit 3d8ef83

Browse files
JasonBockBock, Jason
andauthored
Update AspNetCore and ProxyFactory to Alpha Versions (#119)
Co-authored-by: Bock, Jason <JasonBock1@rocketmortgage.com>
1 parent 10ee558 commit 3d8ef83

5 files changed

Lines changed: 22 additions & 9 deletions

File tree

RockLib.Configuration.AspNetCore/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 4.0.0-alpha.1 - 2025-01-29
9+
10+
#### Changed
11+
- Removed .NET 6 as a target framework
12+
- Updated RockLib.Configuration to 5.0.0
13+
814
## 3.0.1 - 2024-07-15
915

1016
#### Changed

RockLib.Configuration.AspNetCore/RockLib.Configuration.AspNetCore.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<PackageId>RockLib.Configuration.AspNetCore</PackageId>
4-
<PackageVersion>4.0.0</PackageVersion>
4+
<PackageVersion>4.0.0-alpha.1</PackageVersion>
55
<Description>Extension methods for RockLib.Configuration and ASP.NET Core.</Description>
66
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(PackageId).xml</DocumentationFile>
77
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
@@ -10,7 +10,7 @@
1010
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
1111
<PackageIcon>icon.png</PackageIcon>
1212
<PackageTags>RockLib Configuration AspNetCore Extensions</PackageTags>
13-
<Version>4.0.0</Version>
13+
<Version>4.0.0-alpha.1</Version>
1414
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
1515
<PublishRepositoryUrl>True</PublishRepositoryUrl>
1616
<EmbedUntrackedSources>True</EmbedUntrackedSources>
@@ -25,7 +25,7 @@
2525
</ItemGroup>
2626
<ItemGroup>
2727
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
28-
<PackageReference Include="RockLib.Configuration" Version="4.0.3" />
28+
<PackageReference Include="RockLib.Configuration" Version="5.0.0" />
2929
<PackageReference Include="Microsoft.AspNetCore.Hosting.Abstractions" Version="2.3.0" />
3030
</ItemGroup>
3131
</Project>

RockLib.Configuration.ProxyFactory/CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## 3.0.0-alpha.1 - 2024-02-14
8+
## 4.0.0-alpha.1 - 2025-01-29
9+
10+
#### Changed
11+
- Removed .NET 6 as a target framework
12+
- Updated RockLib.Configuration.ObjectFactory to 4.0.0
13+
14+
## 3.0.0 - 2024-02-14
915

1016
#### Changed
1117
- Final version of 3.0.0.

RockLib.Configuration.ProxyFactory/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
A factory that creates instances of property-only interfaces, defined at run-time, and populated with values defined in an instance of `IConfiguration`.
44

5-
Note: The 3.0.0 release of this library will be the final version with upgrades and changes. Bug fixes will continue to be released as needed. We strongly encourage developers to use standard .NET configuration libraries directly like `Microsoft.Extensions.Configuration` in place of `RockLib.Configuration`.
5+
> [!WARNING]
6+
> The 4.0.0 release of this library will be the final version with upgrades and changes. Bug fixes will continue to be released as needed. We strongly encourage developers to use standard .NET configuration libraries directly like `Microsoft.Extensions.Configuration` in place of `RockLib.Configuration`.
67
78
## Supported Targets
89

RockLib.Configuration.ProxyFactory/RockLib.Configuration.ProxyFactory.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<PackageId>RockLib.Configuration.ProxyFactory</PackageId>
4-
<PackageVersion>3.0.0</PackageVersion>
4+
<PackageVersion>4.0.0-alpha.1</PackageVersion>
55
<Description>Creates proxy objects from interfaces using IConfiguration and IConfigurationSection objects.</Description>
66
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(PackageId).xml</DocumentationFile>
77
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
88
<PackageReleaseNotes>A changelog is available at https://github.com/RockLib/RockLib.Configuration/blob/main/RockLib.Configuration.ProxyFactory/CHANGELOG.md.</PackageReleaseNotes>
99
<PackageProjectUrl>https://github.com/RockLib/RockLib.Configuration/tree/master/RockLib.Configuration.ProxyFactory</PackageProjectUrl>
1010
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
1111
<PackageIcon>icon.png</PackageIcon>
12-
<Copyright>Copyright 2023 (c) Rocket Mortgage. All rights reserved.</Copyright>
12+
<Copyright>Copyright 2025 (c) Rocket Mortgage. All rights reserved.</Copyright>
1313
<PackageTags>Configuration Factory Proxy IConfiguration IConfigurationSection</PackageTags>
14-
<Version>3.0.0</Version>
14+
<Version>4.0.0-alpha.1</Version>
1515
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
1616
<PublishRepositoryUrl>True</PublishRepositoryUrl>
1717
<EmbedUntrackedSources>True</EmbedUntrackedSources>
@@ -26,6 +26,6 @@
2626
</ItemGroup>
2727
<ItemGroup>
2828
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
29-
<PackageReference Include="RockLib.Configuration.ObjectFactory" Version="3.0.0" />
29+
<PackageReference Include="RockLib.Configuration.ObjectFactory" Version="4.0.0" />
3030
</ItemGroup>
3131
</Project>

0 commit comments

Comments
 (0)