From 3b81c683bd517df5d4ec58294332f90f08f38ea3 Mon Sep 17 00:00:00 2001 From: Lee Oades Date: Tue, 24 Feb 2026 17:08:38 +0000 Subject: [PATCH 1/2] Downgrade MongoDB.Driver to 2.27.0. Produce custom EventFlow.MongoDB.Temp --- .../EventFlow.MongoDB.Tests.csproj | 5 +++-- Source/EventFlow.MongoDB/EventFlow.MongoDB.csproj | 10 +++++----- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/Source/EventFlow.MongoDB.Tests/EventFlow.MongoDB.Tests.csproj b/Source/EventFlow.MongoDB.Tests/EventFlow.MongoDB.Tests.csproj index 2ba987c7e..7ce87d5e4 100644 --- a/Source/EventFlow.MongoDB.Tests/EventFlow.MongoDB.Tests.csproj +++ b/Source/EventFlow.MongoDB.Tests/EventFlow.MongoDB.Tests.csproj @@ -2,12 +2,13 @@ netcoreapp3.1;net6.0;net8.0;net10.0 False + $(NoWarn);NU1605 - - + + diff --git a/Source/EventFlow.MongoDB/EventFlow.MongoDB.csproj b/Source/EventFlow.MongoDB/EventFlow.MongoDB.csproj index ed5506a9f..eba4419c3 100644 --- a/Source/EventFlow.MongoDB/EventFlow.MongoDB.csproj +++ b/Source/EventFlow.MongoDB/EventFlow.MongoDB.csproj @@ -1,18 +1,18 @@ netstandard2.1;netcoreapp3.1;net6.0;net8.0;net10.0 - EventFlow.MongoDB - EventFlow.MongoDB + EventFlow.MongoDB.Temp + EventFlow.MongoDB.Temp Jan Feyen, Warren Pieterse - MongoDB ReadStore and Snapshot Persistence for EventFlow + MongoDB ReadStore and Snapshot Persistence for EventFlow (Custom build with MongoDB.Driver 2.27.0) CQRS ES event sourcing MongoDB - UPDATED BY BUILD + Custom build with MongoDB.Driver 2.27.0 for internal use true - + From 10c401e4b9e664b08a7231d17291a217eac0a7b3 Mon Sep 17 00:00:00 2001 From: Lee Oades Date: Tue, 24 Feb 2026 17:19:44 +0000 Subject: [PATCH 2/2] Disable accidental publishing to nuget --- .github/workflows/pipeline.yaml | 5 +++-- .github/workflows/release.yaml | 10 ++++++++-- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pipeline.yaml b/.github/workflows/pipeline.yaml index d16218482..64304ef70 100644 --- a/.github/workflows/pipeline.yaml +++ b/.github/workflows/pipeline.yaml @@ -37,7 +37,8 @@ jobs: EVENTFLOW_MSSQL_SERVER: 127.0.0.1,1433 EVENTFLOW_MSSQL_USER: sa EVENTFLOW_MSSQL_PASS: Password12! - NUGET_APIKEY: ${{ secrets.nuget-api-key }} + # NUGET_APIKEY not used - publishing disabled for fork + # NUGET_APIKEY: ${{ secrets.nuget-api-key }} services: rabbitmq: @@ -110,7 +111,7 @@ jobs: bake run \ --convention=${{ inputs.bake-convention }} \ --build-version ${{ inputs.version }} \ - --destination="nuget>github,nuget,release>github" + --destination="local" - name: Upload NuGet packages uses: actions/upload-artifact@v4 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index f61d7f3da..3907c083a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -1,8 +1,13 @@ name: release +# DISABLED: This is a fork - do not publish to NuGet on: - push: - branches: [ release-v1 ] + workflow_dispatch: + inputs: + manual_trigger_only: + description: 'Manual trigger only - publishing disabled for fork' + required: true + default: 'disabled' permissions: contents: write @@ -10,6 +15,7 @@ permissions: jobs: pipeline: + if: false # Workflow disabled to prevent accidental NuGet publishing from fork uses: ./.github/workflows/pipeline.yaml with: bake-convention: 'Release'