From 0562760d64e1c61b044095afe2cc7f388f0bf072 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C3=A1vid=20J=C3=A1nos=20Csillik?= Date: Mon, 20 Jan 2025 14:35:23 +0100 Subject: [PATCH 1/8] Use .Net 9.0 and update packages --- Directory.Packages.props | 20 +++++++++---------- .../Funcky.EntityFrameworkCore.Test.csproj | 4 ++-- .../Funcky.EntityFrameworkCore.csproj | 6 +++--- global.json | 2 +- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Directory.Packages.props b/Directory.Packages.props index 08e5f65..7d13cc0 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -4,21 +4,21 @@ true - + - - - - + + + + - + - - - - + + + + diff --git a/Funcky.EntityFrameworkCore.Test/Funcky.EntityFrameworkCore.Test.csproj b/Funcky.EntityFrameworkCore.Test/Funcky.EntityFrameworkCore.Test.csproj index cd8feeb..c1b0202 100644 --- a/Funcky.EntityFrameworkCore.Test/Funcky.EntityFrameworkCore.Test.csproj +++ b/Funcky.EntityFrameworkCore.Test/Funcky.EntityFrameworkCore.Test.csproj @@ -1,7 +1,7 @@ - net8.0 - 11.0 + net9.0 + 13.0 enable enable false diff --git a/Funcky.EntityFrameworkCore/Funcky.EntityFrameworkCore.csproj b/Funcky.EntityFrameworkCore/Funcky.EntityFrameworkCore.csproj index adb1e6b..685e1f7 100644 --- a/Funcky.EntityFrameworkCore/Funcky.EntityFrameworkCore.csproj +++ b/Funcky.EntityFrameworkCore/Funcky.EntityFrameworkCore.csproj @@ -1,13 +1,13 @@ - net8.0 - 11.0 + net9.0 + 13.0 enable enable Interoperability between Funcky and EF Core Interoperability between Funcky and EF Core Functional Monad EFCore EntityFramework - 1.2.0 + 1.3.0 readme.md diff --git a/global.json b/global.json index d80ba68..0d837a8 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.401", + "version": "9.0.101", "rollForward": "latestFeature" } } From 394542de0a12b4b4996e1003cb0945fa16a11b0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C3=A1vid=20J=C3=A1nos=20Csillik?= Date: Mon, 20 Jan 2025 14:40:54 +0100 Subject: [PATCH 2/8] Update build.yml --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 06e9cf3..baff85a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - efcore: ['3.1.25', '5.0.15', '6.0.3', '7.0.0', '8.0.8'] + efcore: ['3.1.25', '5.0.15', '6.0.3', '7.0.0', '8.0.8', '9.0.1'] env: EntityFrameworkCoreVersion: ${{matrix.efcore}} steps: From aea21cab5332f412950f9197f6ed64a87fe148f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C3=A1vid=20J=C3=A1nos=20Csillik?= Date: Mon, 20 Jan 2025 14:44:48 +0100 Subject: [PATCH 3/8] Use actions/upload-artifact@v4 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index baff85a..91bc686 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -34,7 +34,7 @@ jobs: - uses: actions/setup-dotnet@v1 - name: Generate NuGet Packages run: dotnet pack --configuration Release --output nupkg - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 if: success() && github.ref == 'refs/heads/main' with: name: nupkg From 13d6d21b2ee568588f72079f9e8124bff926ddfa Mon Sep 17 00:00:00 2001 From: csillikd-messerli <68327616+csillikd-messerli@users.noreply.github.com> Date: Mon, 20 Jan 2025 15:37:42 +0100 Subject: [PATCH 4/8] Update Directory.Packages.props MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Tau Gärtli --- Directory.Packages.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Directory.Packages.props b/Directory.Packages.props index 7d13cc0..4453088 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -5,7 +5,7 @@ - + From 6c948812aae4484ef46d77c7962b773939c73f70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C3=A1vid=20J=C3=A1nos=20Csillik?= Date: Mon, 20 Jan 2025 15:44:36 +0100 Subject: [PATCH 5/8] Add .net8.0 also as target framework --- Directory.Build.props | 3 --- Directory.Packages.props | 3 +-- Funcky.EntityFrameworkCore/Funcky.EntityFrameworkCore.csproj | 2 +- 3 files changed, 2 insertions(+), 6 deletions(-) diff --git a/Directory.Build.props b/Directory.Build.props index d5f2adf..f7d55bc 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -19,7 +19,4 @@ true true - - - diff --git a/Directory.Packages.props b/Directory.Packages.props index 7d13cc0..07c6fbf 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -11,11 +11,10 @@ - - + diff --git a/Funcky.EntityFrameworkCore/Funcky.EntityFrameworkCore.csproj b/Funcky.EntityFrameworkCore/Funcky.EntityFrameworkCore.csproj index 685e1f7..26ff4bf 100644 --- a/Funcky.EntityFrameworkCore/Funcky.EntityFrameworkCore.csproj +++ b/Funcky.EntityFrameworkCore/Funcky.EntityFrameworkCore.csproj @@ -1,6 +1,6 @@ - net9.0 + net8.0;net9.0 13.0 enable enable From 96646728800938cada308f11c2faccc9611145d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C3=A1vid=20J=C3=A1nos=20Csillik?= Date: Mon, 20 Jan 2025 15:45:57 +0100 Subject: [PATCH 6/8] Add netstandard2.0 as target framework --- Funcky.EntityFrameworkCore/Funcky.EntityFrameworkCore.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Funcky.EntityFrameworkCore/Funcky.EntityFrameworkCore.csproj b/Funcky.EntityFrameworkCore/Funcky.EntityFrameworkCore.csproj index 26ff4bf..2dc1ddd 100644 --- a/Funcky.EntityFrameworkCore/Funcky.EntityFrameworkCore.csproj +++ b/Funcky.EntityFrameworkCore/Funcky.EntityFrameworkCore.csproj @@ -1,6 +1,6 @@ - net8.0;net9.0 + netstandard2.0;net8.0;net9.0 13.0 enable enable From e503ad85382bc397908aa43d1b8faa1f12bc4bd2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C3=A1vid=20J=C3=A1nos=20Csillik?= Date: Mon, 20 Jan 2025 15:49:31 +0100 Subject: [PATCH 7/8] Add net7.0 as target framework --- Funcky.EntityFrameworkCore/Funcky.EntityFrameworkCore.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Funcky.EntityFrameworkCore/Funcky.EntityFrameworkCore.csproj b/Funcky.EntityFrameworkCore/Funcky.EntityFrameworkCore.csproj index 2dc1ddd..436afe7 100644 --- a/Funcky.EntityFrameworkCore/Funcky.EntityFrameworkCore.csproj +++ b/Funcky.EntityFrameworkCore/Funcky.EntityFrameworkCore.csproj @@ -1,6 +1,6 @@ - netstandard2.0;net8.0;net9.0 + netstandard2.0;net7.0;net8.0;net9.0 13.0 enable enable From 18a38d85b37b4326190de3644db80fa1188c0908 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C3=A1vid=20J=C3=A1nos=20Csillik?= Date: Mon, 20 Jan 2025 15:54:26 +0100 Subject: [PATCH 8/8] Update changelog --- changelog.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/changelog.md b/changelog.md index 639ca8b..99026c6 100644 --- a/changelog.md +++ b/changelog.md @@ -1,4 +1,8 @@ # Changelog + +## 1.3.0 +* Add support for Entity Framework Core 8.0 and 9.0. + ## 1.1.0 * Add support for Entity Framework Core 7.0.