Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update dependency ky to v0.24.0 #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Sep 18, 2018

This PR contains the following updates:

Package Type Update Change
ky dependencies minor 0.2.0 -> 0.24.0

Release Notes

sindresorhus/ky

v0.24.0

Compare Source

Breaking
  • Remove response property for the first argument passed to beforeRetry hooks (#​276) 9876da1
    You can access it on error.response instead. See #​276 for details.
Fixes
  • Fix handling of network errors for beforeRetry hook (#​276) 9876da1

v0.23.0

Compare Source

v0.22.0

Compare Source

v0.21.0

Compare Source

v0.20.0

Compare Source

v0.19.1

Compare Source

  • Fix the NormalizedOptions.headers TypeScript type (#​243)
  • Ensure HTTPError always has a defined message (#​249)

v0.19.0

Compare Source

  • Add TimeoutError and HTTPError to ky TypeScript namespace (#​241) 9c9dfe9
  • Delete Content-Type header for multipart requests (#​211) d547e89

v0.18.0

Compare Source

  • Fix request cancellation on timeout (#​238) 041e935
  • Add response to beforeRetry hook and change its parameter to be a single object (#​201) 3f3e14d
    - Migrate:
-(request, options, error, retryCount) => {
+({request, response, options, error, retryCount}) => {

v0.17.0

Compare Source

Breaking
  • Require Node.js 10 if you use it in Node.js 7c1d371
  • Move named exports to properties of default export (#​206) cf6ca95
    - HTTPError and TimeoutError are now properties on the default export ky instead of individual named exports.
    - If you use the UMD build, you no longer need the .default property: const ky = require('ky/umd').default;const ky = require('ky/umd');
Fixes

v0.16.2

Compare Source

v0.16.1

Compare Source

  • Remove content-type header check for FormData body (#​208) 2078a15

v0.16.0

Compare Source

Breaking
  • Hooks now always receive a Request instance as the first argument instead of the input URL, which could previously either be a string, Request, or URL (#​180) c5821a7
Enhancements
  • Pass all Ky options to hooks (#​188) a5c249e
  • Allow overriding the default accept headers (#​200) 65f38f9
  • Add ability to stop retries in beforeRetry hooks (#​198) 0bc6fb1
  • beforeRequest hooks can now return a Request instance to replace the existing request (#​180)
Fixes
Docs
Meta

v0.15.0

Compare Source

v0.14.0

Compare Source

v0.13.0

Compare Source

Breaking
  • Pass input & options arguments to beforeRequest & afterResponse hooks (#​163) 9181aa2
 await ky('…', {
 	hooks: {
 		beforeRequest: [
-			options => {}
+			(input, options) => {}
 		]
 		afterResponse: [
-			response => {}
+			(input, options, response) => {}
 		]
 	}
 });
Enhancements
  • Make the retry option more powerful (#​110) d4ddb7a
    You can now control which HTTP methods and status codes that should cause a retry.
  • Simplify the Options TypeScript type (#​165) bfdc9b5
    This should make it easier to wrap Ky when using TypeScript.

v0.12.0

Compare Source

v0.11.2

Compare Source

  • Fix timeout regression that caused Node.js to not terminate (#​145) 30450d8

v0.11.1

Compare Source

  • Fix TypeScript 3.5 compatibility 93d2faf

v0.11.0

Compare Source

Breaking (possibly):

Enhancements:

Fixes:

  • Fix ky.extend() not inheriting its parent and add ky.create() (#​128) 0a6beb1

v0.10.0

Compare Source

Breaking (for TypeScript users only):

  • Don't export the Ky TypeScript namespace 7114ba3

Enhancements:

  • Set accept header for Ky shortcut methods (#​118) afc18ea
  • Make it possible to install Ky in Node.js 8 even though it's not support (This is to re-enable Node.js 8 support in ky-universal) fcffa18

Fixes:

  • Fix regression for environments without AbortController, for example, React Native (#​125) a012fd3

v0.9.1

Compare Source

v0.9.0

Compare Source

  • Fix afterResponse hook & retry not being called (#​95) cd33a63
  • Improve TypeScript types for get and head methods (#​87) 66ea8a7

v0.8.0

Compare Source

v0.7.1

Compare Source

v0.7.0

Compare Source

  • Potentially breaking for TypeScript users: Use more specific JSON types in TypeScript (#​82) 8111684
  • Add a UMD build to support older environments (#​81) 90bc68d

v0.6.0

Compare Source

Breaking:

  • Require Node.js 10 when used in Node.js b205fe3

Other:

  • Avoid use of globals where possible (#​74) ab86789
    (This should ease the use of Ky in non-browser environments)
  • Fix the throwHttpErrors option for POST requests (#​77) 7c7f5fe
  • TypeScript definition improvements c504230

v0.5.2

Compare Source

v0.5.1

Compare Source

v0.5.0

Compare Source

v0.4.1

Compare Source

Fixes some issues with the TypeScript definition.

v0.4.0

Compare Source

v0.3.0

Compare Source


Renovate configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

♻️ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by WhiteSource Renovate. View repository job log here.

@renovate renovate bot changed the title fix(deps): update dependency ky to v0.3.0 fix(deps): update dependency ky to v0.4.0 Sep 29, 2018
@renovate renovate bot changed the title fix(deps): update dependency ky to v0.4.0 fix(deps): update dependency ky to v0.4.1 Oct 10, 2018
@renovate renovate bot changed the title fix(deps): update dependency ky to v0.4.1 fix(deps): update dependency ky to v0.5.0 Nov 2, 2018
@renovate renovate bot changed the title fix(deps): update dependency ky to v0.5.0 fix(deps): update dependency ky to v0.5.1 Nov 6, 2018
@renovate renovate bot changed the title fix(deps): update dependency ky to v0.5.1 fix(deps): update dependency ky to v0.5.2 Dec 29, 2018
@renovate renovate bot changed the title fix(deps): update dependency ky to v0.5.2 fix(deps): update dependency ky to v0.6.0 Jan 8, 2019
@renovate renovate bot changed the title fix(deps): update dependency ky to v0.6.0 fix(deps): update dependency ky to v0.7.0 Jan 20, 2019
@renovate renovate bot changed the title fix(deps): update dependency ky to v0.7.0 fix(deps): update dependency ky to v0.7.1 Jan 28, 2019
@renovate renovate bot changed the title fix(deps): update dependency ky to v0.7.1 fix(deps): update dependency ky to v0.8.0 Feb 9, 2019
@renovate renovate bot changed the title fix(deps): update dependency ky to v0.8.0 fix(deps): update dependency ky to v0.9.0 Feb 22, 2019
@renovate renovate bot changed the title fix(deps): update dependency ky to v0.9.0 fix(deps): update dependency ky to v0.9.1 Apr 9, 2019
@renovate renovate bot changed the title fix(deps): update dependency ky to v0.9.1 fix(deps): update dependency ky to v0.10.0 Apr 22, 2019
@vercel vercel bot had a problem deploying to staging April 22, 2019 08:57 Failure
@renovate renovate bot changed the title fix(deps): update dependency ky to v0.10.0 fix(deps): update dependency ky to v0.11.0 May 12, 2019
@vercel vercel bot had a problem deploying to staging May 12, 2019 07:52 Failure
@renovate renovate bot changed the title fix(deps): update dependency ky to v0.11.0 fix(deps): update dependency ky to v0.11.1 Jun 19, 2019
@renovate renovate bot changed the title fix(deps): update dependency ky to v0.12.0 fix(deps): update dependency ky to v0.13.0 Sep 4, 2019
@vercel vercel bot had a problem deploying to staging September 4, 2019 17:58 Failure
@renovate renovate bot changed the title fix(deps): update dependency ky to v0.13.0 fix(deps): update dependency ky to v0.14.0 Sep 30, 2019
@vercel vercel bot had a problem deploying to staging September 30, 2019 11:56 Failure
@renovate renovate bot changed the title fix(deps): update dependency ky to v0.14.0 fix(deps): update dependency ky to v0.15.0 Nov 10, 2019
@vercel vercel bot had a problem deploying to staging November 10, 2019 20:00 Failure
@renovate renovate bot changed the title fix(deps): update dependency ky to v0.15.0 fix(deps): update dependency ky to v0.16.1 Dec 14, 2019
@vercel vercel bot requested a deployment to staging December 14, 2019 17:43 Abandoned
@renovate renovate bot changed the title fix(deps): update dependency ky to v0.16.1 fix(deps): update dependency ky to v0.17.0 Feb 8, 2020
@renovate renovate bot changed the title fix(deps): update dependency ky to v0.17.0 fix(deps): update dependency ky to v0.19.0 Mar 10, 2020
@renovate renovate bot changed the title fix(deps): update dependency ky to v0.19.0 fix(deps): update dependency ky to v0.19.1 Apr 26, 2020
@vercel vercel bot had a problem deploying to Preview April 26, 2020 10:58 Failure
@renovate renovate bot changed the title fix(deps): update dependency ky to v0.19.1 fix(deps): update dependency ky to v0.20.0 Jul 1, 2020
@renovate renovate bot changed the title fix(deps): update dependency ky to v0.20.0 fix(deps): update dependency ky to v0.23.0 Aug 22, 2020
@vercel
Copy link

vercel bot commented Aug 22, 2020

This pull request is being automatically deployed with Vercel (learn more).
To see the status of your deployment, click below or on the icon next to each commit.

🔍 Inspect: https://vercel.com/nju33/csv-diff-server/lwh2vro58
✅ Preview: In Progress

[Deployment for 9b1180a failed]

@renovate renovate bot changed the title fix(deps): update dependency ky to v0.23.0 fix(deps): update dependency ky to v0.24.0 Oct 28, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant