Skip to content

Commit 6a3dfd5

Browse files
authored
Publish version 6.1.0 (#276)
* Updated Nuget dependencies. * Updated Ardalis.Specification to version 6.1.0 * Updated EF6 package to 6.1.0 * Updated EF Core package to 6.1.0
1 parent e4445af commit 6a3dfd5

File tree

9 files changed

+55
-37
lines changed

9 files changed

+55
-37
lines changed

Specification.EntityFramework6/src/Ardalis.Specification.EntityFramework6/Ardalis.Specification.EntityFramework6.csproj

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,15 @@
1414
<Summary>EF6 plugin package to Ardalis.Specification containing EF6 evaluator and abstract repository.</Summary>
1515
<RepositoryUrl>https://github.com/ardalis/specification</RepositoryUrl>
1616
<PackageTags>spec;specification;repository;ddd;ef;ef6;entity framework</PackageTags>
17-
<Version>6.0.1</Version>
17+
<Version>6.1.0</Version>
1818
<PackageReleaseNotes>
19-
See README.md
19+
- Added `AddRangeAsync`. [PR 239](https://github.com/ardalis/Specification/pull/239)
20+
- Added dictionary as arbitrary state for specifications. [PR 248](https://github.com/ardalis/Specification/pull/248)
21+
- Added support for updating specifications. [PR 251](https://github.com/ardalis/Specification/pull/251)
22+
- Updated base specifications as non-abstract classes. [PR 252](https://github.com/ardalis/Specification/pull/252)
23+
- Update the infrastructure for single result specifications. [PR 272](https://github.com/ardalis/Specification/pull/272)
24+
- Added `UpdateRangeAsync`. [PR 272](https://github.com/ardalis/Specification/pull/272)
25+
- Add WithSpecification overload for specifications with Select. [PR 273](https://github.com/ardalis/Specification/pull/273)
2026
</PackageReleaseNotes>
2127
<AssemblyName>Ardalis.Specification.EntityFramework6</AssemblyName>
2228
<PackageIcon>icon.png</PackageIcon>

Specification.EntityFramework6/tests/Ardalis.Specification.EntityFramework6.IntegrationTests/Ardalis.Specification.EntityFramework6.IntegrationTests.csproj

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,20 @@
1515
</ItemGroup>
1616

1717
<ItemGroup>
18-
<PackageReference Include="altcover" Version="8.2.833" />
19-
<PackageReference Include="coverlet.msbuild" Version="3.1.0">
18+
<PackageReference Include="altcover" Version="8.2.837" />
19+
<PackageReference Include="coverlet.msbuild" Version="3.1.2">
2020
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
2121
<PrivateAssets>all</PrivateAssets>
2222
</PackageReference>
23-
<PackageReference Include="MartinCostello.SqlLocalDb" Version="3.1.0" />
24-
<PackageReference Include="ReportGenerator" Version="5.0.2" />
25-
<PackageReference Include="FluentAssertions" Version="6.3.0" />
23+
<PackageReference Include="MartinCostello.SqlLocalDb" Version="3.2.0" />
24+
<PackageReference Include="ReportGenerator" Version="5.1.9" />
25+
<PackageReference Include="FluentAssertions" Version="6.7.0" />
2626
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
2727
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
28-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
28+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" />
2929
<PackageReference Include="xunit.analyzers" Version="0.10.0" />
3030
<PackageReference Include="xunit" Version="2.4.1" />
31-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
31+
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
3232
<PrivateAssets>all</PrivateAssets>
3333
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3434
</PackageReference>

Specification.EntityFrameworkCore/src/Ardalis.Specification.EntityFrameworkCore/Ardalis.Specification.EntityFrameworkCore.csproj

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,15 @@
1212
<Summary>EF Core plugin package to Ardalis.Specification containing EF Core evaluator and abstract repository.</Summary>
1313
<RepositoryUrl>https://github.com/ardalis/specification</RepositoryUrl>
1414
<PackageTags>spec;specification;repository;ddd;ef;ef core;entity framework;entity framework core</PackageTags>
15-
<Version>6.0.1</Version>
15+
<Version>6.1.0</Version>
1616
<PackageReleaseNotes>
17-
See README.md
17+
- Added `AddRangeAsync`. [PR 239](https://github.com/ardalis/Specification/pull/239)
18+
- Added dictionary as arbitrary state for specifications. [PR 248](https://github.com/ardalis/Specification/pull/248)
19+
- Added support for updating specifications. [PR 251](https://github.com/ardalis/Specification/pull/251)
20+
- Updated base specifications as non-abstract classes. [PR 252](https://github.com/ardalis/Specification/pull/252)
21+
- Update the infrastructure for single result specifications. [PR 272](https://github.com/ardalis/Specification/pull/272)
22+
- Added `UpdateRangeAsync`. [PR 272](https://github.com/ardalis/Specification/pull/272)
23+
- Add WithSpecification overload for specifications with Select. [PR 273](https://github.com/ardalis/Specification/pull/273)
1824
</PackageReleaseNotes>
1925
<AssemblyName>Ardalis.Specification.EntityFrameworkCore</AssemblyName>
2026
<PackageIcon>icon.png</PackageIcon>
@@ -31,8 +37,8 @@
3137
</ItemGroup>
3238

3339
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
34-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.1" />
35-
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.1" />
40+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.6" />
41+
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.6" />
3642
</ItemGroup>
3743

3844
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.1'">

Specification.EntityFrameworkCore/tests/Ardalis.Specification.EntityFrameworkCore.IntegrationTests/Ardalis.Specification.EntityFrameworkCore.IntegrationTests.csproj

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,20 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="altcover" Version="8.2.833" />
12-
<PackageReference Include="coverlet.msbuild" Version="3.1.0">
11+
<PackageReference Include="altcover" Version="8.2.837" />
12+
<PackageReference Include="coverlet.msbuild" Version="3.1.2">
1313
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
1414
<PrivateAssets>all</PrivateAssets>
1515
</PackageReference>
16-
<PackageReference Include="MartinCostello.SqlLocalDb" Version="3.1.0" />
17-
<PackageReference Include="ReportGenerator" Version="5.0.2" />
18-
<PackageReference Include="FluentAssertions" Version="6.3.0" />
19-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.1" />
20-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.1" />
16+
<PackageReference Include="MartinCostello.SqlLocalDb" Version="3.2.0" />
17+
<PackageReference Include="ReportGenerator" Version="5.1.9" />
18+
<PackageReference Include="FluentAssertions" Version="6.7.0" />
19+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.6" />
20+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.6" />
2121
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="6.0.0" />
22-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
22+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" />
2323
<PackageReference Include="xunit" Version="2.4.1" />
24-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
24+
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
2525
<PrivateAssets>all</PrivateAssets>
2626
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2727
</PackageReference>

Specification/src/Ardalis.Specification/Ardalis.Specification.csproj

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,15 @@
1212
<Summary>A simple package with a base Specification class, for use in creating queries that work with Repository types.</Summary>
1313
<RepositoryUrl>https://github.com/ardalis/specification</RepositoryUrl>
1414
<PackageTags>spec;specification;repository;ddd</PackageTags>
15-
<Version>6.0.1</Version>
15+
<Version>6.1.0</Version>
1616
<PackageReleaseNotes>
17-
Fix XML Document Filename
17+
- Added `AddRangeAsync`. [PR 239](https://github.com/ardalis/Specification/pull/239)
18+
- Added dictionary as arbitrary state for specifications. [PR 248](https://github.com/ardalis/Specification/pull/248)
19+
- Added support for updating specifications. [PR 251](https://github.com/ardalis/Specification/pull/251)
20+
- Updated base specifications as non-abstract classes. [PR 252](https://github.com/ardalis/Specification/pull/252)
21+
- Update the infrastructure for single result specifications. [PR 272](https://github.com/ardalis/Specification/pull/272)
22+
- Added `UpdateRangeAsync`. [PR 272](https://github.com/ardalis/Specification/pull/272)
23+
- Add WithSpecification overload for specifications with Select. [PR 273](https://github.com/ardalis/Specification/pull/273)
1824
</PackageReleaseNotes>
1925
<AssemblyName>Ardalis.Specification</AssemblyName>
2026
<PackageIcon>icon.png</PackageIcon>

Specification/tests/Ardalis.Specification.UnitTests/Ardalis.Specification.UnitTests.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="coverlet.msbuild" Version="3.1.0">
11+
<PackageReference Include="coverlet.msbuild" Version="3.1.2">
1212
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
1313
<PrivateAssets>all</PrivateAssets>
1414
</PackageReference>
15-
<PackageReference Include="ReportGenerator" Version="5.0.2" />
16-
<PackageReference Include="FluentAssertions" Version="6.3.0" />
17-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
15+
<PackageReference Include="ReportGenerator" Version="5.1.9" />
16+
<PackageReference Include="FluentAssertions" Version="6.7.0" />
17+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" />
1818
<PackageReference Include="xunit" Version="2.4.1" />
19-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
19+
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
2020
<PrivateAssets>all</PrivateAssets>
2121
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2222
</PackageReference>

sample/Ardalis.SampleApp.Core/Ardalis.SampleApp.Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Ardalis.GuardClauses" Version="3.3.0" />
8+
<PackageReference Include="Ardalis.GuardClauses" Version="4.0.1" />
99
</ItemGroup>
1010

1111
<ItemGroup>

sample/Ardalis.SampleApp.Infrastructure/Ardalis.SampleApp.Infrastructure.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.1" />
9-
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.1">
8+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.6" />
9+
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.6">
1010
<PrivateAssets>all</PrivateAssets>
1111
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1212
</PackageReference>
13-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.1" />
13+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.6" />
1414
</ItemGroup>
1515

1616
<ItemGroup>

sample/Ardalis.SampleApp.Web/Ardalis.SampleApp.Web.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="AutoMapper" Version="11.0.0" />
8+
<PackageReference Include="AutoMapper" Version="11.0.1" />
99
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="11.0.0" />
10-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.1" />
11-
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.1">
10+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.6" />
11+
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.6">
1212
<PrivateAssets>all</PrivateAssets>
1313
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1414
</PackageReference>
15-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.1" />
15+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.6" />
1616
</ItemGroup>
1717

1818
<ItemGroup>

0 commit comments

Comments
 (0)