kota65535 / openapi-merger

Merges multiple OpenAPI document files into a single file.
MIT License
31 stars 6 forks source link

Bump serialize-javascript and mocha #60

Closed dependabot[bot] closed 1 year ago

dependabot[bot] commented 1 year ago

Bumps serialize-javascript to 5.0.1 and updates ancestor dependency mocha. These dependencies need to be updated together.

Updates serialize-javascript from 3.0.0 to 5.0.1

Release notes

Sourced from serialize-javascript's releases.

v5.0.1

Changelog

  • Exclude .vscode and .github directories from package (#97)

v5.0.0

Changelog

  • Bump mocha from 8.1.2 to 8.1.3 (#96)
  • Support sparse arrays (#95)
  • Bump mocha from 8.1.1 to 8.1.2 (#94)
  • Bump mocha from 8.1.0 to 8.1.1 (#92)
  • Create Dependabot config file (#91)
  • Bump mocha from 8.0.1 to 8.1.0 (#90)
  • Bump lodash from 4.17.15 to 4.17.19 (#89)
  • Bump mocha from 7.2.0 to 8.0.1 (#88)

Behavior changes for sparse arrays

It serializes sparse arrays as follows since this version. The result of serialization may be changed if you are passing sparse arrays values into the serialize-javascript.

const serialize = require('serialize-javascript');

var a = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; delete a[0]; a.length = 3; a[5] = 'wat'; serialize(a) // 'Array.prototype.slice.call({"1":2,"2":3,"5":"wat","length":6})'


Thank you @​victorporof for this release.

v4.0.0

Changelog

  • Bump nyc from 15.0.1 to 15.1.0 (#85)
  • support for bigint (#80)

Behavior changes for BigInt

It serializes BigInt values as follows since this version. The result of serialization may be changed if you are passing BigInt values into the serialize-javascript.

v4.x:

const serialize = require('serialize-javascript');

serialize({big: BigInt('10')}); // '{"big":BigInt("10")}'

v3.x:

... (truncated)

Commits


Updates mocha from 8.0.1 to 8.4.0

Release notes

Sourced from mocha's releases.

v8.4.0

8.4.0 / 2021-05-07

:tada: Enhancements

:bug: Fixes

:book: Documentation

Also thanks to @​outsideris for various improvements on our GH actions workflows.

v8.3.2

8.3.2 / 2021-03-12

:bug: Fixes

:book: Documentation

v8.3.1

8.3.1 / 2021-03-06

:bug: Fixes

v8.3.0

8.3.0 / 2021-02-11

:tada: Enhancements

:bug: Fixes

... (truncated)

Changelog

Sourced from mocha's changelog.

8.4.0 / 2021-05-07

:tada: Enhancements

:bug: Fixes

:book: Documentation

Also thanks to @​outsideris for various improvements on our GH actions workflows.

8.3.2 / 2021-03-12

:bug: Fixes

:book: Documentation

8.3.1 / 2021-03-06

:bug: Fixes

8.3.0 / 2021-02-11

:tada: Enhancements

:bug: Fixes

:book: Documentation

... (truncated)

Commits


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 ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/kota65535/openapi-merger/network/alerts).
sonarcloud[bot] commented 1 year ago

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
0.0% 0.0% Duplication

dependabot[bot] commented 1 year ago

OK, I won't notify you again about this release, but will get in touch when a new version is available.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.