Comparing version 9.0.6 to 9.0.7
@@ -6,2 +6,23 @@ # Change Log | ||
## [9.0.7](https://github.com/wopian/kitsu/tree/master/packages/kitsu/compare/v9.0.6...v9.0.7) (2020-05-19) | ||
### Chores | ||
* **release:** update documentation ([523553e](https://github.com/wopian/kitsu/tree/master/packages/kitsu/commit/523553e)) | ||
### Documentation Changes | ||
* **kitsu:** link to axios docs for axiosOptions and interceptors ([b678290](https://github.com/wopian/kitsu/tree/master/packages/kitsu/commit/b678290)) | ||
### Other Changes | ||
* Update MIGRATING.md ([c2fb17e](https://github.com/wopian/kitsu/tree/master/packages/kitsu/commit/c2fb17e)) | ||
## [9.0.6](https://github.com/wopian/kitsu/tree/master/packages/kitsu/compare/v9.0.5...v9.0.6) (2020-05-07) | ||
@@ -8,0 +29,0 @@ |
{ | ||
"version": "9.0.6", | ||
"version": "9.0.7", | ||
"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.6", | ||
"kitsu-core": "^9.0.7", | ||
"pluralize": "^8.0.0" | ||
@@ -64,3 +64,3 @@ }, | ||
], | ||
"gitHead": "6daa2fa94ca6b8226dc73001b5f4e443e299da13", | ||
"gitHead": "65d3de7037e3a7a658a77b7c641eb894d28ac38e", | ||
"devDependencies": { | ||
@@ -67,0 +67,0 @@ "@size-limit/preset-small-lib": "~4.5.0" |
@@ -11,3 +11,3 @@ <h1 align=center>Kitsu</h1> | ||
<p align=center> | ||
<a href=https://travis-ci.org/wopian/kitsu><img alt=travis src=https://flat.badgen.net/travis/wopian/kitsu></a> | ||
<a href=https://travis-ci.com/wopian/kitsu><img alt=travis src=https://flat.badgen.net/travis/wopian/kitsu></a> | ||
<a href="https://packagephobia.now.sh/result?p=kitsu"><img alt=packagephobia src=https://flat.badgen.net/packagephobia/install/kitsu></a> | ||
@@ -32,3 +32,3 @@ <a href=https://github.com/wopian/kitsu/graphs/contributors><img alt=contributors src=https://flat.badgen.net/github/contributors/wopian/kitsu></a> | ||
# | ||
# | ||
@@ -216,3 +216,3 @@ ## Features | ||
[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") | ||
[packages/kitsu/src/index.js:30-342](https://github.com/wopian/kitsu/blob/b67829002325934b88c342ed3344f48113ce843e/packages/kitsu/src/index.js#L30-L342 "Source code on GitHub") | ||
@@ -228,5 +228,5 @@ Creates a new `kitsu` instance | ||
- `options.resourceCase` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** `kebab`, `snake` or `none`. If `kebab`, `/libraryEntries` will become `/library-entries`. If `snake`, `/libraryEntries` will become `/library_entries`, If `none`, `/libraryEntries` will be unchanged (default `kebab`) | ||
- `options.pluralize` **[boolean](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean)** If `true`, `/user` will become `/users` in the URL request and `type` will be pluralized in post, patch and delete requests - `user` -> `users` (default `true`) | ||
- `options.pluralize` **[boolean](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean)** If `true`, `/user` will become `/users` in the URL request and `type` will be pluralized in POST, PATCH and DELETE requests (default `true`) | ||
- `options.timeout` **[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number)** Set the request timeout in milliseconds (default `30000`) | ||
- `options.axiosOptions` **[Object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)** Additional options for the axios instance | ||
- `options.axiosOptions` **[Object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)** Additional options for the axios instance (see [axios/axios#request-config](https://github.com/axios/axios#request-config) for details) | ||
@@ -265,3 +265,3 @@ #### Examples | ||
[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") | ||
[packages/kitsu/src/index.js:52-53](https://github.com/wopian/kitsu/blob/b67829002325934b88c342ed3344f48113ce843e/packages/kitsu/src/index.js#L52-L53 "Source code on GitHub") | ||
@@ -288,3 +288,3 @@ - **See: <https://www.npmjs.com/package/pluralize> for documentation | ||
[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") | ||
[packages/kitsu/src/index.js:67-67](https://github.com/wopian/kitsu/blob/b67829002325934b88c342ed3344f48113ce843e/packages/kitsu/src/index.js#L67-L67 "Source code on GitHub") | ||
@@ -320,7 +320,7 @@ Get the current headers or add additional headers | ||
[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") | ||
[packages/kitsu/src/index.js:111-111](https://github.com/wopian/kitsu/blob/b67829002325934b88c342ed3344f48113ce843e/packages/kitsu/src/index.js#L111-L111 "Source code on GitHub") | ||
Axios Interceptors (alias of `axios.interceptors`) | ||
You can intercept responses before they are handled by `get`, `post`, `patch` and `delete` and before requests are sent to the API server. | ||
You can intercept responses before they are handled by `get`, `post`, `patch` and `delete` and before requests are sent to the API server. See [axios/axios#interceptors](https://github.com/axios/axios#interceptors) for details. | ||
@@ -369,3 +369,3 @@ ##### Examples | ||
[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") | ||
[packages/kitsu/src/index.js:184-203](https://github.com/wopian/kitsu/blob/b67829002325934b88c342ed3344f48113ce843e/packages/kitsu/src/index.js#L184-L203 "Source code on GitHub") | ||
@@ -482,3 +482,3 @@ Fetch resources (alias `fetch`) | ||
[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") | ||
[packages/kitsu/src/index.js:219-239](https://github.com/wopian/kitsu/blob/b67829002325934b88c342ed3344f48113ce843e/packages/kitsu/src/index.js#L219-L239 "Source code on GitHub") | ||
@@ -509,3 +509,3 @@ Update a resource (alias `update`) | ||
[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") | ||
[packages/kitsu/src/index.js:262-281](https://github.com/wopian/kitsu/blob/b67829002325934b88c342ed3344f48113ce843e/packages/kitsu/src/index.js#L262-L281 "Source code on GitHub") | ||
@@ -543,3 +543,3 @@ Create a new resource (alias `create`) | ||
[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") | ||
[packages/kitsu/src/index.js:294-312](https://github.com/wopian/kitsu/blob/b67829002325934b88c342ed3344f48113ce843e/packages/kitsu/src/index.js#L294-L312 "Source code on GitHub") | ||
@@ -567,3 +567,3 @@ Remove a resource (alias `remove`) | ||
[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") | ||
[packages/kitsu/src/index.js:334-341](https://github.com/wopian/kitsu/blob/b67829002325934b88c342ed3344f48113ce843e/packages/kitsu/src/index.js#L334-L341 "Source code on GitHub") | ||
@@ -570,0 +570,0 @@ Get the authenticated user's data |
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
40731
Updatedkitsu-core@^9.0.7