Skip to content

Commit e33001d

Browse files
committed
Adjusting package dependencies
1 parent 037faf0 commit e33001d

8 files changed

Lines changed: 47 additions & 24 deletions

File tree

RELEASE_NOTES.md

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
### 0.0.4-beta - May 31 2018
1717
* Introduced support for middlewares in the execution pipeline.
18-
* Introduced new package, named FSharp.Data.GraphQL.Server.Middlewares, with generic, built-in middlewares.
18+
* Introduced new package, named FSharp.Data.GraphQL.Server.Middleware, with generic, built-in middlewares.
1919
* Introduced QueryWeightMiddleware, a generic execution middleware to measure query complexity and optionally block qurey execution with a threshold.
2020
* Introduced ObjectListFilterMiddleware, a generic schema compile middleware to add filter options to list fields of specific objects.
2121
* Changed GQLResponse object to be a Record, which supports a Metadata bag object, that can be used to hold custom information per query request.
@@ -107,4 +107,26 @@
107107
* Performance improvements
108108

109109
### 1.0.0-beta9 - May 22 2019
110-
* Fixing dependency issue on Server component
110+
* Fixing dependency issue on Server component
111+
112+
### 1.0.0-beta90 - May 29 2019
113+
* Fixing a wrong cast for System.Uri type
114+
* Adding support for file uploads through [GraphQL Multipart Request Spec](https://github.com/jaydenseric/graphql-multipart-request-spec)
115+
* Changing variable parameters of Run/AsyncRun methods to work as overloaded methods instead of one having optional parameters
116+
* Minor bug fixes
117+
118+
### 1.0.0 - July 4 2019
119+
* Changing the internal client of the Type provider (`System.Http.HttpClient`)
120+
* Fixing several minor bugs of the file upload system in the client provider
121+
* Limiting the upload type of the client provider to be a scalar type (provider fails if it is not)
122+
* If an upload type is specified and it is not used in a query, client provider defaults to standard HTTP protocol instead of the multipart request
123+
* Implementing a validation system for queries based on the [GraphQL Spec](https://graphql.github.io/graphql-spec/June2018/#sec-Validation)
124+
* Making validation mandatory on the server component
125+
* Implemented a cache system for query validation on both server and client components
126+
* Client component can optionally disable query validation
127+
* Updating parser to support unamed operations alongside short handed queries
128+
* Adding null value support for the AST Input Values (it was previously parsed as an Enum Value)
129+
* **Breaking Change** Renaming `FSharp.Data.GraphQL.Server.Middlewares` package to `FSharp.Data.GraphQL.Server.Middleware`
130+
131+
### 1.0.1 - July 5 2019
132+
* Adjusting package dependencies (`FParsec`, `System.Net.Http`, and `FSharp.Data.GraphQL.Server` are not locked anymore)

src/FSharp.Data.GraphQL.Client/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("FSharp.Data.GraphQL.Client")>]
66
[<assembly: AssemblyProductAttribute("FSharp.Data.GraphQL")>]
77
[<assembly: AssemblyDescriptionAttribute("FSharp implementation of Facebook GraphQL query language")>]
8-
[<assembly: AssemblyVersionAttribute("1.0.0")>]
9-
[<assembly: AssemblyFileVersionAttribute("1.0.0")>]
8+
[<assembly: AssemblyVersionAttribute("1.0.1")>]
9+
[<assembly: AssemblyFileVersionAttribute("1.0.1")>]
1010
do ()
1111

1212
module internal AssemblyVersionInformation =
1313
let [<Literal>] AssemblyTitle = "FSharp.Data.GraphQL.Client"
1414
let [<Literal>] AssemblyProduct = "FSharp.Data.GraphQL"
1515
let [<Literal>] AssemblyDescription = "FSharp implementation of Facebook GraphQL query language"
16-
let [<Literal>] AssemblyVersion = "1.0.0"
17-
let [<Literal>] AssemblyFileVersion = "1.0.0"
16+
let [<Literal>] AssemblyVersion = "1.0.1"
17+
let [<Literal>] AssemblyFileVersion = "1.0.1"

src/FSharp.Data.GraphQL.Client/FSharp.Data.GraphQL.Client.fsproj.paket.template

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ references
3636
dependencies
3737
framework: net461
3838
FSharp.Core >= LOCKEDVERSION-Common
39-
FParsec = LOCKEDVERSION-Common
39+
FParsec >= LOCKEDVERSION-Common
4040
framework: netstandard2.0
4141
FSharp.Core >= LOCKEDVERSION-Common
42-
FParsec = LOCKEDVERSION-Common
42+
FParsec >= LOCKEDVERSION-Common
43+
System.Net.Http >= LOCKEDVERSION-NetCoreAndStandard

src/FSharp.Data.GraphQL.Server.Middlewares/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("FSharp.Data.GraphQL.Server.Middlewares")>]
66
[<assembly: AssemblyProductAttribute("FSharp.Data.GraphQL")>]
77
[<assembly: AssemblyDescriptionAttribute("FSharp implementation of Facebook GraphQL query language")>]
8-
[<assembly: AssemblyVersionAttribute("1.0.0")>]
9-
[<assembly: AssemblyFileVersionAttribute("1.0.0")>]
8+
[<assembly: AssemblyVersionAttribute("1.0.1")>]
9+
[<assembly: AssemblyFileVersionAttribute("1.0.1")>]
1010
do ()
1111

