Skip to content

Commit 4cac2f1

Browse files
committed
Merge branch 'release/1.0.1' into main
2 parents 4192d58 + 438fbd3 commit 4cac2f1

File tree

4 files changed

+116
-6
lines changed

4 files changed

+116
-6
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@
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.1] - 2021-12-08
7+
8+
### Changed
9+
10+
- The maximum PHP version is now 8.0. PHP 8.1 is not supported because it introduces a breaking change. The next major
11+
version of this package will add support for PHP 8.1.
12+
13+
### Fixed
14+
15+
- [#139](https://github.com/laravel-json-api/laravel/issues/139) Fix the `WhereHas` and `WhereDoesntHave` filters.
16+
Previously these were not iterating over the filters from the correct resource schema - they were iterating over
17+
the filters from the schema to which the relationship belonged. They now correctly iterate over the filters from the
18+
schema for the resource that is on the inverse side of the relationship.
19+
620
## [1.0.0] - 2021-07-31
721

822
### Added

README.md

+89-1
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,98 @@
55
Implement feature-rich [JSON:API](https://jsonapi.org) compliant APIs in your
66
[Laravel](https://laravel.com) applications. Build your next standards-compliant API today.
77

8+
### Why use JSON:API?
9+
10+
- Standardised, consistent APIs.
11+
- Feature rich - some of which are filtering, pagination, eager loading and sparse fieldsets.
12+
- Easy to understand.
13+
14+
### Why use Laravel JSON:API?
15+
16+
- Saves a lot of development time.
17+
- Highly maintainable code.
18+
- Great, extensive documentation.
19+
- Strong conventions, but also highly customisable.
20+
- Makes use of native Laravel features such as policies and form requests to make the shift easier for developers.
21+
- Beautiful, expressive Nova-style schemas.
22+
- Fully testable via expressive test helpers.
23+
24+
```php
25+
class PostSchema extends Schema
26+
{
27+
28+
/**
29+
* The model the schema corresponds to.
30+
*
31+
* @var string
32+
*/
33+
public static string $model = Post::class;
34+
35+
/**
36+
* The maximum include path depth.
37+
*
38+
* @var int
39+
*/
40+
protected int $maxDepth = 3;
41+
42+
/**
43+
* Get the resource fields.
44+
*
45+
* @return array
46+
*/
47+
public function fields(): array
48+
{
49+
return [
50+
ID::make(),
51+
BelongsTo::make('author')->type('users')->readOnly(),
52+
HasMany::make('comments')->readOnly(),
53+
Str::make('content'),
54+
DateTime::make('createdAt')->sortable()->readOnly(),
55+
DateTime::make('publishedAt')->sortable(),
56+
Str::make('slug'),
57+
BelongsToMany::make('tags'),
58+
Str::make('title')->sortable(),
59+
DateTime::make('updatedAt')->sortable()->readOnly(),
60+
];
61+
}
62+
63+
/**
64+
* Get the resource filters.
65+
*
66+
* @return array
67+
*/
68+
public function filters(): array
69+
{
70+
return [
71+
WhereIdIn::make($this),
72+
WhereIn::make('author', 'author_id'),
73+
];
74+
}
75+
76+
/**
77+
* Get the resource paginator.
78+
*
79+
* @return Paginator|null
80+
*/
81+
public function pagination(): ?Paginator
82+
{
83+
return PagePagination::make();
84+
}
85+
}
86+
```
87+
888
## Documentation
989

1090
See our website, [laraveljsonapi.io](https://laraveljsonapi.io)
1191

92+
### Tutorial
93+
94+
New to JSON:API and/or Laravel JSON:API? Then
95+
the [Laravel JSON:API tutorial](https://laraveljsonapi.io/docs/1.0/tutorial/)
96+
is a great way to learn!
97+
98+
Follow the tutorial to build a blog application with a JSON:API compliant API.
99+
12100
## Installation
13101

14102
Install using [Composer](https://getcomposer.org)
@@ -32,7 +120,7 @@ composer up laravel-json-api/* cloudcreativity/json-api-testing
32120
## Example Application
33121

34122
To view an example Laravel application that uses this package, see the
35-
[Dummy Application](https://github.com/laravel-json-api/laravel/tree/main/tests/dummy) within the tests folder.
123+
[Tutorial Application](https://github.com/laravel-json-api/tutorial-app).
36124

37125
## License
38126

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@
2323
}
2424
],
2525
"require": {
26-
"php": "^7.4|^8.0",
26+
"php": "^7.4|8.0.*",
2727
"ext-json": "*",
2828
"laravel-json-api/core": "^1.0.0",
29-
"laravel-json-api/eloquent": "^1.0.0",
29+
"laravel-json-api/eloquent": "^1.0.1",
3030
"laravel-json-api/encoder-neomerx": "^1.0.0",
3131
"laravel-json-api/exceptions": "^1.0.0",
3232
"laravel-json-api/spec": "^1.0.0",

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

+11-3
Original file line numberDiff line numberDiff line change
@@ -165,16 +165,24 @@ public function testSparseFieldSets(): void
165165

166166
$expected = $this->serializer
167167
->post($post)
168-
->only('slug', 'synopsis', 'title')
168+
->only('author', 'slug', 'synopsis', 'title')
169+
->replace('author', ['type' => 'users', 'id' => $post->author])
170+
->jsonSerialize();
171+
172+
$author = $this->serializer
173+
->user($post->author)
174+
->only('name')
169175
->jsonSerialize();
170176

171177
$response = $this
172178
->withoutExceptionHandling()
173179
->jsonApi('posts')
174-
->sparseFields('posts', ['slug', 'synopsis', 'title'])
180+
->sparseFields('posts', ['author', 'slug', 'synopsis', 'title'])
181+
->sparseFields('users', ['name'])
182+
->includePaths('author')
175183
->get(url('/api/v1/posts', $expected['id']));
176184

177-
$response->assertFetchedOneExact($expected);
185+
$response->assertFetchedOneExact($expected)->assertIncluded([$author]);
178186
}
179187

180188
public function testWithCount(): void

0 commit comments

Comments
 (0)