Changelog
*Sourced from [semver's changelog](https://github.com/npm/node-semver/blob/master/CHANGELOG.md).*
> ## 7.0.0
>
> * Refactor module into separate files for better tree-shaking
> * Drop support for very old node versions, use const/let, `=>` functions,
> and classes.
>
> ## 6.3.0
>
> * Expose the token enum on the exports
>
> ## 6.2.0
>
> * Coerce numbers to strings when passed to semver.coerce()
> * Add `rtl` option to coerce from right to left
>
> ## 6.1.3
>
> * Handle X-ranges properly in includePrerelease mode
>
> ## 6.1.2
>
> * Do not throw when testing invalid version strings
>
> ## 6.1.1
>
> * Add options support for semver.coerce()
> * Handle undefined version passed to Range.test
>
> ## 6.1.0
>
> * Add semver.compareBuild function
> * Support `*` in semver.intersects
>
> ## 6.0
>
> * Fix `intersects` logic.
>
> This is technically a bug fix, but since it is also a change to behavior
> that may require users updating their code, it is marked as a major
> version increment.
>
> ## 5.7
>
> * Add `minVersion` method
>
> ## 5.6
>
> * Move boolean `loose` param to an options object, with
> backwards-compatibility protection.
> * Add ability to opt out of special prerelease version handling with
> ... (truncated)
Commits
- [`f56505b`](https://github.com/npm/node-semver/commit/f56505b1c08856a7e6139f6ee5d4580f5f2feed8) 7.0.0
- [`7d834ed`](https://github.com/npm/node-semver/commit/7d834ed5dcd3ded832f8cd4e51f64261cb3cbb24) document exported modules
- [`bbb1d02`](https://github.com/npm/node-semver/commit/bbb1d02260dbbb99c8599f43c16ef837f102c249) Add default npm OSS GitHub settings
- [`6ca0949`](https://github.com/npm/node-semver/commit/6ca09494c96d1febd543e5d0e6dd9ddc738bb1f4) remove test that isn't covering anything
- [`166acc8`](https://github.com/npm/node-semver/commit/166acc81b2488bf55d8e3c2a7b0e39c5971b36b8) semver class test coverage to 100
- [`b4b40cd`](https://github.com/npm/node-semver/commit/b4b40cd3de836dddb168122944d494d929efed0f) include sliced up files in package
- [`d19d51e`](https://github.com/npm/node-semver/commit/d19d51eea1687981648af026b8605beb5478ba93) remove duplicative naming. ranges/valid-range -> ranges/valid
- [`d31381d`](https://github.com/npm/node-semver/commit/d31381d4e227e63542977b995d1e35be1d2bd81f) range class test coverage to 100
- [`18c21b2`](https://github.com/npm/node-semver/commit/18c21b242d0b4e54c4bdd677fbadbade18187d95) comparator test coverage to 100%
- [`fe92406`](https://github.com/npm/node-semver/commit/fe9240696182ecbb57367f11b9cde78847c00b68) More splitting and code cleanup
- Additional commits viewable in [compare view](https://github.com/npm/node-semver/compare/v5.4.1...v7.0.0)
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
- `@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 your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- 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)
Coverage remained the same at 79.31% when pulling 3335a84e850d4242d39e65d9a3d55da3d4da2b9e on dependabot/npm_and_yarn/semver-7.0.0 into 57b66dd40ffe5f44d2cf553d1d1ecfd47973c567 on master.
Bumps semver from 5.4.1 to 7.0.0.
Changelog
*Sourced from [semver's changelog](https://github.com/npm/node-semver/blob/master/CHANGELOG.md).* > ## 7.0.0 > > * Refactor module into separate files for better tree-shaking > * Drop support for very old node versions, use const/let, `=>` functions, > and classes. > > ## 6.3.0 > > * Expose the token enum on the exports > > ## 6.2.0 > > * Coerce numbers to strings when passed to semver.coerce() > * Add `rtl` option to coerce from right to left > > ## 6.1.3 > > * Handle X-ranges properly in includePrerelease mode > > ## 6.1.2 > > * Do not throw when testing invalid version strings > > ## 6.1.1 > > * Add options support for semver.coerce() > * Handle undefined version passed to Range.test > > ## 6.1.0 > > * Add semver.compareBuild function > * Support `*` in semver.intersects > > ## 6.0 > > * Fix `intersects` logic. > > This is technically a bug fix, but since it is also a change to behavior > that may require users updating their code, it is marked as a major > version increment. > > ## 5.7 > > * Add `minVersion` method > > ## 5.6 > > * Move boolean `loose` param to an options object, with > backwards-compatibility protection. > * Add ability to opt out of special prerelease version handling with > ... (truncated)Commits
- [`f56505b`](https://github.com/npm/node-semver/commit/f56505b1c08856a7e6139f6ee5d4580f5f2feed8) 7.0.0 - [`7d834ed`](https://github.com/npm/node-semver/commit/7d834ed5dcd3ded832f8cd4e51f64261cb3cbb24) document exported modules - [`bbb1d02`](https://github.com/npm/node-semver/commit/bbb1d02260dbbb99c8599f43c16ef837f102c249) Add default npm OSS GitHub settings - [`6ca0949`](https://github.com/npm/node-semver/commit/6ca09494c96d1febd543e5d0e6dd9ddc738bb1f4) remove test that isn't covering anything - [`166acc8`](https://github.com/npm/node-semver/commit/166acc81b2488bf55d8e3c2a7b0e39c5971b36b8) semver class test coverage to 100 - [`b4b40cd`](https://github.com/npm/node-semver/commit/b4b40cd3de836dddb168122944d494d929efed0f) include sliced up files in package - [`d19d51e`](https://github.com/npm/node-semver/commit/d19d51eea1687981648af026b8605beb5478ba93) remove duplicative naming. ranges/valid-range -> ranges/valid - [`d31381d`](https://github.com/npm/node-semver/commit/d31381d4e227e63542977b995d1e35be1d2bd81f) range class test coverage to 100 - [`18c21b2`](https://github.com/npm/node-semver/commit/18c21b242d0b4e54c4bdd677fbadbade18187d95) comparator test coverage to 100% - [`fe92406`](https://github.com/npm/node-semver/commit/fe9240696182ecbb57367f11b9cde78847c00b68) More splitting and code cleanup - Additional commits viewable in [compare view](https://github.com/npm/node-semver/compare/v5.4.1...v7.0.0)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 - `@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 your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - 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)