Releases: graphql-dotnet/graphql-client
Releases · graphql-dotnet/graphql-client
v5.0.1
- remove
IDisposable
interface from IGraphQLClient
(move to implementation) by @sungam3r
- add SourceLink support by @sungam3r
- refactor project (implicit usings, project properties) by @sungam3r
v5.0.0
- Migrate to GraphQL.NET v5 / server v6 (thanks to @sungam3r and @Shane32 for doing the work)
- Bump Newtonsoft.Json to v13.0.1
- Bump FluentAssertions.Reactive to v0.2.0
- Bump xunit.runner.visualstudio from 2.4.1 to 2.4.5
- Refactor GitHub Workflows
v4.0.2
- fix double instantiation of
GraphQLLocalExecutionClient
(@sungam3r)
- Use
.ConfigureAwait(false)
on all awaits in library code
- Remove "caching" of GraphQL subscriptions to fix test case CanReconnectWithSameObservable
- Update dependencies
V4.0.1
- Fix preprocessing of requests for queries and mutations on full websocket transport
- Improve DI for
GraphQLLocalExecutionClient
V3.2.3
- Don't dispose
HttpClient
when disposing GraphQLHttpClient
if it has been injected via constructor (see #329)
V3.2.2
- swallow
NotImplementedException
for properties of ClientWebSocketOptions
(thanks @dwelch2344)
V3.2.1
- swallow
PlattformNotSupportedException
for properties of ClientWebSocketOptions
V3.2.0
- Allow configuration of dedicated websocket endpoint
- Fix WebAssembly detection
- Add delegate to set the connection init payload on a websocket (often used for authentication)
- Fix implementation of the Apollo GraphQL WebSocket Protocol
- Some minor optimizations