nuxt / http

Universal HTTP Module for Nuxt.js
https://http.nuxtjs.org
MIT License
229 stars 51 forks source link

chore(deps): update dependency ky to ^0.13.0 #70

Closed renovate[bot] closed 5 years ago

renovate[bot] commented 5 years ago

This PR contains the following updates:

Package Type Update Change
ky dependencies minor ^0.12.0 -> ^0.13.0

Release Notes

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

Renovate configuration

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

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

:recycle: Rebasing: Whenever PR becomes conflicted, or if you modify the PR title to begin with "rebase!".

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



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

codecov-io commented 5 years ago

Codecov Report

Merging #70 into dev will not change coverage. The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##              dev      #70   +/-   ##
=======================================
  Coverage   97.05%   97.05%           
=======================================
  Files           1        1           
  Lines          34       34           
  Branches       16       16           
=======================================
  Hits           33       33           
  Misses          1        1

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 4242fe0...f136328. Read the comment docs.