UNPKG

2.04 kBMarkdownView Raw
1# Change log
2
3### vNEXT
4
5### 1.5.3
6- updated dependency on `apolloLink.httpCommon` [#522](https://github.com/apollographql/apollo-link/pull/522)
7
8### 1.5.2
9- fix issue where execution result with only `errors` key fired the `next` event
10- Add missing rollup alias and make http-common exported as `apolloLink.httpCommon` [#522](https://github.com/apollographql/apollo-link/pull/522)
11
12### 1.5.1
13- update apollo link with zen-observable-ts [PR#515](https://github.com/apollographql/apollo-link/pull/515)
14
15### 1.5.0
16- New useGETForQueries option: if set, uses GET for queries (but not mutations)
17
18### 1.4.0
19- move logic to apollo-link-http-core [PR#364](https://github.com/apollographql/apollo-link/pull/364)
20- follow the spec properly for GET requests [PR#490](https://github.com/apollographql/apollo-link/pull/490)
21- ApolloLink upgrade
22
23### 1.3.3
24- ApolloLink upgrade
25- Allow graphql results to fire even if there is a network error
26
27### 1.3.2
28- Update to graphql@0.12
29
30### 1.3.1
31- export options as named interface [TypeScript]
32- Fix typescript bug with destructuring of parameter in createHttpLink ([#189](https://github.com/apollographql/apollo-link/issues/189))
33
34### 1.3.0
35- changed to initially parsing response as text to improve error handling
36- cleaned up error handling types and added docs
37- changed peer-dependency of apollo-link to actual dependency
38
39### 1.2.0
40- moved to better rollup build
41- support for persisted queries by opting out of sending the query
42
43### v1.1.0
44- support dynamic endpoints using `uri` on the context
45- the request not attaches the raw response as `response` on the context. This can be used to access response headers or more
46
47### v1.0.0
48- official release, not changes
49
50### v0.9.0
51- changed `fetcherOptions` to be `fetchOptions` and added a test for using 'GET' requests
52
53### v0.8.0
54- throw error on empty ExectionResult (missing)
55- support setting credentials, headers, and fetcherOptions in the setup of the link
56- removed sending of context to the server and allowed opt-in of sending extensions