mirror of
https://github.com/CamHenlin/MessagesForMacintosh.git
synced 2024-11-22 10:32:39 +00:00
5.1 KiB
5.1 KiB
CHANGELOG
NOTE: This changelog is no longer maintained. Changes are now tracked in
the top level CHANGELOG.md
.
1.3.0
- Optimize repeated
apollo-cache-inmemory
reads by caching partial query results. As a consequence, watched queries will not be rebroadcast unless the data have changed. PR #3394
1.2.5
- No changes.
1.2.4
- No changes.
1.2.3
- Added optional generics to cache manipulation methods (typescript). PR #3541
- Restore non-enumerability of
resultFields[ID_KEY]
. PR #3544 - Cache query documents transformed by InMemoryCache. PR #3553
1.2.2
- Fixed an issue that caused fragment only queries to sometimes fail. Issue #3402 PR #3507
- Fixed cache invalidation for inlined mixed types in union fields within arrays. PR #3422
1.2.1
- Not documented
vNEXT
- Optimize repeated
apollo-cache-inmemory
reads by caching partial query results #3394
1.2.0
- Various optimizations for cache read performance PR #3300
- Fix typo in documentation
1.1.12
- Fix an edge case where fields that were unions of two types, one with an
id
, one without anid
, would cause the cache to throw while saving the result PR #3159 - Map coverage to original source
- Fixed bug with cacheRedirects not getting attached PR #3016
1.1.9
- Added
getCacheKey
function to cacheResolver context PR #2998 - Changed
cacheResolvers
tocacheRedirects
, added deprecation warning PR #3001
1.1.8
- Dependency updates
- Fix IntrospectionResultData type definition Issue #2959
1.1.7
- Update to latest apollo-utilities to support directives in cache
1.1.6 (unpublished)
- Update to latest apollo-utilities
1.1.5
- Update to latest apollo-cache base PR #2818
1.1.4
- Change access modifier for data from "private" to "protected", to allow InMemoryCache subclasses to access it.
1.1.3
- Improves performance of in memory cache
1.1.2
- Ensure that heuristics warnings do not fire in production PR #2611
1.1.1
- Change some access modifiers "private" to "protected" to allow code reuse by InMemoryCache subclasses.
- Improved rollup builds
1.1.0
- Improve errors for id mismatch when writing to the store
- Make it possible to swap the cache implementation. For example, you might
want to use a
Map
to store the normalized objects, which can be faster than writing by keys to anObject
. This also allows for custom use cases, such as emitting events on.set()
or.delete()
(think Observables), which was otherwise impossible without the use of Proxies, that are only available in some browsers. Unless you passed in thestore
to one of theapollo-cache-inmemory
functions, such as:writeQueryToStore
orwriteResultToStore
, no changes to your code are necessary. If you did access the cache's functions directly, all you need to do is add a.toObject()
call on the cache — review the changes to the tests for an example. For reasoning behind this change and more information, see Issue #2293.
1.0.0
- Don't broadcast query watchers during a transaction (for example, while mutation results are being processed) Issue #2221 PR #2358
readQuery
andreadFragment
return now the result instead ofCache.DiffResult
PR #2320
0.2.0-rc.1
- Move to named export to be consistent with rest of apollo ecosystem
0.2.0-beta.6
- Rename customResolvers to cacheResolvers with backwards compat
0.2.0-beta.5 and lower
- Fix error when missing __typename field in result PR #2225
- Refactored type usage
- Prevented logging on defered queries
- Refactored internal store from apollo-client into own package