Skip to content

Commit e3c2ffa

Browse files
committed
1.5.14
1 parent 78701ae commit e3c2ffa

31 files changed

Lines changed: 116 additions & 111 deletions

File tree

docs/RELEASE_NOTES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
### 1.5.14 - 29.08.2025
2+
* Fix for Dacpac parsing null exception case when dependent dacpacs #848
3+
* Firebird naming case.
4+
* DuckDB dependencies update
5+
16
### 1.5.13 - 21.07.2025
27
* MapTo fix on special cases where database is missing fields of MapTo FSharp record target.
38

paket.dependencies

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,6 @@ group Tests
100100
nuget SQLitePCLRaw.bundle_green 2.1.11
101101
nuget SQLitePCLRaw.core 2.1.11
102102
nuget Microsoft.Data.Sqlite.Core 9.0.4
103-
nuget DuckDB.NET.Bindings.Full 1.2.1
104-
nuget DuckDB.NET.Data.Full 1.2.1
103+
nuget DuckDB.NET.Bindings.Full 1.3.2
104+
nuget DuckDB.NET.Data.Full 1.3.2
105105
// nuget Microsoft.Data.Sqlite.Core.Backport // Needed if we want currently Core support on Linux.

paket.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1507,10 +1507,10 @@ STORAGE: PACKAGES
15071507
NUGET
15081508
remote: https://api.nuget.org/v3/index.json
15091509
BouncyCastle.Cryptography (2.5.1) - restriction: || (>= net462) (>= netstandard2.0)
1510-
DuckDB.NET.Bindings.Full (1.2.1)
1510+
DuckDB.NET.Bindings.Full (1.3.2)
15111511
System.Runtime.CompilerServices.Unsafe (>= 6.1) - restriction: && (< net6.0) (>= netstandard2.0)
1512-
DuckDB.NET.Data.Full (1.2.1)
1513-
DuckDB.NET.Bindings.Full (>= 1.2.1) - restriction: >= netstandard2.0
1512+
DuckDB.NET.Data.Full (1.3.2)
1513+
DuckDB.NET.Bindings.Full (>= 1.3.2) - restriction: >= netstandard2.0
15141514
System.Memory (>= 4.6) - restriction: && (< net6.0) (>= netstandard2.0)
15151515
System.Runtime.CompilerServices.Unsafe (>= 6.1) - restriction: && (< net6.0) (>= netstandard2.0)
15161516
FirebirdSql.Data.FirebirdClient (10.3.2)

src/SQLProvider.Common/AssemblyInfo.fs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ open System.Reflection
55
[<assembly: AssemblyTitleAttribute("SQLProvider.Common")>]
66
[<assembly: AssemblyProductAttribute("SQLProvider")>]
77
[<assembly: AssemblyDescriptionAttribute("Type provider for SQL database access, common library")>]
8-
[<assembly: AssemblyVersionAttribute("1.5.13")>]
9-
[<assembly: AssemblyFileVersionAttribute("1.5.13")>]
8+
[<assembly: AssemblyVersionAttribute("1.5.14")>]
9+
[<assembly: AssemblyFileVersionAttribute("1.5.14")>]
1010
do ()
1111

1212
module internal AssemblyVersionInformation =
1313
let [<Literal>] AssemblyTitle = "SQLProvider.Common"
1414
let [<Literal>] AssemblyProduct = "SQLProvider"
1515
let [<Literal>] AssemblyDescription = "Type provider for SQL database access, common library"
16-
let [<Literal>] AssemblyVersion = "1.5.13"
17-
let [<Literal>] AssemblyFileVersion = "1.5.13"
16+
let [<Literal>] AssemblyVersion = "1.5.14"
17+
let [<Literal>] AssemblyFileVersion = "1.5.14"

src/SQLProvider.DesignTime/AssemblyInfo.fs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ open System.Reflection
55
[<assembly: AssemblyTitleAttribute("SQLProvider.DesignTime")>]
66
[<assembly: AssemblyProductAttribute("SQLProvider")>]
77
[<assembly: AssemblyDescriptionAttribute("Type providers for any SQL database access.")>]
8-
[<assembly: AssemblyVersionAttribute("1.5.12")>]
9-
[<assembly: AssemblyFileVersionAttribute("1.5.12")>]
8+
[<assembly: AssemblyVersionAttribute("1.5.14")>]
9+
[<assembly: AssemblyFileVersionAttribute("1.5.14")>]
1010
do ()
1111

1212
module internal AssemblyVersionInformation =
1313
let [<Literal>] AssemblyTitle = "SQLProvider.DesignTime"
1414
let [<Literal>] AssemblyProduct = "SQLProvider"
1515
let [<Literal>] AssemblyDescription = "Type providers for any SQL database access."
16-
let [<Literal>] AssemblyVersion = "1.5.12"
17-
let [<Literal>] AssemblyFileVersion = "1.5.12"
16+
let [<Literal>] AssemblyVersion = "1.5.14"
17+
let [<Literal>] AssemblyFileVersion = "1.5.14"

