Comparing version 9.0.5 to 9.0.6
@@ -6,2 +6,22 @@ # Change Log | ||
## [9.0.6](https://github.com/wopian/kitsu/tree/master/packages/kitsu/compare/v9.0.5...v9.0.6) (2020-05-07) | ||
### Chores | ||
* **release:** update documentation ([03fc40e](https://github.com/wopian/kitsu/tree/master/packages/kitsu/commit/03fc40e)) | ||
### Documentation Changes | ||
* **kitsu:** add alias for delete to Quick Start in README ([c9ba1b6](https://github.com/wopian/kitsu/tree/master/packages/kitsu/commit/c9ba1b6)) | ||
* **kitsu:** fix URL to more examples ([d3d46ce](https://github.com/wopian/kitsu/tree/master/packages/kitsu/commit/d3d46ce)) | ||
* **kitsu:** remove node 12 notice ([6540e39](https://github.com/wopian/kitsu/tree/master/packages/kitsu/commit/6540e39)) | ||
* **kitsu:** remove unused URL from README ([bafbeeb](https://github.com/wopian/kitsu/tree/master/packages/kitsu/commit/bafbeeb)) | ||
* **kitsu:** update Quick Start in README ([f49064b](https://github.com/wopian/kitsu/tree/master/packages/kitsu/commit/f49064b)) | ||
## [9.0.5](https://github.com/wopian/kitsu/tree/master/packages/kitsu/compare/v9.0.4...v9.0.5) (2020-05-07) | ||
@@ -8,0 +28,0 @@ |
{ | ||
"version": "9.0.5", | ||
"version": "9.0.6", | ||
"name": "kitsu", | ||
@@ -50,3 +50,3 @@ "description": "Simple & lightweight JSON-API client for Kitsu and other compliant APIs", | ||
"axios": "^0.19.0", | ||
"kitsu-core": "^9.0.5", | ||
"kitsu-core": "^9.0.6", | ||
"pluralize": "^8.0.0" | ||
@@ -64,3 +64,3 @@ }, | ||
], | ||
"gitHead": "738f24bf326fca24562335f7601debcf90b42a7d", | ||
"gitHead": "6daa2fa94ca6b8226dc73001b5f4e443e299da13", | ||
"devDependencies": { | ||
@@ -67,0 +67,0 @@ "@size-limit/preset-small-lib": "~4.5.0" |
@@ -43,10 +43,8 @@ <h1 align=center>Kitsu</h1> | ||
| Package | Package<br> Size\* | Node | Chrome | Firefox | Safari | Edge | | ||
| -------: | :----------------: | :--: | :----: | :-----: | :----: | :--: | | ||
| `kitsu`† | ≤ 8.6 kb | 10+ | 79+ | 68+ | 12.1+ | 18+ | | ||
| Package | Package<br> Size\* | Node | Chrome | Firefox | Safari | Edge | | ||
| ------: | :----------------: | :--: | :----: | :-----: | :----: | :--: | | ||
| `kitsu` | ≤ 8.6 kb | 10+ | 79+ | 68+ | 12.1+ | 18+ | | ||
\* Including all dependencies, minified & gzipped | ||
† [Changes in Node 12][node12esm] and newer require the full path to be used if using ES Modules: `kitsu/index.mjs` | ||
## Response Comparison | ||
@@ -98,5 +96,7 @@ | ||
author: { | ||
id: '42' | ||
type: 'people' | ||
name: 'John' | ||
data: { | ||
id: '42' | ||
type: 'people' | ||
name: 'John' | ||
} | ||
} | ||
@@ -144,4 +144,5 @@ } | ||
api.fetch('anime') | ||
api.fetch('anime/1') | ||
api.fetch('anime', { filter: { id: 1 } }) | ||
api.fetch('anime/1/episodes') | ||
api.fetch('anime/1/relationships/episodes') | ||
@@ -159,3 +160,3 @@ // Creating resources (post/create) | ||
// Deleting resources | ||
// Deleting resources (delete/remove) | ||
api.remove('post', 1) | ||
@@ -217,3 +218,3 @@ | ||
[packages/kitsu/src/index.js:30-342](https://github.com/wopian/kitsu/blob/af7db19d0f8d98f14ff8cdde6d2f0a519249c5e0/packages/kitsu/src/index.js#L30-L342 "Source code on GitHub") | ||
[packages/kitsu/src/index.js:30-342](https://github.com/wopian/kitsu/blob/c9ba1b65f16980526aed9fecc7c1b5c8ff828db9/packages/kitsu/src/index.js#L30-L342 "Source code on GitHub") | ||
@@ -265,3 +266,3 @@ Creates a new `kitsu` instance | ||
[packages/kitsu/src/index.js:52-53](https://github.com/wopian/kitsu/blob/af7db19d0f8d98f14ff8cdde6d2f0a519249c5e0/packages/kitsu/src/index.js#L52-L53 "Source code on GitHub") | ||
[packages/kitsu/src/index.js:52-53](https://github.com/wopian/kitsu/blob/c9ba1b65f16980526aed9fecc7c1b5c8ff828db9/packages/kitsu/src/index.js#L52-L53 "Source code on GitHub") | ||
@@ -288,3 +289,3 @@ - **See: <https://www.npmjs.com/package/pluralize> for documentation | ||
[packages/kitsu/src/index.js:67-67](https://github.com/wopian/kitsu/blob/af7db19d0f8d98f14ff8cdde6d2f0a519249c5e0/packages/kitsu/src/index.js#L67-L67 "Source code on GitHub") | ||
[packages/kitsu/src/index.js:67-67](https://github.com/wopian/kitsu/blob/c9ba1b65f16980526aed9fecc7c1b5c8ff828db9/packages/kitsu/src/index.js#L67-L67 "Source code on GitHub") | ||
@@ -320,3 +321,3 @@ Get the current headers or add additional headers | ||
[packages/kitsu/src/index.js:111-111](https://github.com/wopian/kitsu/blob/af7db19d0f8d98f14ff8cdde6d2f0a519249c5e0/packages/kitsu/src/index.js#L111-L111 "Source code on GitHub") | ||
[packages/kitsu/src/index.js:111-111](https://github.com/wopian/kitsu/blob/c9ba1b65f16980526aed9fecc7c1b5c8ff828db9/packages/kitsu/src/index.js#L111-L111 "Source code on GitHub") | ||
@@ -369,3 +370,3 @@ Axios Interceptors (alias of `axios.interceptors`) | ||
[packages/kitsu/src/index.js:184-203](https://github.com/wopian/kitsu/blob/af7db19d0f8d98f14ff8cdde6d2f0a519249c5e0/packages/kitsu/src/index.js#L184-L203 "Source code on GitHub") | ||
[packages/kitsu/src/index.js:184-203](https://github.com/wopian/kitsu/blob/c9ba1b65f16980526aed9fecc7c1b5c8ff828db9/packages/kitsu/src/index.js#L184-L203 "Source code on GitHub") | ||
@@ -482,3 +483,3 @@ Fetch resources (alias `fetch`) | ||
[packages/kitsu/src/index.js:219-239](https://github.com/wopian/kitsu/blob/af7db19d0f8d98f14ff8cdde6d2f0a519249c5e0/packages/kitsu/src/index.js#L219-L239 "Source code on GitHub") | ||
[packages/kitsu/src/index.js:219-239](https://github.com/wopian/kitsu/blob/c9ba1b65f16980526aed9fecc7c1b5c8ff828db9/packages/kitsu/src/index.js#L219-L239 "Source code on GitHub") | ||
@@ -509,3 +510,3 @@ Update a resource (alias `update`) | ||
[packages/kitsu/src/index.js:262-281](https://github.com/wopian/kitsu/blob/af7db19d0f8d98f14ff8cdde6d2f0a519249c5e0/packages/kitsu/src/index.js#L262-L281 "Source code on GitHub") | ||
[packages/kitsu/src/index.js:262-281](https://github.com/wopian/kitsu/blob/c9ba1b65f16980526aed9fecc7c1b5c8ff828db9/packages/kitsu/src/index.js#L262-L281 "Source code on GitHub") | ||
@@ -543,3 +544,3 @@ Create a new resource (alias `create`) | ||
[packages/kitsu/src/index.js:294-312](https://github.com/wopian/kitsu/blob/af7db19d0f8d98f14ff8cdde6d2f0a519249c5e0/packages/kitsu/src/index.js#L294-L312 "Source code on GitHub") | ||
[packages/kitsu/src/index.js:294-312](https://github.com/wopian/kitsu/blob/c9ba1b65f16980526aed9fecc7c1b5c8ff828db9/packages/kitsu/src/index.js#L294-L312 "Source code on GitHub") | ||
@@ -567,3 +568,3 @@ Remove a resource (alias `remove`) | ||
[packages/kitsu/src/index.js:334-341](https://github.com/wopian/kitsu/blob/af7db19d0f8d98f14ff8cdde6d2f0a519249c5e0/packages/kitsu/src/index.js#L334-L341 "Source code on GitHub") | ||
[packages/kitsu/src/index.js:334-341](https://github.com/wopian/kitsu/blob/c9ba1b65f16980526aed9fecc7c1b5c8ff828db9/packages/kitsu/src/index.js#L334-L341 "Source code on GitHub") | ||
@@ -621,3 +622,3 @@ Get the authenticated user's data | ||
[more examples]: https://github.com/wopian/kitsu/tree/master/example | ||
[more examples]: https://github.com/wopian/kitsu/tree/master/packages/kitsu/example | ||
@@ -633,3 +634,1 @@ [kitsu.io api docs]: https://kitsu.docs.apiary.io | ||
[mit]: https://github.com/wopian/kitsu/blob/master/LICENSE.md | ||
[node12esm]: http://2ality.com/2019/04/nodejs-esm-impl.html#es-modules-on-npm |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
40007
620
Updatedkitsu-core@^9.0.6