Skip to content

Releases: JonPSmith/EfCore.TestSupport

V8.0.1

10 Apr 13:06
Compare
Choose a tag to compare
  • Only supports .NET 8 - This makes it easier to update for future NET releases
  • Updated Microsoft.EntityFrameworkCore.* NuGets to 8.0.2 to remove the vulnerable Microsoft.Data.SqlClient version

8.0.0

04 Apr 08:19
Compare
Choose a tag to compare
  • Simplified to one NET type. This makes it easier to update for future NET releases
  • Only supports .NET 8
  • Updated xunit NuGets to 2.5.3

V6.1.2

07 Feb 08:55
Compare
Choose a tag to compare
  • Fixed error in FasterPostgreSqlEnsureClean - needed password injected

V6.0.1

23 Jan 11:06
Compare
Choose a tag to compare

Microsoft.Data.SqlClient vulnerable update

6.0.0

21 Nov 11:51
Compare
Choose a tag to compare

Supports NET 6, 7 and 8

V5.3.0

14 Nov 19:23
Compare
Choose a tag to compare

Supports .NET 7

V5.2.2

04 Jan 08:57
Compare
Choose a tag to compare

Release to fix issue #48.

V5.2.1

19 Nov 08:50
Compare
Choose a tag to compare

This release supports both EF Core 5.10 and EF Core 6.0 and is an update the the 5.2.1 to fix a memory leak in the PostgreSQL EnsureClean method.

V5.2.0

16 Nov 14:35
Compare
Choose a tag to compare

This release supports both EF Core 5.10 and EF Core 6.0 and is an update the the 5.1.0 to fix a few problems and naming conventions.

  • BREAKING CHANGE from 5.1.0: changed CreatePostgreSqlUniqueDatabaseOptions to CreatePostgreSqlUniqueClassOptions to match other usages
  • Extra checks on the length of the PostgreSQL database as there is a 64 char limit
  • Also improved the PostgreSQL EnsureClean code to make it easier for testing migrations in your tests

V5.1.0

10 Nov 11:00
Compare
Choose a tag to compare

New release to add support to EF Core 6. Changes are

  • BREAKING CHANGE: Renamed DeleteAllUnitTestDatabases to DeleteAllSqlServerTestDatabases
  • REMOVED obsolete methods: ...OptionsWithLogging (use ...OptionsWithLogTo), CreateEmptyViaWipe (use EnsureClean)
  • NET6 Support: Updated to support both EF Core 5 and EF Core
  • New Feature: Added PostgreSQL database helpers, including EnsureClean (see docs)
  • Feature: Reinstated the Seed Database feature to this version due to requests from users