-
Notifications
You must be signed in to change notification settings - Fork 344
Conversation
Note - tests here will fail until |
Could we merge apollographql/apollo-client#5541 and use |
Codecov Report
@@ Coverage Diff @@
## master #1158 +/- ##
=========================================
Coverage ? 95.46%
=========================================
Files ? 12
Lines ? 353
Branches ? 87
=========================================
Hits ? 337
Misses ? 16
Partials ? 0
Continue to review full report at Codecov.
|
Removes: - apollo-link - apollo-link-http-common - apollo-link-http
@apollo/client is now a dependency of all Apollo Link packages. This commit adjusts the remaining Apollo Link packages to leverage the common link code now bundled into @apollo/client.
These are only be used by this test, so we'll create a copy of them here to stop re-exporting them from `@apollo/client`.
Link deduplication now happens automatically in Apollo Client.
(which isn't available yet but will be soon)
38d79c3
to
aaa89d5
Compare
- apollo-link-batch-http@2.0.0-beta.0 - apollo-link-batch@2.0.0-beta.0 - apollo-link-context@2.0.0-beta.0 - apollo-link-error@2.0.0-beta.0 - apollo-link-polling@2.0.0-beta.0 - apollo-link-retry@3.0.0-beta.0 - apollo-link-schema@2.0.0-beta.0 - apollo-link-ws@2.0.0-beta.0 - zen-observable-ts@1.0.0-beta.0
The following
These have a dependency on |
We'll manage all usage instructions in one central location, within the Apollo Client docs.
- @apollo/link-batch-http@2.0.0-beta.2 - @apollo/link-batch@2.0.0-beta.2 - @apollo/link-context@2.0.0-beta.2 - @apollo/link-error@2.0.0-beta.2 - @apollo/link-polling@2.0.0-beta.2 - @apollo/link-retry@2.0.0-beta.2 - @apollo/link-schema@2.0.0-beta.2 - @apollo/link-ws@2.0.0-beta.2 - zen-observable-ts@1.0.0-beta.2
- @apollo/link-batch-http@2.0.0-beta.3 - @apollo/link-batch@2.0.0-beta.3 - @apollo/link-context@2.0.0-beta.3 - @apollo/link-error@2.0.0-beta.3 - @apollo/link-polling@2.0.0-beta.3 - @apollo/link-retry@2.0.0-beta.3 - @apollo/link-schema@2.0.0-beta.3 - @apollo/link-ws@2.0.0-beta.3
@hwillson could you publish with |
We've decided to move the rest of the links in this repo over to the Apollo Client repo (details: apollographql/apollo-client#6577). |
Core Apollo Link functionality is being merged into Apollo Client 3. This PR removes the functionality that is going to be part of Apollo Client 3, and updates the remaining packages to include the common functionality they need from
@apollo/client
.Related: