kevinoid / swagger-spec-validator

Validate an OpenAPI/Swagger API specification using the swagger.io online validator.
MIT License
9 stars 1 forks source link

build(deps-dev): bump nock from 12.0.3 to 13.0.0 #78

Closed dependabot-preview[bot] closed 4 years ago

dependabot-preview[bot] commented 4 years ago

Bumps nock from 12.0.3 to 13.0.0.

Release notes

Sourced from nock's releases.

v13.0.0

See the Migration Guide

Breaking changes

  1. Scope.log has been removed. Use the debug library when debugging failed matches.

  2. socketDelay has been removed. Use delayConnection instead.

  3. delay, delayConnection, and delayBody are now setters instead of additive.

  4. When recording, skipping body matching using * is no longer supported by nock.define. Set the definition body to undefined instead.

  5. ClientRequest.abort() has been updated to align with Node's native behavior. This could be considered a feature, however, it created some subtle differences that are not backwards compatible. Refer to the migration guide for details.

  6. Playback of a mocked responses will now never happen until the 'socket' event is emitted.

v13.0.0-beta.5

13.0.0-beta.5 (2020-05-14)

Bug Fixes

  • ClientRequest: Use native abort and destroy (#2000) (46e004c)

v13.0.0-beta.4

13.0.0-beta.4 (2020-05-02)

Features

BREAKING CHANGES

  • socketDelay has been removed. Use delayConnection instead.
  • delay, delayConnection, and delayBody are now setters instead of additive. example:
nock('http://example.com')
  .get('/')
  .delay(1)
  .delay({ head: 2, body: 3 })
  .delayConnection(4)
  .delayBody(5)
  .delayBody(6)
</tr></table> ... (truncated)
Commits


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in the `.dependabot/config.yml` file in this repo: - Update frequency - Automerge options (never/patch/minor, and dev/runtime dependencies) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired)