Skip to content

Commit 2774b0d

Browse files
askptrenovate[bot]arttonoyan
authored
feat: add dotnet 9 support, rm dotnet 6 (#317)
## This PR - Updates all dotnet packages - Updates the Target Framework - Updates all GH actions - Removes net6.0 - Updates AutoFixture to a beta version ### Notes - .net6 is now EOF by Microsoft, so we should remove it. See https://dotnet.microsoft.com/en-us/platform/support/policy/dotnet-core for reference - I needed to use a beta version of AutoFixture since, with .net9, it is more strict in package vulnerabilities, and a library version used by AutoFixture has vulnerabilities. See https://learn.microsoft.com/en-us/nuget/release-notes/nuget-6.12 for extra Nuget information and AutoFixture/AutoFixture#1481 for AutoFixture --------- Signed-off-by: André Silva <[email protected]> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Artyom Tonoyan <[email protected]>
1 parent e14ab39 commit 2774b0d

File tree

17 files changed

+36
-36
lines changed

17 files changed

+36
-36
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ jobs:
3131
NUGET_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3232
with:
3333
dotnet-version: |
34-
6.0.x
3534
8.0.x
35+
9.0.x
3636
source-url: https://nuget.pkg.github.com/open-feature/index.json
3737

3838
- name: Restore
@@ -66,8 +66,8 @@ jobs:
6666
NUGET_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6767
with:
6868
dotnet-version: |
69-
6.0.x
7069
8.0.x
70+
9.0.x
7171
source-url: https://nuget.pkg.github.com/open-feature/index.json
7272

7373
- name: Restore

.github/workflows/code-coverage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ jobs:
2929
NUGET_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3030
with:
3131
dotnet-version: |
32-
6.0.x
3332
8.0.x
33+
9.0.x
3434
source-url: https://nuget.pkg.github.com/open-feature/index.json
3535

3636
- name: Run Test

.github/workflows/dotnet-format.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup .NET SDK
1818
uses: actions/setup-dotnet@v4
1919
with:
20-
dotnet-version: 8.0.x
20+
dotnet-version: 9.0.x
2121

2222
- name: dotnet format
2323
run: dotnet format --verify-no-changes OpenFeature.sln

.github/workflows/e2e.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424
NUGET_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2525
with:
2626
dotnet-version: |
27-
6.0.x
2827
8.0.x
28+
9.0.x
2929
source-url: https://nuget.pkg.github.com/open-feature/index.json
3030

3131
- name: Initialize Tests

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ jobs:
3636
NUGET_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3737
with:
3838
dotnet-version: |
39-
6.0.x
4039
8.0.x
40+
9.0.x
4141
source-url: https://nuget.pkg.github.com/open-feature/index.json
4242

4343
- name: Install dependencies

.vscode/launch.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"request": "launch",
1111
"preLaunchTask": "build",
1212
// If you have changed target frameworks, make sure to update the program path.
13-
"program": "${workspaceFolder}/test/OpenFeature.Tests/bin/Debug/net6.0/OpenFeature.Tests.dll",
13+
"program": "${workspaceFolder}/test/OpenFeature.Tests/bin/Debug/net9.0/OpenFeature.Tests.dll",
1414
"args": [],
1515
"cwd": "${workspaceFolder}/test/OpenFeature.Tests",
1616
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
@@ -23,4 +23,4 @@
2323
"request": "attach"
2424
}
2525
]
26-
}
26+
}

Directory.Packages.props

+15-15
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
<Project>
2-
2+
33
<PropertyGroup>
44
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
55
</PropertyGroup>
6-
6+
77
<ItemGroup Label="src">
8-
<PackageVersion Include="Microsoft.Bcl.AsyncInterfaces" Version="8.0.0" />
9-
<PackageVersion Include="Microsoft.Extensions.Hosting.Abstractions" Version="8.0.1" />
10-
<PackageVersion Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.2" />
11-
<PackageVersion Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.2" />
12-
<PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="8.0.1" />
13-
<PackageVersion Include="Microsoft.Extensions.Options" Version="8.0.2" />
14-
<PackageVersion Include="System.Collections.Immutable" Version="1.7.1" />
15-
<PackageVersion Include="System.Threading.Channels" Version="6.0.0" />
8+
<PackageVersion Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.0" />
9+
<PackageVersion Include="Microsoft.Extensions.Hosting.Abstractions" Version="9.0.0" />
10+
<PackageVersion Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.0" />
11+
<PackageVersion Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.0" />
12+
<PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="9.0.0" />
13+
<PackageVersion Include="Microsoft.Extensions.Options" Version="9.0.0" />
14+
<PackageVersion Include="System.Collections.Immutable" Version="9.0.0" />
15+
<PackageVersion Include="System.Threading.Channels" Version="9.0.0" />
1616
<PackageVersion Include="System.ValueTuple" Version="4.5.0" />
1717
</ItemGroup>
18-
18+
1919
<ItemGroup Label="test">
20-
<PackageVersion Include="AutoFixture" Version="4.18.1" />
20+
<PackageVersion Include="AutoFixture" Version="5.0.0-preview0011" />
2121
<PackageVersion Include="BenchmarkDotNet" Version="0.14.0" />
2222
<PackageVersion Include="coverlet.collector" Version="6.0.2" />
2323
<PackageVersion Include="coverlet.msbuild" Version="6.0.2" />
@@ -30,11 +30,11 @@
3030
<PackageVersion Include="SpecFlow.xUnit" Version="3.9.74" />
3131
<PackageVersion Include="xunit" Version="2.9.2" />
3232
<PackageVersion Include="xunit.runner.visualstudio" Version="2.8.2" />
33-
<PackageVersion Include="Microsoft.AspNetCore.TestHost" Version="8.0.11" />
33+
<PackageVersion Include="Microsoft.AspNetCore.TestHost" Version="9.0.0" />
3434
</ItemGroup>
35-
35+
3636
<ItemGroup Condition="'$(OS)' == 'Unix'">
3737
<PackageVersion Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" />
3838
</ItemGroup>
39-
39+
4040
</Project>

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@
2626

2727
### Requirements
2828

29-
- .NET 6+
30-
- .NET Core 6+
29+
- .NET 8+
3130
- .NET Framework 4.6.2+
3231

3332
Note that the packages will aim to support all current .NET versions. Refer to the currently supported versions [.NET](https://dotnet.microsoft.com/download/dotnet) and [.NET Framework](https://dotnet.microsoft.com/download/dotnet-framework) excluding .NET Framework 3.5

global.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"sdk": {
3-
"rollForward": "latestFeature",
4-
"version": "8.0.404"
3+
"rollForward": "latestMajor",
4+
"version": "9.0.100",
5+
"allowPrerelease": false
56
}
67
}

src/OpenFeature.DependencyInjection/OpenFeature.DependencyInjection.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;net6.0;net8.0;net462</TargetFrameworks>
4+
<TargetFrameworks>netstandard2.0;net8.0;net9.0;net462</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<RootNamespace>OpenFeature.DependencyInjection</RootNamespace>

src/OpenFeature.Hosting/OpenFeature.Hosting.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<RootNamespace>OpenFeature</RootNamespace>

src/OpenFeature/OpenFeature.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;net6.0;net8.0;net462</TargetFrameworks>
4+
<TargetFrameworks>net8.0;net9.0;netstandard2.0;net462</TargetFrameworks>
55
<RootNamespace>OpenFeature</RootNamespace>
66
<PackageReadmeFile>README.md</PackageReadmeFile>
77
</PropertyGroup>

test/OpenFeature.Benchmarks/OpenFeature.Benchmarks.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
55
<RootNamespace>OpenFeature.Benchmark</RootNamespace>
66
<OutputType>Exe</OutputType>
77
</PropertyGroup>

test/OpenFeature.DependencyInjection.Tests/OpenFeature.DependencyInjection.Tests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77

test/OpenFeature.E2ETests/OpenFeature.E2ETests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
55
<TargetFrameworks Condition="$(OS) == 'Windows_NT'">$(TargetFrameworks);net462</TargetFrameworks>
66
<RootNamespace>OpenFeature.E2ETests</RootNamespace>
77
</PropertyGroup>

test/OpenFeature.IntegrationTests/OpenFeature.IntegrationTests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net8.0</TargetFrameworks>
4+
<TargetFramework>net9.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77

test/OpenFeature.Tests/OpenFeature.Tests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
55
<TargetFrameworks Condition="$(OS) == 'Windows_NT'">$(TargetFrameworks);net462</TargetFrameworks>
66
<RootNamespace>OpenFeature.Tests</RootNamespace>
77
</PropertyGroup>

0 commit comments

Comments
 (0)