src/SQLProvider.DuckDb.DesignTime/AssemblyInfo.fs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ open System.Reflection
55
[<assembly: AssemblyTitleAttribute("SQLProvider.DuckDb.DesignTime")>]
66
[<assembly: AssemblyProductAttribute("SQLProvider")>]
77
[<assembly: AssemblyDescriptionAttribute("Type providers for DuckDb database access.")>]
8-
[<assembly: AssemblyVersionAttribute("1.5.12")>]
9-
[<assembly: AssemblyFileVersionAttribute("1.5.12")>]
8+
[<assembly: AssemblyVersionAttribute("1.5.14")>]
9+
[<assembly: AssemblyFileVersionAttribute("1.5.14")>]
1010
do ()
1111

1212
module internal AssemblyVersionInformation =
1313
let [<Literal>] AssemblyTitle = "SQLProvider.DuckDb.DesignTime"
1414
let [<Literal>] AssemblyProduct = "SQLProvider"
1515
let [<Literal>] AssemblyDescription = "Type providers for DuckDb database access."
16-
let [<Literal>] AssemblyVersion = "1.5.12"
17-
let [<Literal>] AssemblyFileVersion = "1.5.12"
16+
let [<Literal>] AssemblyVersion = "1.5.14"
17+
let [<Literal>] AssemblyFileVersion = "1.5.14"

src/SQLProvider.DuckDb.DesignTime/SQLProvider.DuckDb.DesignTime.fsproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@
4545
<Reference Include="System.IO.Compression" />
4646
</ItemGroup>
4747
<ItemGroup>
48-
<PackageReference Include="DuckDB.NET.Bindings.Full" Version="1.2.1">
48+
<PackageReference Include="DuckDB.NET.Bindings.Full" Version="1.3.2">
4949
<IncludeAssets>all</IncludeAssets>
5050
</PackageReference>
51-
<PackageReference Include="DuckDB.NET.Data.Full" Version="1.2.1" />
51+
<PackageReference Include="DuckDB.NET.Data.Full" Version="1.3.2" />
5252
</ItemGroup>
5353
<ItemGroup>
5454
<ProjectReference Include="..\SQLProvider.Common\SQLProvider.Common.fsproj" />

src/SQLProvider.DuckDb.Runtime/AssemblyInfo.fs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ open System.Reflection
55
[<assembly: AssemblyTitleAttribute("SQLProvider.DuckDb.Runtime")>]
66
[<assembly: AssemblyProductAttribute("SQLProvider")>]
77
[<assembly: AssemblyDescriptionAttribute("Type providers for DuckDb database access.")>]
8-
[<assembly: AssemblyVersionAttribute("1.5.13")>]
9-
[<assembly: AssemblyFileVersionAttribute("1.5.13")>]
8+
[<assembly: AssemblyVersionAttribute("1.5.14")>]
9+
[<assembly: AssemblyFileVersionAttribute("1.5.14")>]
1010
do ()
1111

1212
module internal AssemblyVersionInformation =
1313
let [<Literal>] AssemblyTitle = "SQLProvider.DuckDb.Runtime"
1414
let [<Literal>] AssemblyProduct = "SQLProvider"
1515
let [<Literal>] AssemblyDescription = "Type providers for DuckDb database access."
16-
let [<Literal>] AssemblyVersion = "1.5.13"
17-
let [<Literal>] AssemblyFileVersion = "1.5.13"
16+
let [<Literal>] AssemblyVersion = "1.5.14"
17+
let [<Literal>] AssemblyFileVersion = "1.5.14"

src/SQLProvider.DuckDb.Runtime/SQLProvider.DuckDb.Runtime.fsproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
<Reference Include="System.IO.Compression" />
4444
</ItemGroup>
4545
<ItemGroup>
46-
<PackageReference Include="DuckDB.NET.Bindings.Full" Version="1.2.1" />
47-
<PackageReference Include="DuckDB.NET.Data.Full" Version="1.2.1" />
46+
<PackageReference Include="DuckDB.NET.Bindings.Full" Version="1.3.2" />
47+
<PackageReference Include="DuckDB.NET.Data.Full" Version="1.3.2" />
4848
</ItemGroup>
4949
<ItemGroup>
5050
<ProjectReference Include="..\SQLProvider.Common\SQLProvider.Common.fsproj" />

src/SQLProvider.DuckDb.Runtime/paket.template

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@ dependencies
3737
FSharp.Core >= 8.0.301
3838
Newtonsoft.Json >= 13.0.1
3939
System.Memory >= 4.6.3
40-
DuckDB.NET.Bindings.Full >= 1.2.1
41-
DuckDB.NET.Data.Full >= 1.2.1
40+
DuckDB.NET.Bindings.Full >= 1.3.2
41+
DuckDB.NET.Data.Full >= 1.3.2

0 commit comments

Comments
 (0)