Changelog
*Sourced from [semver's changelog](https://github.com/npm/node-semver/blob/master/CHANGELOG.md).*
> # changes log
>
> ## 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
> the `includePrerelease` option flag.
>
> ## 5.5
>
> * Add version coercion capabilities
>
> ## 5.4
>
> * Add intersection checking
>
> ## 5.3
>
> * Add `minSatisfying` method
>
> ## 5.2
>
> * Add `prerelease(v)` that returns prerelease components
>
> ## 5.1
>
> * Add Backus-Naur for ranges
> * Remove excessively cute inspection methods
>
> ## 5.0
>
> * Remove AMD/Browserified build artifacts
> * Fix ltr and gtr when using the `*` range
> * Fix for range `*` with a prerelease identifier
Commits
- [`5fb517b`](https://github.com/npm/node-semver/commit/5fb517b2906a0763518e1941a3f4a163956a81d3) 6.0.0
- [`3e1d016`](https://github.com/npm/node-semver/commit/3e1d0161b2438294aac32286dd236ea54bf9cc89) changelog for v6
- [`673e820`](https://github.com/npm/node-semver/commit/673e820718acdcf466c5555fa2d75874622da243) fix: Improve performance of isSatisfiable function
- [`9b8e961`](https://github.com/npm/node-semver/commit/9b8e961c0cf3efd71a83c4658cc32a64f9bbf9a4) fix: Fix non-satisfiable ranges so they no longer intersect with anything
- [`8473d65`](https://github.com/npm/node-semver/commit/8473d6534e1db6a030eaf9dd9633301d78fd1f58) fix: Fix Range intersects algorithm
- [`8055dda`](https://github.com/npm/node-semver/commit/8055dda0aee91372e3bfc47754a62f40e8a63b98) 5.7.0
- [`604e73d`](https://github.com/npm/node-semver/commit/604e73dea1f19a05314d6c66e0a52b47b1b7b340) auto-publishing scripts
- [`bed01e2`](https://github.com/npm/node-semver/commit/bed01e2316b85271f6ffff89bf19e22f41475c97) remove the nomin comments, since we don't minify any more anyway
- [`9cb68f1`](https://github.com/npm/node-semver/commit/9cb68f1db72d297183233f4d8d287e935f2b6ddd) document parse method
- [`38d42ca`](https://github.com/npm/node-semver/commit/38d42ca87a9d891fba9b2a044f914f1919fd769c) 5.7 changelog
- Additional commits viewable in [compare view](https://github.com/npm/node-semver/compare/v5.4.1...v6.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 ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major 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)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
Finally, you can contact us by mentioning @dependabot.
Coverage remained the same at 79.31% when pulling 1e16d2b28dcc3c10824878b8df03ca7c132af0b1 on dependabot/npm_and_yarn/semver-6.0.0 into 57b66dd40ffe5f44d2cf553d1d1ecfd47973c567 on master.
Bumps semver from 5.4.1 to 6.0.0.
Changelog
*Sourced from [semver's changelog](https://github.com/npm/node-semver/blob/master/CHANGELOG.md).* > # changes log > > ## 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 > the `includePrerelease` option flag. > > ## 5.5 > > * Add version coercion capabilities > > ## 5.4 > > * Add intersection checking > > ## 5.3 > > * Add `minSatisfying` method > > ## 5.2 > > * Add `prerelease(v)` that returns prerelease components > > ## 5.1 > > * Add Backus-Naur for ranges > * Remove excessively cute inspection methods > > ## 5.0 > > * Remove AMD/Browserified build artifacts > * Fix ltr and gtr when using the `*` range > * Fix for range `*` with a prerelease identifierCommits
- [`5fb517b`](https://github.com/npm/node-semver/commit/5fb517b2906a0763518e1941a3f4a163956a81d3) 6.0.0 - [`3e1d016`](https://github.com/npm/node-semver/commit/3e1d0161b2438294aac32286dd236ea54bf9cc89) changelog for v6 - [`673e820`](https://github.com/npm/node-semver/commit/673e820718acdcf466c5555fa2d75874622da243) fix: Improve performance of isSatisfiable function - [`9b8e961`](https://github.com/npm/node-semver/commit/9b8e961c0cf3efd71a83c4658cc32a64f9bbf9a4) fix: Fix non-satisfiable ranges so they no longer intersect with anything - [`8473d65`](https://github.com/npm/node-semver/commit/8473d6534e1db6a030eaf9dd9633301d78fd1f58) fix: Fix Range intersects algorithm - [`8055dda`](https://github.com/npm/node-semver/commit/8055dda0aee91372e3bfc47754a62f40e8a63b98) 5.7.0 - [`604e73d`](https://github.com/npm/node-semver/commit/604e73dea1f19a05314d6c66e0a52b47b1b7b340) auto-publishing scripts - [`bed01e2`](https://github.com/npm/node-semver/commit/bed01e2316b85271f6ffff89bf19e22f41475c97) remove the nomin comments, since we don't minify any more anyway - [`9cb68f1`](https://github.com/npm/node-semver/commit/9cb68f1db72d297183233f4d8d287e935f2b6ddd) document parse method - [`38d42ca`](https://github.com/npm/node-semver/commit/38d42ca87a9d891fba9b2a044f914f1919fd769c) 5.7 changelog - Additional commits viewable in [compare view](https://github.com/npm/node-semver/compare/v5.4.1...v6.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 ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major 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) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) Finally, you can contact us by mentioning @dependabot.