Skip to content

Commit f664828

Browse files
committed
Update dependencies, MongoDB image, and .gitignore rules
- Add artifacts/ and .tokensave to .gitignore - Bump NEventStore submodule to latest commit - Use mongo:8 image in CI docker-compose files - Upgrade test dependencies in MongoDB.Core.Tests.csproj - Update SourceLink.GitHub in MongoDB.Core.csproj
1 parent 50f5718 commit f664828

6 files changed

Lines changed: 10 additions & 19 deletions

File tree

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,4 +112,5 @@ Backup*/
112112
UpgradeLog*.XML
113113

114114
# Custom
115-
artifacts/
115+
artifacts/
116+
.tokensave

dependencies/NEventStore

docker/docker-compose.ci.linux.db.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
1-
# Root Docker Compose file to run the tests on the development machine using some pre-initialized databases
2-
# It must be used with powershell actions that mount the databases files.
3-
4-
version: '2.4' # 2.4 supports "platform", 3.x does not.
5-
61
services:
72
mongo:
83
platform: linux
9-
image: mongo #@sha256:52c3314bee611f91d37b9b1bc0cc2755b1388f2de5b396b441f3fe94bef6c56c
4+
image: mongo:8
105
ports:
116
- "50002:27017"
127
# volumes:

docker/docker-compose.ci.windows.db.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
1-
# Root Docker Compose file to run the tests on the development machine using some pre-initialized databases
2-
# It must be used with powershell actions that mount the databases files.
3-
4-
version: '2.4' # 2.4 supports "platform", 3.x does not.
5-
61
services:
72
mongo:
83
platform: windows
9-
image: mongo
4+
image: mongo:8
105
ports:
116
- "50002:27017"
127
# volumes:

src/NEventStore.Persistence.MongoDB.Tests/NEventStore.Persistence.MongoDB.Core.Tests.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
</ItemGroup>
2020

2121
<ItemGroup>
22-
<PackageReference Include="FluentAssertions" Version="8.9.0" />
22+
<PackageReference Include="FluentAssertions" Version="8.10.0" />
2323
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.5.1" />
2424
<PackageReference Include="MongoDB.Driver" Version="3.0.0" />
25-
<PackageReference Include="MSTest.TestAdapter" Version="4.2.2" />
26-
<PackageReference Include="MSTest.TestFramework" Version="4.2.2" />
27-
<PackageReference Include="NUnit" Version="4.6.0" />
25+
<PackageReference Include="MSTest.TestAdapter" Version="4.2.3" />
26+
<PackageReference Include="MSTest.TestFramework" Version="4.2.3" />
27+
<PackageReference Include="NUnit" Version="4.6.1" />
2828
<PackageReference Include="NUnit3TestAdapter" Version="6.2.0" />
2929
</ItemGroup>
3030

src/NEventStore.Persistence.MongoDB/NEventStore.Persistence.MongoDB.Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
<ItemGroup>
4343
<PackageReference Include="MongoDB.Driver" Version="3.0.0" />
44-
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.203">
44+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.300">
4545
<PrivateAssets>all</PrivateAssets>
4646
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
4747
</PackageReference>

0 commit comments

Comments
 (0)