1212
module internal AssemblyVersionInformation =
1313
let [<Literal>] AssemblyTitle = "FSharp.Data.GraphQL.Server.Middlewares"
1414
let [<Literal>] AssemblyProduct = "FSharp.Data.GraphQL"
1515
let [<Literal>] AssemblyDescription = "FSharp implementation of Facebook GraphQL query language"
16-
let [<Literal>] AssemblyVersion = "1.0.0"
17-
let [<Literal>] AssemblyFileVersion = "1.0.0"
16+
let [<Literal>] AssemblyVersion = "1.0.1"
17+
let [<Literal>] AssemblyFileVersion = "1.0.1"

src/FSharp.Data.GraphQL.Server.Middlewares/FSharp.Data.GraphQL.Server.Middlewares.fsproj.paket.template

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ dependencies
1717
framework: net461
1818
FParsec >= LOCKEDVERSION-Common
1919
FSharp.Core >= LOCKEDVERSION-Common
20-
FSharp.Data.GraphQL.Server = CURRENTVERSION
20+
FSharp.Data.GraphQL.Server >= CURRENTVERSION
2121
framework: netstandard2.0
2222
FParsec >= LOCKEDVERSION-Common
2323
FSharp.Core >= LOCKEDVERSION-Common
24-
FSharp.Data.GraphQL.Server = CURRENTVERSION
24+
FSharp.Data.GraphQL.Server >= CURRENTVERSION
2525
files
2626
bin/Release/net461/FSharp.Data.GraphQL.Server.Middlewares.dll ==> lib/net461
2727
bin/Release/netstandard2.0/FSharp.Data.GraphQL.Server.Middlewares.dll ==> lib/netstandard2.0

