Skip to content

Commit c146df7

Browse files
committed
Version 5.2.0
1 parent 9fe937e commit c146df7

File tree

3 files changed

+14
-12
lines changed

3 files changed

+14
-12
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
This NuGet package containing methods to help test applications that use [Entity Framework Core](https://docs.microsoft.com/en-us/ef/core/index) for database access. This readme provides links to the documentation in the [EfCore.TestSupport wiki](https://github.com/JonPSmith/EfCore.TestSupport/wiki). Also see [Release Notes](https://github.com/JonPSmith/EfCore.TestSupport/blob/master/ReleaseNotes.md) for information on changes.
44

5+
The EfCore.TestSupport library is available on [NuGet as EfCore.TestSupport](https://www.nuget.org/packages/EfCore.TestSupport/) and is an open-source library under the MIT license. See [ReleaseNotes](https://github.com/JonPSmith/EfCore.TestSupport/blob/master/ReleaseNotes.md) for details of the changes in each vesion.
6+
57
_NOTE: Version 5.1.0 and above of this library supports multiple versions of EF Core 5._
68

7-
- _Version 5.1.0 supports EF Core 5.10 and EF Core 6.0_
9+
- _Version 5.1.0 and above supports EF Core 5.10 and EF Core 6.0_
810

911
**WARNING: If you are updating from the original EfCore.TestSupport (2.1 or 3), then you should read the [Version5UpgradeDocs.md](https://github.com/JonPSmith/EfCore.TestSupport/blob/master/Version5UpgradeDocs.md) file as there are some breaking changes in this version.**
1012

11-
The EfCore.TestSupport library is available on [NuGet as EfCore.TestSupport](https://www.nuget.org/packages/EfCore.TestSupport/) and is an open-source library under the MIT license. See [ReleaseNotes](https://github.com/JonPSmith/EfCore.TestSupport/blob/master/ReleaseNotes.md) for details of changes and information on versions before EF Core 5.
12-
1313
## Documentation
1414

1515
The NuGet package [EfCore.TestSupport](https://www.nuget.org/packages/EfCore.TestSupport/) containing methods to help you unit test applications that use [Entity Framework Core](https://docs.microsoft.com/en-us/ef/core/index) for database access. This readme defines the various groups, with links to the documentation in the [EfCore.TestSupport wiki](https://github.com/JonPSmith/EfCore.TestSupport/wiki).

ReleaseNotes.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Release notes
22

3+
## 5.2.0
4+
5+
- BREAKING CHANGE from 5.1.0: changed CreatePostgreSqlUniqueDatabaseOptions to CreatePostgreSqlUniqueClassOptions to match other usages
6+
- Extra checks on the length of the PostgreSQL database as there is a 64 char limit
7+
38
## 5.1.0
49

510
- BREAKING CHANGE: Renamed DeleteAllUnitTestDatabases to DeleteAllSqlServerTestDatabases

TestSupport/TestSupport.csproj

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -43,19 +43,16 @@
4343

4444
<PropertyGroup>
4545
<PackageId>EfCore.TestSupport</PackageId>
46-
<PackageVersion>5.1.0</PackageVersion>
47-
<Version>5.1.0</Version>
48-
<AssemblyVersion>5.1.0.0</AssemblyVersion>
49-
<FileVersion>5.1.0.0</FileVersion>
46+
<PackageVersion>5.2.0</PackageVersion>
47+
<Version>5.2.0</Version>
48+
<AssemblyVersion>5.2.0.0</AssemblyVersion>
49+
<FileVersion>5.2.0.0</FileVersion>
5050
<Authors>Jon P Smith</Authors>
5151
<Description>Useful tools when unit testing applications that use Entity Framework Core. See readme file on github.</Description>
5252
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
5353
<PackageReleaseNotes>
54-
- BREAKING CHANGE: Renamed DeleteAllUnitTestDatabases to DeleteAllSqlServerTestDatabases
55-
- REMOVED obsolete methods: ...OptionsWithLogging (use ...OptionsWithLogTo), CreateEmptyViaWipe (use EnsureClean)
56-
- NET6 Support: Updated to support both EF Core 5 and EF Core
57-
- New Feature: Added PostgreSQL database helpers, including EnsureClean (see docs)
58-
- Feature: Reinstated the Seed Database feature to this version due to requests from users
54+
- BREAKING CHANGE from 5.1.0: changed CreatePostgreSqlUniqueDatabaseOptions to CreatePostgreSqlUniqueClassOptions to match other usages
55+
- Extra checks on the length of the PostgreSQL database as there is a 64 char limit
5956
</PackageReleaseNotes>
6057
<Copyright>Copyright (c) 2020 Jon P Smith. Licenced under MIT licence</Copyright>
6158
<PackageTags>Entity Framework Core, xUnit</PackageTags>

0 commit comments

Comments
 (0)