Skip to content
This repository has been archived by the owner on Apr 14, 2023. It is now read-only.

Latest commit

 

History

History
176 lines (115 loc) · 7.61 KB

CHANGELOG.md

File metadata and controls

176 lines (115 loc) · 7.61 KB

Note: This is a cumulative changelog that outlines all of the Apollo Link project child package changes that were bundled into a release on a specific day.

2020-04-09

Improvements

2019-09-06

Improvements

2019-06-14

apollo-link 1.2.12

2019-03-14

apollo-link-dedup 1.0.18

  • Fixes an issue introduced in #984 where subscriber next and/or error calls might have already deleted the key the new dedupe changes were intended to help with.
    @JoviDeCroock in #988

2019-03-13

apollo-link-dedup 1.0.17

  • Fixes an issue caused by the DedupLink shared observable returning cleanup logic that unsubscribes from the real observable, without checking whether only one of the many (shared) subscribers are unsubscribing. This caused problems when using DedupLink in front of HttpLink, as this lead to HttpLink aborting HTTP requests while some callers were still waiting for a response.
    @ms in #984

2019-03-05

General

docs

apollo-link 1.2.9

apollo-link-error 1.1.8

apollo-link-batch-http 1.2.9

apollo-link-http 1.5.12

apollo-link-schema 1.2.0

  • Avoid bundling graphql/execution/execute into apollo-link-schema.
    @benjamn in #968

2019-02-01

General

apollo-link 1.2.8

2018-12-14

apollo-link-error 1.1.5

  • #530 added apollo-link-http-common as a dev dependency, when it should have been added as a normal dependency (since it's referenced by the production version of apollo-link-error). apollo-link-http-common has been switched around to be a production dependency.
    @hwillson in #891

General

  • Adjusted .npmignore settings to make sure all non essential files are excluded when published, for all child packages.
    @hwillson in #890

2018-12-13

apollo-link 1.2.5

  • Expose generics from graphql ExecutionResult on FetchResult.
    @rosskevin in #804

apollo-link-batch 1.1.6

  • Move the setting of the raw response in the context to apollo-link-batch-http.
    @03eltond in #814

apollo-link-batch-http 1.2.5

  • Make the raw response available in the context.
    @03eltond in #814

apollo-link-error 1.1.3

  • Changed networkError type to union type Error | ServerError | ServerParseError.
    @ikhoon in #530

apollo-link-http-common 0.2.7

  • Set an error name on errors being thrown.
    @ikhoon in #530

Docs