multei / web

Multei web app
https://multei.com.br
MIT License
3 stars 2 forks source link

chore(deps): update dependency wait-on to v5 #189

Closed renovate[bot] closed 4 years ago

renovate[bot] commented 4 years ago

This PR contains the following updates:

Package Type Update Change
wait-on devDependencies major 4.0.2 -> 5.0.0

Release Notes

jeffbski/wait-on ### [`v5.0.0`](https://togithub.com/jeffbski/wait-on/releases/v5.0.0) [Compare Source](https://togithub.com/jeffbski/wait-on/compare/v4.0.2...v5.0.0) #### Switch HTTP client from request to axios Since the `request` package is no longer receiving updates, wait-on switched to using `axios`. Attempt to keep the same wait-on options as much as possible. These breaking changes occurred in the switch: 1. There is only one option for redirects `followRedirect: true|false` (defaults to true). 2. `httpSignature` is not implemented in axios and now not available. (If this feature is still desired, please help by providing a pull request to implement it.) 3. `auth` allows only `username` and `password` but not the previous aliases `user` and `pass` #### add optional validateStatus fn property If `validateStatus` property is provided in the config and set to a function, it will use this to validate whether a status is valid. The default validateStatus if not provided is ```js validateStatus: function (status) { return status >= 200 && status < 300; } ``` To also allow a 401 unauthorized as a valid status ```js validateStatus: function (status) { return status === 401 || (status >= 200 && status < 300); } ```

Renovate configuration

:date: Schedule: "every weekend" (UTC).

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

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

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



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

netlify[bot] commented 4 years ago

Preview deployed with success. Look for the URL in Details.

Built with commit b3203527bc745a979b0ffb359f52105f15313da0

https://deploy-preview-189--multei.netlify.app

codecov[bot] commented 4 years ago

Codecov Report

Merging #189 into master will not change coverage. The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##           master     #189   +/-   ##
=======================================
  Coverage   90.47%   90.47%           
=======================================
  Files           4        4           
  Lines          21       21           
  Branches        2        2           
=======================================
  Hits           19       19           
  Misses          2        2           

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 4d3c30a...b320352. Read the comment docs.