src/FSharp.Data.GraphQL.Server/AssemblyInfo.fs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ open System.Runtime.CompilerServices
66
[<assembly: AssemblyTitleAttribute("FSharp.Data.GraphQL.Server")>]
77
[<assembly: AssemblyProductAttribute("FSharp.Data.GraphQL")>]
88
[<assembly: AssemblyDescriptionAttribute("FSharp implementation of Facebook GraphQL query language")>]
9-
[<assembly: AssemblyVersionAttribute("1.0.0")>]
10-
[<assembly: AssemblyFileVersionAttribute("1.0.0")>]
9+
[<assembly: AssemblyVersionAttribute("1.0.1")>]
10+
[<assembly: AssemblyFileVersionAttribute("1.0.1")>]
1111
[<assembly: InternalsVisibleToAttribute("FSharp.Data.GraphQL.Benchmarks")>]
1212
[<assembly: InternalsVisibleToAttribute("FSharp.Data.GraphQL.Tests")>]
1313
do ()
@@ -16,7 +16,7 @@ module internal AssemblyVersionInformation =
1616
let [<Literal>] AssemblyTitle = "FSharp.Data.GraphQL.Server"
1717
let [<Literal>] AssemblyProduct = "FSharp.Data.GraphQL"
1818
let [<Literal>] AssemblyDescription = "FSharp implementation of Facebook GraphQL query language"
19-
let [<Literal>] AssemblyVersion = "1.0.0"
20-
let [<Literal>] AssemblyFileVersion = "1.0.0"
19+
let [<Literal>] AssemblyVersion = "1.0.1"
20+
let [<Literal>] AssemblyFileVersion = "1.0.1"
2121
let [<Literal>] InternalsVisibleTo = "FSharp.Data.GraphQL.Benchmarks"
2222
let [<Literal>] InternalsVisibleTo_1 = "FSharp.Data.GraphQL.Tests"

src/FSharp.Data.GraphQL.Server/FSharp.Data.GraphQL.Server.fsproj.paket.template

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ references
1616
FSharp.Data.GraphQL.Shared.dll
1717
dependencies
1818
framework: net461
19-
FParsec = LOCKEDVERSION-Common
19+
FParsec >= LOCKEDVERSION-Common
2020
FSharp.Core >= LOCKEDVERSION-Common
2121
System.Reactive >= LOCKEDVERSION-Common
2222
framework: netstandard2.0
23-
FParsec = LOCKEDVERSION-Common
23+
FParsec >= LOCKEDVERSION-Common
2424
FSharp.Core >= LOCKEDVERSION-Common
2525
System.Reactive >= LOCKEDVERSION-Common
2626
files

src/FSharp.Data.GraphQL.Shared/AssemblyInfo.fs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ open System.Runtime.CompilerServices
66
[<assembly: AssemblyTitleAttribute("FSharp.Data.GraphQL.Shared")>]
77
[<assembly: AssemblyProductAttribute("FSharp.Data.GraphQL")>]
88
[<assembly: AssemblyDescriptionAttribute("FSharp implementation of Facebook GraphQL query language")>]
9-
[<assembly: AssemblyVersionAttribute("1.0.0")>]
10-
[<assembly: AssemblyFileVersionAttribute("1.0.0")>]
9+
[<assembly: AssemblyVersionAttribute("1.0.1")>]
10+
[<assembly: AssemblyFileVersionAttribute("1.0.1")>]
1111
[<assembly: InternalsVisibleToAttribute("FSharp.Data.GraphQL.Server")>]
1212
[<assembly: InternalsVisibleToAttribute("FSharp.Data.GraphQL.Client")>]
1313
[<assembly: InternalsVisibleToAttribute("FSharp.Data.GraphQL.Tests")>]
@@ -17,8 +17,8 @@ module internal AssemblyVersionInformation =
1717
let [<Literal>] AssemblyTitle = "FSharp.Data.GraphQL.Shared"
1818
let [<Literal>] AssemblyProduct = "FSharp.Data.GraphQL"
1919
let [<Literal>] AssemblyDescription = "FSharp implementation of Facebook GraphQL query language"
20-
let [<Literal>] AssemblyVersion = "1.0.0"
21-
let [<Literal>] AssemblyFileVersion = "1.0.0"
20+
let [<Literal>] AssemblyVersion = "1.0.1"
21+
let [<Literal>] AssemblyFileVersion = "1.0.1"
2222
let [<Literal>] InternalsVisibleTo = "FSharp.Data.GraphQL.Server"
2323
let [<Literal>] InternalsVisibleTo_1 = "FSharp.Data.GraphQL.Client"
2424
let [<Literal>] InternalsVisibleTo_2 = "FSharp.Data.GraphQL.Tests"

0 commit comments

Comments
 (0)