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

[WIP] 3.0 alpha #1742

Closed
wants to merge 10 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 0 additions & 22 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@ jobs:
- store_artifacts:
path: reports/junit



Linting:
docker: [ { image: 'circleci/node:8' } ]
steps:
Expand All @@ -49,23 +47,6 @@ jobs:
- run: npm i
- run: npm run type-check

Preact:
docker: [ { image: 'circleci/node:8' } ]
steps:
- checkout
- run: npm i
- run:
name: Jest suite
command: npm run test-preact -- --ci --testResultsProcessor="jest-junit"
environment:
JEST_JUNIT_OUTPUT: "reports/junit/js-test-results.xml"
- store_test_results:
path: reports/junit
- store_artifacts:
path: reports/junit



Browser:
docker: [ { image: 'circleci/node:8' } ]
steps:
Expand All @@ -82,7 +63,6 @@ jobs:
- store_artifacts:
path: reports/junit


Server:
docker: [ { image: 'circleci/node:8' } ]
steps:
Expand All @@ -99,7 +79,6 @@ jobs:
- store_artifacts:
path: reports/junit


Commonjs:
docker: [ { image: 'circleci/node:8' } ]
steps:
Expand Down Expand Up @@ -132,7 +111,6 @@ workflows:
- Node.js 9
- Linting
- Typecheck
- Preact
- Browser
- Server
- Commonjs
Expand Down
12 changes: 11 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change log

### vNext
### vNext (@latest)

* Fix regression on refetchQueries [#1794](https://github.com/apollographql/react-apollo/pull/1794)
* Added a new `called` prop for mutations [#1775](https://github.com/apollographql/react-apollo/pull/1775)
Expand All @@ -24,6 +24,16 @@

* bad build

### vNext (@canary)

* Remove compose and proptypes
* Drop support for Preact

### 3.0.0-alpha.0

* Refactor to use react 16.3 methods for strict mode compat
* Add initial support for async on <Query /> via asyncMode prop

### 2.1.0-beta.3

* Refactored and removed old `graphql` implementation in favor of new components
Expand Down
28 changes: 0 additions & 28 deletions jest.preact.config.json

This file was deleted.

Loading