Skip to content

Commit 46de5cc

Browse files
Bump version to 5.0.3
## [5.0.3] - 2021-10-16 - Translations for `isNull` to be evaluated in-database - #114 ### Fixed - Removed `DevelopmentDependency=true` as it was setting `IncludeAssets` to undesirable values when restoring package - #108 - Fix formatting of Nullable parameters - [@LiteracyFanatic](https://github.com/LiteracyFanatic) - #106 - Handle nullablility correctly in snapshot generation - #107 - Issues with scaffolded code - Improved code generation for contexts scaffolded from an existing database - #89 - Correct issue with InsertData operations and 2D arrays - Generate valid code in HasData method - Fix issue with generated DbContext members in scaffolded code - Resolved issue with migrations have a missing unit arg to the Up method if no changes in model - Foreign Key constraints now created correctly - Fix indentation issue when table has constraints - #75 - Constraints now correctly generated - #72 - Generated Migrations will now always include the System namespace - #70 - Issues with scaffolded code - Improved code generation for contexts scaffolded from an existing database - #89 - Correct issue with InsertData operations and 2D arrays - Generate valid code in HasData method - Fix issue with generated DbContext members in scaffolded code - Resolved issue with migrations have a missing unit arg to the Up method if no changes in model - Foreign Key constraints now created correctly - Fix indentation issue when table has constraints - #75 - Constraints now correctly generated - #72 - Generated Migrations will now always include the System namespace - #70 [Unreleased]: v5.0.3-beta005...HEAD [5.0.3-beta005]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-beta005 ### Added - Single case union support - [@lucasteles](https://github.com/lucasteles) - #98 - Query translation for Option types - [@lucasteles](https://github.com/lucasteles) - #93 - DbSet/IQueryable helpers to deal with EF Core async and nullable methods - [@lucasteles](https://github.com/lucasteles) - #94 - Automatic registration of DesignTimeServices - #86 - DbContextHelpers - curried functions for interacting with DbContext to allow for a more 'native' F# experience - Single case union support - [@lucasteles](https://github.com/lucasteles) - #98 - Query translation for Option types - [@lucasteles](https://github.com/lucasteles) - #93 - DbSet/IQueryable helpers to deal with EF Core async and nullable methods - [@lucasteles](https://github.com/lucasteles) - #94 - Automatic registration of DesignTimeServices - #86 - DbContextHelpers - curried functions for interacting with DbContext to allow for a more 'native' F# experience
1 parent 9131398 commit 46de5cc

File tree

2 files changed

+51
-7
lines changed

2 files changed

+51
-7
lines changed

CHANGELOG.md

Lines changed: 45 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,53 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [5.0.3-beta006] - 2021-08-17
8+
## [5.0.3] - 2021-10-16
9+
10+
- Translations for `isNull` to be evaluated in-database - https://github.com/efcore/EFCore.FSharp/pull/114
911

1012
### Fixed
1113
- Removed `DevelopmentDependency=true` as it was setting `IncludeAssets` to undesirable values when restoring package - https://github.com/efcore/EFCore.FSharp/pull/108
14+
- Fix formatting of Nullable parameters - [@LiteracyFanatic](https://github.com/LiteracyFanatic) - https://github.com/efcore/EFCore.FSharp/pull/106
15+
- Handle nullablility correctly in snapshot generation - https://github.com/efcore/EFCore.FSharp/pull/107
16+
- Issues with scaffolded code
17+
- Improved code generation for contexts scaffolded from an existing database - https://github.com/efcore/EFCore.FSharp/pull/89
18+
- Correct issue with InsertData operations and 2D arrays
19+
- Generate valid code in HasData method
20+
- Fix issue with generated DbContext members in scaffolded code
21+
- Resolved issue with migrations have a missing unit arg to the "Up" method if no changes in model
22+
- Foreign Key constraints now created correctly
23+
- Fix indentation issue when table has constraints - https://github.com/efcore/EFCore.FSharp/pull/75
24+
- Constraints now correctly generated - https://github.com/efcore/EFCore.FSharp/pull/72
25+
- Generated Migrations will now always include the System namespace - https://github.com/efcore/EFCore.FSharp/pull/70
26+
- Issues with scaffolded code
27+
- Improved code generation for contexts scaffolded from an existing database - https://github.com/efcore/EFCore.FSharp/pull/89
28+
- Correct issue with InsertData operations and 2D arrays
29+
- Generate valid code in HasData method
30+
- Fix issue with generated DbContext members in scaffolded code
31+
- Resolved issue with migrations have a missing unit arg to the "Up" method if no changes in model
32+
- Foreign Key constraints now created correctly
33+
- Fix indentation issue when table has constraints - https://github.com/efcore/EFCore.FSharp/pull/75
34+
- Constraints now correctly generated - https://github.com/efcore/EFCore.FSharp/pull/72
35+
- Generated Migrations will now always include the System namespace - https://github.com/efcore/EFCore.FSharp/pull/70
36+
[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v5.0.3-beta005...HEAD
37+
[5.0.3-beta005]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-beta005
1238

39+
### Added
40+
- Single case union support - [@lucasteles](https://github.com/lucasteles) - https://github.com/efcore/EFCore.FSharp/pull/98
41+
- Query translation for Option types - [@lucasteles](https://github.com/lucasteles) - https://github.com/efcore/EFCore.FSharp/pull/93
42+
- DbSet/IQueryable helpers to deal with EF Core async and nullable methods - [@lucasteles](https://github.com/lucasteles) - https://github.com/efcore/EFCore.FSharp/pull/94
43+
- Automatic registration of DesignTimeServices - https://github.com/efcore/EFCore.FSharp/pull/86
44+
- DbContextHelpers - curried functions for interacting with DbContext to allow for a more 'native' F# experience
45+
- Single case union support - [@lucasteles](https://github.com/lucasteles) - https://github.com/efcore/EFCore.FSharp/pull/98
46+
- Query translation for Option types - [@lucasteles](https://github.com/lucasteles) - https://github.com/efcore/EFCore.FSharp/pull/93
47+
- DbSet/IQueryable helpers to deal with EF Core async and nullable methods - [@lucasteles](https://github.com/lucasteles) - https://github.com/efcore/EFCore.FSharp/pull/94
48+
- Automatic registration of DesignTimeServices - https://github.com/efcore/EFCore.FSharp/pull/86
49+
- DbContextHelpers - curried functions for interacting with DbContext to allow for a more 'native' F# experience
50+
51+
## [5.0.3-beta006] - 2021-08-17
52+
53+
### Fixed
54+
- Removed `DevelopmentDependency=true` as it was setting `IncludeAssets` to undesirable values when restoring package - https://github.com/efcore/EFCore.FSharp/pull/108
1355
- Fix formatting of Nullable parameters - [@LiteracyFanatic](https://github.com/LiteracyFanatic) - https://github.com/efcore/EFCore.FSharp/pull/106
1456
- Handle nullablility correctly in snapshot generation - https://github.com/efcore/EFCore.FSharp/pull/107
1557
- Issues with scaffolded code
@@ -46,3 +88,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4688
- DbSet/IQueryable helpers to deal with EF Core async and nullable methods - [@lucasteles](https://github.com/lucasteles) - https://github.com/efcore/EFCore.FSharp/pull/94
4789
- Automatic registration of DesignTimeServices - https://github.com/efcore/EFCore.FSharp/pull/86
4890
- DbContextHelpers - curried functions for interacting with DbContext to allow for a more 'native' F# experience
91+
[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v5.0.3...HEAD
92+
[5.0.3]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3

src/EFCore.FSharp/AssemblyInfo.fs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@ open System.Reflection
55
[<assembly: AssemblyTitleAttribute("EFCore.FSharp")>]
66
[<assembly: AssemblyProductAttribute("EFCore.FSharp")>]
77
[<assembly: AssemblyVersionAttribute("5.0.3")>]
8-
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2021-08-17T00:00:00.0000000+01:00")>]
8+
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2021-10-16T00:00:00.0000000+01:00")>]
99
[<assembly: AssemblyFileVersionAttribute("5.0.3")>]
1010
[<assembly: AssemblyInformationalVersionAttribute("5.0.3")>]
11-
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","beta")>]
12-
[<assembly: AssemblyMetadataAttribute("GitHash","640a596f45adf4a9c406461f1422db072ce9bb4b")>]
11+
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
12+
[<assembly: AssemblyMetadataAttribute("GitHash","91313981be2fa179cac6e8515cecf46b48dcd866")>]
1313
do ()
1414

1515
module internal AssemblyVersionInformation =
1616
let [<Literal>] AssemblyTitle = "EFCore.FSharp"
1717
let [<Literal>] AssemblyProduct = "EFCore.FSharp"
1818
let [<Literal>] AssemblyVersion = "5.0.3"
19-
let [<Literal>] AssemblyMetadata_ReleaseDate = "2021-08-17T00:00:00.0000000+01:00"
19+
let [<Literal>] AssemblyMetadata_ReleaseDate = "2021-10-16T00:00:00.0000000+01:00"
2020
let [<Literal>] AssemblyFileVersion = "5.0.3"
2121
let [<Literal>] AssemblyInformationalVersion = "5.0.3"
22-
let [<Literal>] AssemblyMetadata_ReleaseChannel = "beta"
23-
let [<Literal>] AssemblyMetadata_GitHash = "640a596f45adf4a9c406461f1422db072ce9bb4b"
22+
let [<Literal>] AssemblyMetadata_ReleaseChannel = "release"
23+
let [<Literal>] AssemblyMetadata_GitHash = "91313981be2fa179cac6e8515cecf46b48dcd866"

0 commit comments

Comments
 (0)