From 0546f16b1718cfa1f363aec7a70fac4cb3f6df94 Mon Sep 17 00:00:00 2001 From: Lars Nielsen Date: Fri, 27 Dec 2024 09:50:01 +0100 Subject: [PATCH 1/2] Upgrade .github references to v14 --- .github/workflows/app-common-bundle-publish.yml | 16 ++++++++-------- .github/workflows/ci-orchestrator.yml | 2 +- .github/workflows/databricks-bundle-publish.yml | 12 ++++++------ .github/workflows/featuremanagement-ci.yml | 6 +++--- .../json-serialization-bundle-publish.yml | 10 +++++----- .github/workflows/logging-bundle-publish.yml | 12 ++++++------ .github/workflows/messaging-bundle-publish.yml | 10 +++++----- .github/workflows/outbox-bundle-publish.yml | 12 ++++++------ .github/workflows/testcommon-bundle-publish.yml | 14 +++++++------- .../App/documents/release-notes/release-notes.md | 5 +++++ .../Common.Abstractions.csproj | 2 +- source/App/source/Common/Common.csproj | 2 +- source/App/source/FunctionApp/FunctionApp.csproj | 2 +- source/App/source/WebApp/WebApp.csproj | 2 +- .../documents/release-notes/release-notes.md | 5 +++++ source/Databricks/source/Jobs/Jobs.csproj | 2 +- .../SqlStatementExecution.csproj | 2 +- .../JsonSerialization/documents/release-notes.md | 5 +++++ .../JsonSerialization/JsonSerialization.csproj | 2 +- .../documents/release-notes/release-notes.md | 5 +++++ source/Logging/source/Logging/Logging.csproj | 2 +- .../LoggingMiddleware/LoggingMiddleware.csproj | 2 +- .../documents/release-notes/release-notes.md | 5 +++++ .../source/Communication/Communication.csproj | 2 +- source/Outbox/documents/release-notes.md | 5 +++++ .../Outbox.Abstractions.csproj | 2 +- source/Outbox/source/Outbox/Outbox.csproj | 2 +- .../documents/release-notes/release-notes.md | 5 +++++ .../DurableFunctionApp.TestCommon.csproj | 2 +- .../FunctionApp.TestCommon.csproj | 2 +- .../source/TestCommon/TestCommon.csproj | 2 +- 31 files changed, 97 insertions(+), 62 deletions(-) diff --git a/.github/workflows/app-common-bundle-publish.yml b/.github/workflows/app-common-bundle-publish.yml index fd575b52e..2664a3164 100644 --- a/.github/workflows/app-common-bundle-publish.yml +++ b/.github/workflows/app-common-bundle-publish.yml @@ -63,16 +63,16 @@ jobs: steps: - name: Checkout repository - uses: Energinet-DataHub/.github/.github/actions/nuget-checkout-repository@v13 + uses: Energinet-DataHub/.github/.github/actions/nuget-checkout-repository@v14 - name: Setup dotnet and tools - uses: Energinet-DataHub/.github/.github/actions/dotnet-setup-and-tools@v13 + uses: Energinet-DataHub/.github/.github/actions/dotnet-setup-and-tools@v14 with: use_azure_functions_tools: "true" azure_functions_core_tools_version: 4.0.5455 - name: Build and test solution - uses: Energinet-DataHub/.github/.github/actions/dotnet-solution-build-and-test@v13 + uses: Energinet-DataHub/.github/.github/actions/dotnet-solution-build-and-test@v14 with: solution_file_path: ./source/App/App.sln azure_tenant_id: ${{ vars.integration_test_azure_tenant_id }} @@ -81,22 +81,22 @@ jobs: publish_test_report: "true" - name: Pack Common project - uses: Energinet-DataHub/.github/.github/actions/nuget-project-pack@v13 + uses: Energinet-DataHub/.github/.github/actions/nuget-project-pack@v14 with: project_path: ./source/App/source/Common/Common.csproj - name: Pack Common.Abstractions project - uses: Energinet-DataHub/.github/.github/actions/nuget-project-pack@v13 + uses: Energinet-DataHub/.github/.github/actions/nuget-project-pack@v14 with: project_path: ./source/App/source/Common.Abstractions/Common.Abstractions.csproj - name: Pack FunctionApp project - uses: Energinet-DataHub/.github/.github/actions/nuget-project-pack@v13 + uses: Energinet-DataHub/.github/.github/actions/nuget-project-pack@v14 with: project_path: ./source/App/source/FunctionApp/FunctionApp.csproj - name: Pack WebApp project - uses: Energinet-DataHub/.github/.github/actions/nuget-project-pack@v13 + uses: Energinet-DataHub/.github/.github/actions/nuget-project-pack@v14 with: project_path: ./source/App/source/WebApp/WebApp.csproj @@ -112,7 +112,7 @@ jobs: .github/workflows/app-common-bundle-publish.yml - name: Assert versions of NuGet packages and push them to NuGet.org - uses: Energinet-DataHub/.github/.github/actions/nuget-packages-assert-and-push@v13 + uses: Energinet-DataHub/.github/.github/actions/nuget-packages-assert-and-push@v14 with: push_packages: ${{ env.PUSH_PACKAGES }} content_changed: ${{ steps.changed-content.outputs.any_changed }} diff --git a/.github/workflows/ci-orchestrator.yml b/.github/workflows/ci-orchestrator.yml index 1dd3e5837..d35501b8d 100644 --- a/.github/workflows/ci-orchestrator.yml +++ b/.github/workflows/ci-orchestrator.yml @@ -32,7 +32,7 @@ jobs: # License and Markdown Check # ci_base: - uses: Energinet-DataHub/.github/.github/workflows/ci-base.yml@v13 + uses: Energinet-DataHub/.github/.github/workflows/ci-base.yml@v14 secrets: dh3serviceaccount_privatekey: ${{ secrets.dh3serviceaccount_privatekey }} diff --git a/.github/workflows/databricks-bundle-publish.yml b/.github/workflows/databricks-bundle-publish.yml index 919a57d45..06fa7030c 100644 --- a/.github/workflows/databricks-bundle-publish.yml +++ b/.github/workflows/databricks-bundle-publish.yml @@ -61,15 +61,15 @@ jobs: steps: - name: Checkout repository - uses: Energinet-DataHub/.github/.github/actions/nuget-checkout-repository@v13 + uses: Energinet-DataHub/.github/.github/actions/nuget-checkout-repository@v14 - name: Setup dotnet and tools - uses: Energinet-DataHub/.github/.github/actions/dotnet-setup-and-tools@v13 + uses: Energinet-DataHub/.github/.github/actions/dotnet-setup-and-tools@v14 with: use_azure_functions_tools: "true" - name: Build and test solution - uses: Energinet-DataHub/.github/.github/actions/dotnet-solution-build-and-test@v13 + uses: Energinet-DataHub/.github/.github/actions/dotnet-solution-build-and-test@v14 with: solution_file_path: ./source/Databricks/Databricks.sln azure_tenant_id: ${{ vars.integration_test_azure_tenant_id }} @@ -78,12 +78,12 @@ jobs: publish_test_report: "true" - name: Pack SQL Statement Execution project - uses: Energinet-DataHub/.github/.github/actions/nuget-project-pack@v13 + uses: Energinet-DataHub/.github/.github/actions/nuget-project-pack@v14 with: project_path: ./source/Databricks/source/SqlStatementExecution/SqlStatementExecution.csproj - name: Pack Jobs project - uses: Energinet-DataHub/.github/.github/actions/nuget-project-pack@v13 + uses: Energinet-DataHub/.github/.github/actions/nuget-project-pack@v14 with: project_path: ./source/Databricks/source/Jobs/Jobs.csproj @@ -97,7 +97,7 @@ jobs: .github/workflows/databricks-bundle-publish.yml - name: Assert versions of NuGet packages and push them to NuGet.org - uses: Energinet-DataHub/.github/.github/actions/nuget-packages-assert-and-push@v13 + uses: Energinet-DataHub/.github/.github/actions/nuget-packages-assert-and-push@v14 with: push_packages: ${{ env.PUSH_PACKAGES }} content_changed: ${{ steps.changed-content.outputs.any_changed }} diff --git a/.github/workflows/featuremanagement-ci.yml b/.github/workflows/featuremanagement-ci.yml index a6a3c1b55..f8232c60c 100644 --- a/.github/workflows/featuremanagement-ci.yml +++ b/.github/workflows/featuremanagement-ci.yml @@ -37,16 +37,16 @@ jobs: steps: - name: Checkout repository - uses: Energinet-DataHub/.github/.github/actions/nuget-checkout-repository@v13 + uses: Energinet-DataHub/.github/.github/actions/nuget-checkout-repository@v14 - name: Setup dotnet and tools - uses: Energinet-DataHub/.github/.github/actions/dotnet-setup-and-tools@v13 + uses: Energinet-DataHub/.github/.github/actions/dotnet-setup-and-tools@v14 with: use_azure_functions_tools: "true" azure_functions_core_tools_version: 4.0.5455 - name: Build and test solution - uses: Energinet-DataHub/.github/.github/actions/dotnet-solution-build-and-test@v13 + uses: Energinet-DataHub/.github/.github/actions/dotnet-solution-build-and-test@v14 with: solution_file_path: ./source/FeatureManagement/FeatureManagement.sln publish_test_report: "true" diff --git a/.github/workflows/json-serialization-bundle-publish.yml b/.github/workflows/json-serialization-bundle-publish.yml index 4e13cbef6..9f8d438c4 100644 --- a/.github/workflows/json-serialization-bundle-publish.yml +++ b/.github/workflows/json-serialization-bundle-publish.yml @@ -46,19 +46,19 @@ jobs: steps: - name: Checkout repository - uses: Energinet-DataHub/.github/.github/actions/nuget-checkout-repository@v13 + uses: Energinet-DataHub/.github/.github/actions/nuget-checkout-repository@v14 - name: Setup dotnet and tools - uses: Energinet-DataHub/.github/.github/actions/dotnet-setup-and-tools@v13 + uses: Energinet-DataHub/.github/.github/actions/dotnet-setup-and-tools@v14 - name: Build and test solution - uses: Energinet-DataHub/.github/.github/actions/dotnet-solution-build-and-test@v13 + uses: Energinet-DataHub/.github/.github/actions/dotnet-solution-build-and-test@v14 with: solution_file_path: ./source/JsonSerialization/JsonSerialization.sln publish_test_report: "true" - name: Pack JsonSerialization project - uses: Energinet-DataHub/.github/.github/actions/nuget-project-pack@v13 + uses: Energinet-DataHub/.github/.github/actions/nuget-project-pack@v14 with: project_path: ./source/JsonSerialization/source/JsonSerialization/JsonSerialization.csproj @@ -71,7 +71,7 @@ jobs: .github/workflows/json-serialization-bundle-publish.yml - name: Assert versions of NuGet packages and push them to NuGet.org - uses: Energinet-DataHub/.github/.github/actions/nuget-packages-assert-and-push@v13 + uses: Energinet-DataHub/.github/.github/actions/nuget-packages-assert-and-push@v14 with: push_packages: ${{ env.PUSH_PACKAGES }} content_changed: ${{ steps.changed-content.outputs.any_changed }} diff --git a/.github/workflows/logging-bundle-publish.yml b/.github/workflows/logging-bundle-publish.yml index e3773dd30..0bc7d70be 100644 --- a/.github/workflows/logging-bundle-publish.yml +++ b/.github/workflows/logging-bundle-publish.yml @@ -49,24 +49,24 @@ jobs: steps: - name: Checkout repository - uses: Energinet-DataHub/.github/.github/actions/nuget-checkout-repository@v13 + uses: Energinet-DataHub/.github/.github/actions/nuget-checkout-repository@v14 - name: Setup dotnet and tools - uses: Energinet-DataHub/.github/.github/actions/dotnet-setup-and-tools@v13 + uses: Energinet-DataHub/.github/.github/actions/dotnet-setup-and-tools@v14 - name: Build and test solution - uses: Energinet-DataHub/.github/.github/actions/dotnet-solution-build-and-test@v13 + uses: Energinet-DataHub/.github/.github/actions/dotnet-solution-build-and-test@v14 with: solution_file_path: ./source/Logging/Logging.sln publish_test_report: "true" - name: Pack Logging project - uses: Energinet-DataHub/.github/.github/actions/nuget-project-pack@v13 + uses: Energinet-DataHub/.github/.github/actions/nuget-project-pack@v14 with: project_path: ./source/Logging/source/Logging/Logging.csproj - name: Pack LoggingMiddleware project - uses: Energinet-DataHub/.github/.github/actions/nuget-project-pack@v13 + uses: Energinet-DataHub/.github/.github/actions/nuget-project-pack@v14 with: project_path: ./source/Logging/source/LoggingMiddleware/LoggingMiddleware.csproj @@ -80,7 +80,7 @@ jobs: .github/workflows/logging-bundle-publish.yml - name: Assert versions of NuGet packages and push them to NuGet.org - uses: Energinet-DataHub/.github/.github/actions/nuget-packages-assert-and-push@v13 + uses: Energinet-DataHub/.github/.github/actions/nuget-packages-assert-and-push@v14 with: push_packages: ${{ env.PUSH_PACKAGES }} content_changed: ${{ steps.changed-content.outputs.any_changed }} diff --git a/.github/workflows/messaging-bundle-publish.yml b/.github/workflows/messaging-bundle-publish.yml index 988cca8d5..b9911a59d 100644 --- a/.github/workflows/messaging-bundle-publish.yml +++ b/.github/workflows/messaging-bundle-publish.yml @@ -58,17 +58,17 @@ jobs: steps: - name: Checkout repository - uses: Energinet-DataHub/.github/.github/actions/nuget-checkout-repository@v13 + uses: Energinet-DataHub/.github/.github/actions/nuget-checkout-repository@v14 - name: Setup dotnet and tools - uses: Energinet-DataHub/.github/.github/actions/dotnet-setup-and-tools@v13 + uses: Energinet-DataHub/.github/.github/actions/dotnet-setup-and-tools@v14 with: use_azure_functions_tools: "true" azure_functions_core_tools_version: 4.0.5455 azurite_version: 3.33.0 - name: Build and test solution - uses: Energinet-DataHub/.github/.github/actions/dotnet-solution-build-and-test@v13 + uses: Energinet-DataHub/.github/.github/actions/dotnet-solution-build-and-test@v14 with: solution_file_path: ./source/Messaging/Messaging.sln azure_tenant_id: ${{ vars.integration_test_azure_tenant_id }} @@ -77,7 +77,7 @@ jobs: publish_test_report: "true" - name: Pack Communication project - uses: Energinet-DataHub/.github/.github/actions/nuget-project-pack@v13 + uses: Energinet-DataHub/.github/.github/actions/nuget-project-pack@v14 with: project_path: ./source/Messaging/source/Communication/Communication.csproj @@ -90,7 +90,7 @@ jobs: .github/workflows/messaging-bundle-publish.yml - name: Assert versions of NuGet packages and push them to NuGet.org - uses: Energinet-DataHub/.github/.github/actions/nuget-packages-assert-and-push@v13 + uses: Energinet-DataHub/.github/.github/actions/nuget-packages-assert-and-push@v14 with: push_packages: ${{ env.PUSH_PACKAGES }} content_changed: ${{ steps.changed-content.outputs.any_changed }} diff --git a/.github/workflows/outbox-bundle-publish.yml b/.github/workflows/outbox-bundle-publish.yml index d332d24cb..2fff7e181 100644 --- a/.github/workflows/outbox-bundle-publish.yml +++ b/.github/workflows/outbox-bundle-publish.yml @@ -50,24 +50,24 @@ jobs: steps: - name: Checkout repository - uses: Energinet-DataHub/.github/.github/actions/nuget-checkout-repository@v13 + uses: Energinet-DataHub/.github/.github/actions/nuget-checkout-repository@v14 - name: Setup dotnet and tools - uses: Energinet-DataHub/.github/.github/actions/dotnet-setup-and-tools@v13 + uses: Energinet-DataHub/.github/.github/actions/dotnet-setup-and-tools@v14 - name: Build and test solution - uses: Energinet-DataHub/.github/.github/actions/dotnet-solution-build-and-test@v13 + uses: Energinet-DataHub/.github/.github/actions/dotnet-solution-build-and-test@v14 with: solution_file_path: ./source/Outbox/Outbox.sln publish_test_report: "true" - name: Pack Outbox project - uses: Energinet-DataHub/.github/.github/actions/nuget-project-pack@v13 + uses: Energinet-DataHub/.github/.github/actions/nuget-project-pack@v14 with: project_path: ./source/Outbox/source/Outbox/Outbox.csproj - name: Pack Outbox.Abstractions project - uses: Energinet-DataHub/.github/.github/actions/nuget-project-pack@v13 + uses: Energinet-DataHub/.github/.github/actions/nuget-project-pack@v14 with: project_path: ./source/Outbox/source/Outbox.Abstractions/Outbox.Abstractions.csproj @@ -81,7 +81,7 @@ jobs: .github/workflows/outbox-bundle-publish.yml - name: Assert versions of NuGet packages and push them to NuGet.org - uses: Energinet-DataHub/.github/.github/actions/nuget-packages-assert-and-push@v13 + uses: Energinet-DataHub/.github/.github/actions/nuget-packages-assert-and-push@v14 with: push_packages: ${{ env.PUSH_PACKAGES }} content_changed: ${{ steps.changed-content.outputs.any_changed }} diff --git a/.github/workflows/testcommon-bundle-publish.yml b/.github/workflows/testcommon-bundle-publish.yml index 37acd8ecc..0471360de 100644 --- a/.github/workflows/testcommon-bundle-publish.yml +++ b/.github/workflows/testcommon-bundle-publish.yml @@ -59,16 +59,16 @@ jobs: steps: - name: Checkout repository - uses: Energinet-DataHub/.github/.github/actions/nuget-checkout-repository@v13 + uses: Energinet-DataHub/.github/.github/actions/nuget-checkout-repository@v14 - name: Setup dotnet and tools - uses: Energinet-DataHub/.github/.github/actions/dotnet-setup-and-tools@v13 + uses: Energinet-DataHub/.github/.github/actions/dotnet-setup-and-tools@v14 with: use_azure_functions_tools: "true" azurite_version: 3.33.0 - name: Build and test solution - uses: Energinet-DataHub/.github/.github/actions/dotnet-solution-build-and-test@v13 + uses: Energinet-DataHub/.github/.github/actions/dotnet-solution-build-and-test@v14 with: solution_file_path: ./source/TestCommon/TestCommon.sln azure_tenant_id: ${{ vars.integration_test_azure_tenant_id }} @@ -77,17 +77,17 @@ jobs: publish_test_report: "true" - name: Pack TestCommon project - uses: Energinet-DataHub/.github/.github/actions/nuget-project-pack@v13 + uses: Energinet-DataHub/.github/.github/actions/nuget-project-pack@v14 with: project_path: ./source/TestCommon/source/TestCommon/TestCommon.csproj - name: Pack FunctionApp.TestCommon project - uses: Energinet-DataHub/.github/.github/actions/nuget-project-pack@v13 + uses: Energinet-DataHub/.github/.github/actions/nuget-project-pack@v14 with: project_path: ./source/TestCommon/source/FunctionApp.TestCommon/FunctionApp.TestCommon.csproj - name: Pack DurableFunctionApp.TestCommon project - uses: Energinet-DataHub/.github/.github/actions/nuget-project-pack@v13 + uses: Energinet-DataHub/.github/.github/actions/nuget-project-pack@v14 with: project_path: ./source/TestCommon/source/DurableFunctionApp.TestCommon/DurableFunctionApp.TestCommon.csproj @@ -102,7 +102,7 @@ jobs: .github/workflows/testcommon-bundle-publish.yml - name: Assert versions of NuGet packages and push them to NuGet.org - uses: Energinet-DataHub/.github/.github/actions/nuget-packages-assert-and-push@v13 + uses: Energinet-DataHub/.github/.github/actions/nuget-packages-assert-and-push@v14 with: push_packages: ${{ env.PUSH_PACKAGES }} content_changed: ${{ steps.changed-content.outputs.any_changed }} diff --git a/source/App/documents/release-notes/release-notes.md b/source/App/documents/release-notes/release-notes.md index 793c5f7d1..7f0153a03 100644 --- a/source/App/documents/release-notes/release-notes.md +++ b/source/App/documents/release-notes/release-notes.md @@ -1,5 +1,10 @@ # App Release notes +## Version 14.0.2 + +- Update .github referencess to v14 +- No functional change. + ## Version 14.0.1 - Bump various NuGet packages to latest versions. diff --git a/source/App/source/Common.Abstractions/Common.Abstractions.csproj b/source/App/source/Common.Abstractions/Common.Abstractions.csproj index 2ad073cd1..147231093 100644 --- a/source/App/source/Common.Abstractions/Common.Abstractions.csproj +++ b/source/App/source/Common.Abstractions/Common.Abstractions.csproj @@ -23,7 +23,7 @@ limitations under the License. Energinet.DataHub.Core.App.Common.Abstractions - 14.0.1$(VersionSuffix) + 14.0.2$(VersionSuffix) Azure Function Common Abstractions Library Energinet-DataHub Energinet-DataHub diff --git a/source/App/source/Common/Common.csproj b/source/App/source/Common/Common.csproj index a36a05718..cb71c0b41 100644 --- a/source/App/source/Common/Common.csproj +++ b/source/App/source/Common/Common.csproj @@ -23,7 +23,7 @@ limitations under the License. Energinet.DataHub.Core.App.Common - 14.0.1$(VersionSuffix) + 14.0.2$(VersionSuffix) Azure Function Common Library Energinet-DataHub Energinet-DataHub diff --git a/source/App/source/FunctionApp/FunctionApp.csproj b/source/App/source/FunctionApp/FunctionApp.csproj index d6267064f..0070a633a 100644 --- a/source/App/source/FunctionApp/FunctionApp.csproj +++ b/source/App/source/FunctionApp/FunctionApp.csproj @@ -23,7 +23,7 @@ limitations under the License. Energinet.DataHub.Core.App.FunctionApp - 14.0.1$(VersionSuffix) + 14.0.2$(VersionSuffix) Azure Function App Library Energinet-DataHub Energinet-DataHub diff --git a/source/App/source/WebApp/WebApp.csproj b/source/App/source/WebApp/WebApp.csproj index 3240d02cb..e1e2c7df9 100644 --- a/source/App/source/WebApp/WebApp.csproj +++ b/source/App/source/WebApp/WebApp.csproj @@ -23,7 +23,7 @@ limitations under the License. Energinet.DataHub.Core.App.WebApp - 14.0.1$(VersionSuffix) + 14.0.2$(VersionSuffix) Azure Web App Library Energinet-DataHub Energinet-DataHub diff --git a/source/Databricks/documents/release-notes/release-notes.md b/source/Databricks/documents/release-notes/release-notes.md index 91bf222fa..171a41dad 100644 --- a/source/Databricks/documents/release-notes/release-notes.md +++ b/source/Databricks/documents/release-notes/release-notes.md @@ -1,5 +1,10 @@ # Databricks Release Notes +## Version 12.0.2 + +- Update .github referencess to v14 +- No functional change. + ## Version 12.0.1 - Bump various NuGet packages to latest versions. diff --git a/source/Databricks/source/Jobs/Jobs.csproj b/source/Databricks/source/Jobs/Jobs.csproj index 7e8882d52..75b965fb3 100644 --- a/source/Databricks/source/Jobs/Jobs.csproj +++ b/source/Databricks/source/Jobs/Jobs.csproj @@ -24,7 +24,7 @@ limitations under the License. Energinet.DataHub.Core.Databricks.Jobs - 12.0.1$(VersionSuffix) + 12.0.2$(VersionSuffix) Databricks Jobs Energinet-DataHub Energinet-DataHub diff --git a/source/Databricks/source/SqlStatementExecution/SqlStatementExecution.csproj b/source/Databricks/source/SqlStatementExecution/SqlStatementExecution.csproj index 99fcd17f8..6764f70c1 100644 --- a/source/Databricks/source/SqlStatementExecution/SqlStatementExecution.csproj +++ b/source/Databricks/source/SqlStatementExecution/SqlStatementExecution.csproj @@ -24,7 +24,7 @@ limitations under the License. Energinet.DataHub.Core.Databricks.SqlStatementExecution - 12.0.1$(VersionSuffix) + 12.0.2$(VersionSuffix) Databricks SQL Statement Execution Energinet-DataHub Energinet-DataHub diff --git a/source/JsonSerialization/documents/release-notes.md b/source/JsonSerialization/documents/release-notes.md index 84ac6c932..7a8887811 100644 --- a/source/JsonSerialization/documents/release-notes.md +++ b/source/JsonSerialization/documents/release-notes.md @@ -1,5 +1,10 @@ # JsonSerialization Release Notes +## Version 3.0.2 + +- Update .github referencess to v14 +- No functional change. + ## Version 3.0.1 - Bumped various NuGet packages to the latest versions. diff --git a/source/JsonSerialization/source/JsonSerialization/JsonSerialization.csproj b/source/JsonSerialization/source/JsonSerialization/JsonSerialization.csproj index e4508120c..900235a6a 100644 --- a/source/JsonSerialization/source/JsonSerialization/JsonSerialization.csproj +++ b/source/JsonSerialization/source/JsonSerialization/JsonSerialization.csproj @@ -23,7 +23,7 @@ limitations under the License. Energinet.DataHub.Core.JsonSerialization - 3.0.1$(VersionSuffix) + 3.0.2$(VersionSuffix) JsonSerialization library Energinet-DataHub Energinet-DataHub diff --git a/source/Logging/documents/release-notes/release-notes.md b/source/Logging/documents/release-notes/release-notes.md index c0610078d..027b5d7d0 100644 --- a/source/Logging/documents/release-notes/release-notes.md +++ b/source/Logging/documents/release-notes/release-notes.md @@ -1,5 +1,10 @@ # Logging Middleware for Request and Response Release notes +## Version 4.0.2 + +- Update .github referencess to v14 +- No functional change. + ## Version 4.0.1 - Bumped various NuGet packages to the latest versions. diff --git a/source/Logging/source/Logging/Logging.csproj b/source/Logging/source/Logging/Logging.csproj index 74884e28f..3f6b8469f 100644 --- a/source/Logging/source/Logging/Logging.csproj +++ b/source/Logging/source/Logging/Logging.csproj @@ -23,7 +23,7 @@ limitations under the License. Energinet.DataHub.Core.Logging - 4.0.1$(VersionSuffix) + 4.0.2$(VersionSuffix) Logging Energinet-DataHub Energinet-DataHub diff --git a/source/Logging/source/LoggingMiddleware/LoggingMiddleware.csproj b/source/Logging/source/LoggingMiddleware/LoggingMiddleware.csproj index 942af204c..d2e054d88 100644 --- a/source/Logging/source/LoggingMiddleware/LoggingMiddleware.csproj +++ b/source/Logging/source/LoggingMiddleware/LoggingMiddleware.csproj @@ -7,7 +7,7 @@ Energinet.DataHub.Core.Logging.LoggingMiddleware - 4.0.1$(VersionSuffix) + 4.0.2$(VersionSuffix) Logging Middleware Energinet-DataHub Energinet-DataHub diff --git a/source/Messaging/documents/release-notes/release-notes.md b/source/Messaging/documents/release-notes/release-notes.md index 6bda5598f..b7fbd7111 100644 --- a/source/Messaging/documents/release-notes/release-notes.md +++ b/source/Messaging/documents/release-notes/release-notes.md @@ -1,5 +1,10 @@ # Messaging Release notes +## Version 6.1.3 + +- Update .github referencess to v14 +- No functional change. + ## Version 6.1.2 - Bumped various NuGet packages to the latest versions. diff --git a/source/Messaging/source/Communication/Communication.csproj b/source/Messaging/source/Communication/Communication.csproj index b1576e7ca..55e568b45 100644 --- a/source/Messaging/source/Communication/Communication.csproj +++ b/source/Messaging/source/Communication/Communication.csproj @@ -29,7 +29,7 @@ Energinet.DataHub.Core.Messaging - 6.1.2$(VersionSuffix) + 6.1.3$(VersionSuffix) Messaging library Energinet-DataHub Energinet-DataHub diff --git a/source/Outbox/documents/release-notes.md b/source/Outbox/documents/release-notes.md index 875cbfd4b..6c69002a3 100644 --- a/source/Outbox/documents/release-notes.md +++ b/source/Outbox/documents/release-notes.md @@ -1,5 +1,10 @@ # Outbox Release Notes +## Version 1.0.2 + +- Update .github referencess to v14 +- No functional change. + ## Version 1.0.1 - Bumped various NuGet packages to the latest versions. diff --git a/source/Outbox/source/Outbox.Abstractions/Outbox.Abstractions.csproj b/source/Outbox/source/Outbox.Abstractions/Outbox.Abstractions.csproj index 3421a2740..f71176427 100644 --- a/source/Outbox/source/Outbox.Abstractions/Outbox.Abstractions.csproj +++ b/source/Outbox/source/Outbox.Abstractions/Outbox.Abstractions.csproj @@ -23,7 +23,7 @@ limitations under the License. Energinet.DataHub.Core.Outbox.Abstractions - 1.0.1$(VersionSuffix) + 1.0.2$(VersionSuffix) Abstractions for Outbox Library Energinet-DataHub Energinet-DataHub diff --git a/source/Outbox/source/Outbox/Outbox.csproj b/source/Outbox/source/Outbox/Outbox.csproj index 2fff6e8d4..eb3e61b40 100644 --- a/source/Outbox/source/Outbox/Outbox.csproj +++ b/source/Outbox/source/Outbox/Outbox.csproj @@ -27,7 +27,7 @@ limitations under the License. Energinet.DataHub.Core.Outbox - 1.0.1$(VersionSuffix) + 1.0.2$(VersionSuffix) Outbox Library Energinet-DataHub Energinet-DataHub diff --git a/source/TestCommon/documents/release-notes/release-notes.md b/source/TestCommon/documents/release-notes/release-notes.md index 458b6adc4..0bdac59b8 100644 --- a/source/TestCommon/documents/release-notes/release-notes.md +++ b/source/TestCommon/documents/release-notes/release-notes.md @@ -1,5 +1,10 @@ # TestCommon Release notes +## Version 7.1.2 + +- Update .github referencess to v14 +- No functional change. + ## Version 7.1.1 - Fix `DurableFunctionApp.TestCommon` method returning exception too early when waiting for an orchestration to start. diff --git a/source/TestCommon/source/DurableFunctionApp.TestCommon/DurableFunctionApp.TestCommon.csproj b/source/TestCommon/source/DurableFunctionApp.TestCommon/DurableFunctionApp.TestCommon.csproj index 5170c9172..c76b4aa3f 100644 --- a/source/TestCommon/source/DurableFunctionApp.TestCommon/DurableFunctionApp.TestCommon.csproj +++ b/source/TestCommon/source/DurableFunctionApp.TestCommon/DurableFunctionApp.TestCommon.csproj @@ -31,7 +31,7 @@ limitations under the License. Energinet.DataHub.Core.DurableFunctionApp.TestCommon - 7.1.1$(VersionSuffix) + 7.1.2$(VersionSuffix) DurableFunctionApp TestCommon library Energinet-DataHub Energinet-DataHub diff --git a/source/TestCommon/source/FunctionApp.TestCommon/FunctionApp.TestCommon.csproj b/source/TestCommon/source/FunctionApp.TestCommon/FunctionApp.TestCommon.csproj index 31f39e39d..14df2b57d 100644 --- a/source/TestCommon/source/FunctionApp.TestCommon/FunctionApp.TestCommon.csproj +++ b/source/TestCommon/source/FunctionApp.TestCommon/FunctionApp.TestCommon.csproj @@ -31,7 +31,7 @@ limitations under the License. Energinet.DataHub.Core.FunctionApp.TestCommon - 7.1.1$(VersionSuffix) + 7.1.2$(VersionSuffix) FunctionApp TestCommon library Energinet-DataHub Energinet-DataHub diff --git a/source/TestCommon/source/TestCommon/TestCommon.csproj b/source/TestCommon/source/TestCommon/TestCommon.csproj index 6720755ff..200c810b7 100644 --- a/source/TestCommon/source/TestCommon/TestCommon.csproj +++ b/source/TestCommon/source/TestCommon/TestCommon.csproj @@ -31,7 +31,7 @@ limitations under the License. Energinet.DataHub.Core.TestCommon - 7.1.1$(VersionSuffix) + 7.1.2$(VersionSuffix) TestCommon library Energinet-DataHub Energinet-DataHub From ab2a74f4f5d65f86a3302ff0f3b0ab61a0e1076d Mon Sep 17 00:00:00 2001 From: Lars Nielsen Date: Fri, 27 Dec 2024 09:54:59 +0100 Subject: [PATCH 2/2] Update global.json --- global.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.json b/global.json index e44d5b452..789bff3bd 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.204", + "version": "8.0.100", "rollForward": "latestFeature", "allowPrerelease": false }