demetrixbio / FSharp.Data.Npgsql

F# type providers to support statically typed access to input parameters and result set of sql statement in idiomatic F# way. Data modifications via statically typed tables.
Apache License 2.0
128 stars 15 forks source link

Packages of 0.2.7-beta upwards specify exact versions of their dependencies #88

Closed kerams closed 4 years ago

kerams commented 4 years ago

vivaldi_60ur6g2fAb

vs

vivaldi_a6ejdxpIuh

I think this might prevent users from upgrading to a new hotfix of Npgsql for instance. Additionally, do we need the direct dependencies on FSharp.Core and System.ValueTuple?

@Swoorup

Swoorup commented 4 years ago

Ah this should probably be an easy fix. The reason this came about was because I convert from nuget to paket using paket convert-from-nuget command, which puts the discovered dependencies into paket.dependencies. And locks the dependencies to the found version.

https://github.com/demetrixbio/FSharp.Data.Npgsql/blob/master/paket.dependencies

Should probably be able to remove FSharp and ValueTuple and change the others to greater than match.

Swoorup commented 4 years ago

Fixed in https://github.com/demetrixbio/FSharp.Data.Npgsql/pull/86