Skip to content

Commit d11b259

Browse files
committed
Auto merge of #2012 - rust-lang:dependabot/npm_and_yarn/semver-7.1.1, r=jtgeibel
Bump semver from 6.3.0 to 7.1.1 Bumps [semver](https://github.com/npm/node-semver) from 6.3.0 to 7.1.1. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/npm/node-semver/blob/master/CHANGELOG.md">semver's changelog</a>.</em></p> <blockquote> <h1>changes log</h1> <h2>7.1.0</h2> <ul> <li>Add <code>require('semver/preload')</code> to load the entire module without using lazy getter methods.</li> </ul> <h2>7.0.0</h2> <ul> <li>Refactor module into separate files for better tree-shaking</li> <li>Drop support for very old node versions, use const/let, <code>=&gt;</code> functions, and classes.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/npm/node-semver/commit/bb36c98d71d5760d730abba71c68bc324035dd36"><code>bb36c98</code></a> 7.1.1</li> <li><a href="https://github.com/npm/node-semver/commit/6648df16df5920f78af16a8af0711a4994996043"><code>6648df1</code></a> Add preload.js into npm package</li> <li><a href="https://github.com/npm/node-semver/commit/5a4ce3df0c9d71900313ae165b3d31abb38dc85f"><code>5a4ce3d</code></a> changelog for 7.1</li> <li><a href="https://github.com/npm/node-semver/commit/e663d38c2d3f77bfe8c9cae9770c409aa434c713"><code>e663d38</code></a> 7.1.0</li> <li><a href="https://github.com/npm/node-semver/commit/945d53c0979d9894343d07ffb615f7ce66cc1cbe"><code>945d53c</code></a> Add semver/preload module to just load the whole thing like it used to be</li> <li><a href="https://github.com/npm/node-semver/commit/d61f828e64260a0a097f26210f5500e91a621828"><code>d61f828</code></a> update changelog, travis, and engines versions</li> <li><a href="https://github.com/npm/node-semver/commit/533ed1266b44d7672ad5015202c0e571da15b8c1"><code>533ed12</code></a> update tap</li> <li><a href="https://github.com/npm/node-semver/commit/f56505b1c08856a7e6139f6ee5d4580f5f2feed8"><code>f56505b</code></a> 7.0.0</li> <li><a href="https://github.com/npm/node-semver/commit/7d834ed5dcd3ded832f8cd4e51f64261cb3cbb24"><code>7d834ed</code></a> document exported modules</li> <li><a href="https://github.com/npm/node-semver/commit/bbb1d02260dbbb99c8599f43c16ef837f102c249"><code>bbb1d02</code></a> Add default npm OSS GitHub settings</li> <li>Additional commits viewable in <a href="https://github.com/npm/node-semver/compare/v6.3.0...v7.1.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=semver&package-manager=npm_and_yarn&previous-version=6.3.0&new-version=7.1.1)](https://dependabot.com/compatibility-score.html?dependency-name=semver&package-manager=npm_and_yarn&previous-version=6.3.0&new-version=7.1.1) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 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) </details>
2 parents e218804 + febd74b commit d11b259

File tree

3 files changed

+152
-6
lines changed

3 files changed

+152
-6
lines changed

app/routes/crate/version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { observer } from '@ember/object';
22
import Route from '@ember/routing/route';
33
import { inject as service } from '@ember/service';
4-
import { prerelease } from 'semver';
4+
import prerelease from 'semver/functions/prerelease';
55

66
import fetch from 'fetch';
77
import ajax from 'ember-fetch/ajax';

package-lock.json

Lines changed: 150 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
"prettier": "^1.19.1",
8787
"qunit-dom": "^0.9.2",
8888
"sass": "^1.24.0",
89-
"semver": "^6.3.0",
89+
"semver": "^7.1.1",
9090
"timekeeper": "^2.2.0"
9191
},
9292
"engines": {

0 commit comments

Comments
 (0)