Skip to content

Commit

Permalink
feat: bump JS deps
Browse files Browse the repository at this point in the history
  • Loading branch information
dunglas committed Aug 28, 2020
1 parent 39651ec commit 32d5e8c
Show file tree
Hide file tree
Showing 13 changed files with 922 additions and 898 deletions.
24 changes: 14 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,22 @@

## 2.5.7

* Doctrine: Fix missing ManagerRegistry class (#3684)
* Swagger: Allow subresources context to be added (#3685)
* Swagger: Fix pagination documentation on subresources (#3678)
* Doctrine: Order filter doesn't throw anymore with numeric key (#3673 #3687)
* Subresource: Fix query when using a custom identifier (#3529 and #3671)
* Compatibility with Symfony 5.1 (#3589 and #3688)
* Resource `Cache-Control` HTTP header can be private (#3543)
* Doctrine: Fix missing `ManagerRegistry` class (#3684)
* Doctrine: Order filter doesn't throw anymore with numeric key (#3673 and #3687)
* Doctrine: Fix ODM check change tracking deferred (#3629)
* Doctrine: Allow 2inflector version 2.0 (#3607)
* OpenAPI: Allow subresources context to be added (#3685)
* OpenAPI: Fix pagination documentation on subresources (#3678)
* Subresource: Fix query when using a custom identifier (#3529 and #3671)
* GraphQL: Fix relation types without Doctrine (#3591)
* HTTP: Resource Cache-Control HTTP header can be private (#3543)
* GraphQL: Compatibility with graphql-php ^14.0 (#3621 and #3654)
* Doctrine: Allow 2.0 inflector (#3607)
* Symfony: Handle 5.1 deprecations (#3589)
* GraphQL: Fix DTO relations (#3594)
* GraphQL: Fix DTO relations (#3594)
* GraphQL: Compatibility with graphql-php version 14 (#3621 and #3654)
* Docs: Upgrade Swagger UI to version 3.32.5 (#3693)
* Docs:Upgrade ReDoc to version 2.0.0-rc.40 (#3693)
* Docs:Upgrade GraphiQL to version 1.0.3 (#3693)
* Docs:Upgrade GraphQL Playground to version 1.7.23 (#3693)

## 2.5.6

Expand Down
10 changes: 5 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,19 +73,19 @@ All Pull Requests must include [this header](.github/PULL_REQUEST_TEMPLATE.md).

### Tests

On `api-platform/core` there are two kinds of tests: unit (`phpunit`) and integration tests (`behat`).
On `api-platform/core` there are two kinds of tests: unit (`phpunit` through `simple-phpunit`) and integration tests (`behat`).

Both `phpunit` and `behat` are development dependencies and should be available in the `vendor` directory.
Both `simple-phpunit` and `behat` are development dependencies and should be available in the `vendor` directory.

#### PHPUnit and Coverage Generation

To launch unit tests:

vendor/bin/phpunit --stop-on-failure -vvv
vendor/bin/simple-phpunit --stop-on-failure -vvv

If you want coverage, you will need the `pcov` PHP extension and run:

vendor/bin/phpunit --coverage-html coverage -vvv --stop-on-failure
vendor/bin/simple-phpunit --coverage-html coverage -vvv --stop-on-failure

Sometimes there might be an error with too many open files when generating coverage. To fix this, you can increase the `ulimit`, for example:

Expand Down Expand Up @@ -138,7 +138,7 @@ If you include code from another project, please mention it in the Pull Request

# Releases

This section is dedicated to maintainers.
This section is for maintainers.

1. Update the JavaScript dependencies by running `./update-js.sh` (always check if it works in a browser)
2. Update the `CHANGELOG.md` file (be sure to include Pull Request numbers when appropriate)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,14 +161,14 @@
position: relative;
}

.graphiql-container .variable-editor {
.graphiql-container .secondary-editor {
display: flex;
flex-direction: column;
height: 30px;
position: relative;
}

.graphiql-container .variable-editor-title {
.graphiql-container .secondary-editor-title {
background: #eeeeee;
border-bottom: 1px solid #d6d6d6;
border-top: 1px solid #e0e0e0;
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

1,538 changes: 813 additions & 725 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit 32d5e8c

Please sign in to comment.