Skip to content

Commit 4192d58

Browse files
committed
Merge branch 'release/1.0.0' into main
2 parents 5dbb358 + 71f4387 commit 4192d58

File tree

7 files changed

+51
-14
lines changed

7 files changed

+51
-14
lines changed

CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,31 @@
33
All notable changes to this project will be documented in this file. This project adheres to
44
[Semantic Versioning](http://semver.org/) and [this changelog format](http://keepachangelog.com/).
55

6+
## [1.0.0] - 2021-07-31
7+
8+
### Added
9+
10+
- New relationship filter classes: `Has`, `WhereHas`, `WhereDoesntHave`. Refer to
11+
the [filter documentation](https://laraveljsonapi.io/docs/1.0/schemas/filters.html#available-filters) for details.
12+
13+
### Changed
14+
15+
- **BREAKING: Countable Relationships.** This feature is now turned off by default. Although included in the 1.0
16+
release, this feature is **not considered production-ready**. This is because we plan to make breaking changes to it,
17+
which will change how the client requests countable relationships. As such, this feature is considered
18+
highly-experimental and developers must opt-in to it by calling the `canCount()` method on a relationship. Refer to
19+
the [Countable relationships chapter](https://laraveljsonapi.io/docs/1.0/digging-deeper/countable.html) in the
20+
documentation for more details.
21+
- **BREAKING: Cursor Pagination.** Laravel now has its own cursor pagination feature. We have therefore moved our
22+
implementation into its own
23+
package: [laravel-json-api/cursor-pagination](https://github.com/laravel-json-api/cursor-pagination)
24+
This change has been made because it makes sense for the in-built cursor pagination implementation to use Laravel's
25+
cursor pagination implementation rather than our own custom one. Support for Laravel's cursor pagination will be added
26+
during the `1.x` release cycle. If you are already using our cursor implementation, you can migrate in two easy steps:
27+
1. Install the new package: `composer require laravel-json-api/cursor-pagination`
28+
2. In any schemas using the cursor pagination, change the import statement
29+
from `LaravelJsonApi\Eloquent\Pagination\CursorPagination` to `LaravelJsonApi\CursorPagination\CursorPagination`.
30+
631
## [1.0.0-beta.5] - 2021-07-10
732

833
### Added

README.md

+10
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,16 @@ composer require laravel-json-api/laravel
1919

2020
See our documentation for further installation instructions.
2121

22+
## Upgrading
23+
24+
When upgrading you typically want to upgrade this package and all our related packages. This is the recommended way:
25+
26+
```bash
27+
composer require laravel-json-api/laravel --no-update
28+
composer require laravel-json-api/testing --dev --no-update
29+
composer up laravel-json-api/* cloudcreativity/json-api-testing
30+
```
31+
2232
## Example Application
2333

2434
To view an example Laravel application that uses this package, see the

composer.json

+10-9
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,17 @@
2525
"require": {
2626
"php": "^7.4|^8.0",
2727
"ext-json": "*",
28-
"laravel-json-api/core": "^1.0.0-beta.5",
29-
"laravel-json-api/eloquent": "^1.0.0-beta.6",
30-
"laravel-json-api/encoder-neomerx": "^1.0.0-beta.1",
31-
"laravel-json-api/exceptions": "^1.0.0-beta.4",
32-
"laravel-json-api/spec": "^1.0.0-beta.2",
33-
"laravel-json-api/validation": "^1.0.0-beta.2",
28+
"laravel-json-api/core": "^1.0.0",
29+
"laravel-json-api/eloquent": "^1.0.0",
30+
"laravel-json-api/encoder-neomerx": "^1.0.0",
31+
"laravel-json-api/exceptions": "^1.0.0",
32+
"laravel-json-api/spec": "^1.0.0",
33+
"laravel-json-api/validation": "^1.0.0",
3434
"laravel/framework": "^8.30"
3535
},
3636
"require-dev": {
37-
"laravel-json-api/hashids": "^1.0.0-beta.3",
38-
"laravel-json-api/testing": "^1.0.0-beta.1",
37+
"laravel-json-api/hashids": "^1.0.0",
38+
"laravel-json-api/testing": "^1.0.0",
3939
"orchestra/testbench": "^6.9",
4040
"phpunit/phpunit": "^9.5"
4141
},
@@ -54,7 +54,8 @@
5454
},
5555
"extra": {
5656
"branch-alias": {
57-
"dev-develop": "1.x-dev"
57+
"dev-develop": "1.x-dev",
58+
"dev-2.x": "2.x-dev"
5859
},
5960
"laravel": {
6061
"aliases": {

tests/dummy/app/JsonApi/V1/Posts/PostSchema.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -69,18 +69,18 @@ public function fields(): array
6969
return [
7070
HashId::make()->alreadyHashed()->withLength(10),
7171
BelongsTo::make('author')->type('users')->readOnly(),
72-
HasMany::make('comments')->readOnly(),
72+
HasMany::make('comments')->canCount()->readOnly(),
7373
Str::make('content'),
7474
DateTime::make('createdAt')->sortable()->readOnly(),
7575
SoftDelete::make('deletedAt')->sortable(),
7676
MorphToMany::make('media', [
7777
BelongsToMany::make('images'),
7878
BelongsToMany::make('videos'),
79-
]),
79+
])->canCount(),
8080
DateTime::make('publishedAt')->sortable(),
8181
Str::make('slug'),
8282
Str::make('synopsis'),
83-
BelongsToMany::make('tags')->mustValidate(),
83+
BelongsToMany::make('tags')->canCount()->mustValidate(),
8484
Str::make('title')->sortable(),
8585
DateTime::make('updatedAt')->sortable()->readOnly(),
8686
];

tests/dummy/app/JsonApi/V1/Tags/TagSchema.php

+2
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,12 @@ public function fields(): array
4848
DateTime::make('createdAt')->sortable()->readOnly(),
4949
Str::make('name')->sortable(),
5050
BelongsToMany::make('posts')
51+
->canCount()
5152
->cannotEagerLoad()
5253
->readOnly(),
5354
DateTime::make('updatedAt')->sortable()->readOnly(),
5455
BelongsToMany::make('videos')
56+
->canCount()
5557
->cannotEagerLoad()
5658
->readOnly(),
5759
];

tests/dummy/app/JsonApi/V1/Videos/VideoSchema.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public function fields(): array
4646
return [
4747
ID::make()->uuid()->clientIds(),
4848
DateTime::make('createdAt')->sortable()->readOnly(),
49-
BelongsToMany::make('tags'),
49+
BelongsToMany::make('tags')->canCount(),
5050
Str::make('title')->sortable(),
5151
DateTime::make('updatedAt')->sortable()->readOnly(),
5252
Str::make('url'),

tests/dummy/tests/Api/V1/Posts/IndexTest.php

-1
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,6 @@ public function testWithCount(): void
245245
Post::factory()->create(['published_at' => null]);
246246

247247
$response = $this
248-
->withoutExceptionHandling()
249248
->jsonApi()
250249
->expects('posts')
251250
->query(['withCount' => 'tags'])

0 commit comments

Comments
 (0)