Skip to content

Commit 6b14fd0

Browse files
committed
Fixed release notes grammar mistakes
1 parent 2d57dbc commit 6b14fd0

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

RELEASE_NOTES.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616
### 0.0.4-beta - May 31 2018
1717
* Introduced support for middlewares in the execution pipeline.
1818
* Introduced new package, named FSharp.Data.GraphQL.Server.Middleware, with generic, built-in middlewares.
19-
* Introduced QueryWeightMiddleware, a generic execution middleware to measure query complexity and optionally block qurey execution with a threshold.
19+
* Introduced QueryWeightMiddleware, a generic execution middleware to measure query complexity and optionally block query 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.
2222
* Changed FieldDef interface to be able to support a Metadata bag object, that can be used to hold custom information per field.
2323
* ISchema TypeMap is now a mutable object, to ease schema customization through schema compile middlewares.
24-
* Fixing many minor errors when deferring or streaming results with Union and Enum types (specially when queried using fragments).
24+
* Fixing many minor errors when deferring or streaming results with Union and Enum types (especially when queried using fragments).
2525
* Deferred and streamed error results now are handled.
2626
* Added support for nested deferred and streamed results (currently does have a maximum degree of two nested operations).
2727

@@ -44,10 +44,10 @@
4444
* Add Long Scalar definition
4545

4646
### 0.0.8-beta - October 27 2018
47-
* Add subscription field to intospection schema
47+
* Add subscription field to introspection schema
4848

4949
### 0.0.8-beta01 - October 28 2018
50-
* Add subscription field to intospection schema
50+
* Add subscription field to introspection schema
5151

5252
### 0.0.9 - November 2 2018
5353
* Fixed a bug where output def of a subscription field was not reachable for introspection.
@@ -74,25 +74,25 @@
7474
* Fix dispose of deferred/stream responses.
7575

7676
### 1.0.0-beta - April 27 2019
77-
* **Breaking Change** New type provider api! see samples/client-provider for details.
77+
* **Breaking Change** New type provider API! see samples/client-provider for details.
7878
* Fixes for #216 enum as a variable.
7979
* Upgraded paket and dependencies.
8080

8181
### 1.0.0-beta2 - April 27 2019
82-
* **Breaking Change** GraphQLProvider now makes Nullable graphql inputs optional method arguments instead of options
82+
* **Breaking Change** GraphQLProvider now makes Nullable GraphQL inputs optional method arguments instead of options
8383
* **Breaking Change** GraphQLProvider uses the operation name as the generated operation type's names. if no operation name is specified it uses "Operation" + the query string's hash
8484
* Make the type provider cross-targeting
8585
* **Breaking Change** Add postcompile phase to middleware interface
8686

8787
### 1.0.0-beta3 - May 10 2019
88-
* **Breaking Change** GraphQLProvider record types constructors now receives option arguments as optional arguments
88+
* **Breaking Change** GraphQLProvider record types constructors now receive option arguments as optional arguments
8989
* Revision on scalar types parsing - fixed some wrong behaviors such as parsing ints as floats
9090

9191
### 1.0.0-beta4 - May 13 2019
92-
* Fixing an bug when converting variable types to variables json in a query
92+
* Fixing a bug when converting variable types to variables json in a query
9393

9494
### 1.0.0-beta5 - May 13 2019
95-
* Fixing an bug when parsing json objects with no fields in serialization
95+
* Fixing a bug when parsing json objects with no fields in serialization
9696

9797
### 1.0.0-beta6 - May 17 2019
9898
* Changing constructors of provided types to have overloads instead of optional parameters (needed because of a limitation of the Type Provider SDK)
@@ -116,15 +116,15 @@
116116
* Minor bug fixes
117117

118118
### 1.0.0 - July 4 2019
119-
* Changing the internal client of the Type provider (`System.Http.HttpClient`)
119+
* Changing the internal client of the Type provider (`System.Net.Http.HttpClient`)
120120
* Fixing several minor bugs of the file upload system in the client provider
121121
* Limiting the upload type of the client provider to be a scalar type (provider fails if it is not)
122122
* 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
123123
* Implementing a validation system for queries based on the [GraphQL Spec](https://graphql.github.io/graphql-spec/June2018/#sec-Validation)
124124
* Making validation mandatory on the server component
125125
* Implemented a cache system for query validation on both server and client components
126126
* Client component can optionally disable query validation
127-
* Updating parser to support unamed operations alongside short handed queries
127+
* Updating parser to support unnamed operations alongside shorthand queries
128128
* Adding null value support for the AST Input Values (it was previously parsed as an Enum Value)
129129
* **Breaking Change** Renaming `FSharp.Data.GraphQL.Server.Middlewares` package to `FSharp.Data.GraphQL.Server.Middleware`
130130

@@ -138,7 +138,7 @@
138138
* Correct printing of queries without names
139139
* Correct printing of ListValue and ObjectValue
140140
* Traverse list values in argument lists
141-
* Added test cases for object inputs for graphql functions
141+
* Added test cases for object inputs for GraphQL functions
142142

143143

144144
### 1.0.4 - March 22 2020
@@ -162,7 +162,7 @@
162162
* Upgrade build scripts
163163
* Migrate from netcoreapp2.0 to net5.0 for tests and samples
164164
* Target netstandard2.0 exclusively for Type Providers
165-
* Make FSharp.Data.GraphQL.Shared a Nuget package
165+
* Make FSharp.Data.GraphQL.Shared a NuGet package
166166
* Fix parser bug. Thanks to @njlr
167167

168168
### 2.0.0 - March 24 2024
@@ -176,8 +176,8 @@
176176
* Added ability to deprecate fields defined with any combination of parameters (more overloads to `Define` static class)
177177
* Fixed nullable enum input handling
178178
* Fixed coercing enum type variables as F# # discriminated unions
179-
* Assed support of `Option` variable values for nullable input types
180-
* Iplemented mapping of input query/AST lists to .NET array type in addition to F# list
179+
* Added support of `Option` variable values for nullable input types
180+
* Added mapping of input query/AST lists to .NET array type in addition to F# list
181181
* Implemented input object validation with detailed error messages
182182
* Added `Define.WrappedScalar` for value object scalar definitions
183183
* Implemented coercion of nested input objects

0 commit comments

Comments
 (0)