Skip to content

Commit

Permalink
Merge branch 'release/10.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
AGiorgetti committed Oct 24, 2024
2 parents 9139dc0 + 5c28731 commit bc3b6cd
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
7 changes: 6 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
# NEventStore.Persistence.MongoDB

## 10.0.1

- Limit MongoDb allowed versions from 2.28.0 to anything less than 3.0.0 (which has many breaking changes to take care of).
- Added NuGet Symbol package generation.

## 10.0.0

- Updated MongoDB drivers to 2.28.0

### Breaking Changes

- MongoDB drivers are now strogly signed, binary compatibility with previous versions is now broken. If you update to this version of NEventStore.Persistence.MongoDB package
- MongoDB drivers are now strongly signed, binary compatibility with previous versions is now broken. If you update to this version of NEventStore.Persistence.MongoDB package
you are forced to use the same version of MongoDB drivers (or setup assembly binding redirects).

## 9.1.2
Expand Down
2 changes: 1 addition & 1 deletion build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ Write-Host "NuGet Packages creation"
#dotnet pack ./src/NEventStore.Persistence.MongoDB/NEventStore.Persistence.MongoDB.Core.csproj --no-build -c $configuration -o $artifacts -p:NuspecFile="" -p:NuspecProperties="pippo=$configuration;version=$nugetversion"

#Write-Host nuget pack ./src/.nuget/NEventStore.Persistence.MongoDB.nuspec -properties "version=$nugetversion;configuration=$configuration"
nuget pack ./src/.nuget/NEventStore.Persistence.MongoDB.nuspec -properties "version=$nugetversion;configuration=$configuration" -OutputDirectory $artifacts
nuget pack ./src/.nuget/NEventStore.Persistence.MongoDB.nuspec -properties "version=$nugetversion;configuration=$configuration" -OutputDirectory $artifacts -Symbols
4 changes: 2 additions & 2 deletions src/.nuget/NEventStore.Persistence.MongoDB.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@
<group targetFramework=".NETFramework4.6.2">
<dependency id="NEventStore" version="[9.1.1,10.0.0)" exclude="Build,Analyzers"/>
<dependency id="Microsoft.Extensions.Logging.Abstractions" version="7.0.1" exclude="Build,Analyzers"/>
<dependency id="MongoDB.Driver" version="2.28.0" exclude="Build,Analyzers"/>
<dependency id="MongoDB.Driver" version="[2.28.0,3.0.0)" exclude="Build,Analyzers"/>
</group>
<group targetFramework=".NETStandard2.0">
<dependency id="NEventStore" version="[9.1.1,10.0.0)" exclude="Build,Analyzers"/>
<dependency id="Microsoft.Extensions.Logging.Abstractions" version="7.0.1" exclude="Build,Analyzers"/>
<dependency id="MongoDB.Driver" version="2.28.0" exclude="Build,Analyzers"/>
<dependency id="MongoDB.Driver" version="[2.28.0,3.0.0)" exclude="Build,Analyzers"/>
</group>
</dependencies>
<frameworkAssemblies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<RootNamespace>NEventStore.Persistence.MongoDB</RootNamespace>
<AssemblyName>NEventStore.Persistence.MongoDB</AssemblyName>
<ApplicationIcon />
<OutputType>Library</OutputType>
<StartupObject />
</PropertyGroup>

<PropertyGroup>
Expand All @@ -19,6 +17,10 @@
<Description>Additional persistence provider for NEventStore using MongoDB.</Description>
<PackageTags>events, event sourcing, cqrs, storage, persistence, database</PackageTags>
<PackageReleaseNotes></PackageReleaseNotes>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<DebugSymbols>true</DebugSymbols>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>

<PropertyGroup>
Expand Down

0 comments on commit bc3b6cd

Please sign in to comment.