build(deps): [security] bump brace-expansion from 1.1.6 to 1.1.11 #22

Closed
dependabot-preview[bot] wants to merge 1 commit from dependabot/npm_and_yarn/brace-expansion-1.1.11 into master
dependabot-preview[bot] commented 2019-08-05 21:21:51 +00:00 (Migrated from github.com)

Bumps brace-expansion from 1.1.6 to 1.1.11. This update includes security fixes.

Vulnerabilities fixed

Sourced from The GitHub Security Advisory Database.

Moderate severity vulnerability that affects brace-expansion
index.js in brace-expansion before 1.1.7 is vulnerable to Regular Expression Denial of Service (ReDoS) attacks, as demonstrated by an expand argument containing many comma characters.

Affected versions: < 1.1.7

Sourced from The Node Security Working Group.

ReDoS
brace-expansion is a module to support bash-like brace expansion in JavaScript. For example,{1,2,3,4} would expand to 1 2 3 4.
brace expansion versions before 1.1.7 are vulnerable to Regular Expression Denial of Service attacks. A proof of concept is provided below:

var expand = require('brace-expansion');
expand('{,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n}');

Affected versions: <=1.1.6

Release notes

Sourced from brace-expansion's releases.

1.1.11

No release notes provided.

v1.1.11

brace-expansion

Brace expansion,
as known from sh/bash, in JavaScript.

build status
downloads
Greenkeeper badge

testling badge

Example

var expand = require('brace-expansion');

expand('file-{a,b,c}.jpg')
// => ['file-a.jpg', 'file-b.jpg', 'file-c.jpg']

expand('-v{,,}')
// => ['-v', '-v', '-v']

expand('file{0..2}.jpg')
// => ['file0.jpg', 'file1.jpg', 'file2.jpg']

expand('file-{a..c}.jpg')
// => ['file-a.jpg', 'file-b.jpg', 'file-c.jpg']

expand('file{2..0}.jpg')
// => ['file2.jpg', 'file1.jpg', 'file0.jpg']

expand('file{0..4..2}.jpg')
// => ['file0.jpg', 'file2.jpg', 'file4.jpg']

expand('file-{a..e..2}.jpg')
// => ['file-a.jpg', 'file-c.jpg', 'file-e.jpg']

expand('file{00..10..5}.jpg')
// => ['file00.jpg', 'file05.jpg', 'file10.jpg']

expand('{{A..C},{a..c}}')
// => ['A', 'B', 'C', 'a', 'b', 'c']

expand('ppp{,config,oe{,conf}}')
// => ['ppp', 'pppconfig', 'pppoe', 'pppoeconf']
... (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.


Note: This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.

You can always request more updates by clicking Bump now in your Dependabot dashboard.

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). To ignore the version in this PR you can just close it
  • @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:

  • Update frequency (including time of day and day of week)
  • 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.

Bumps [brace-expansion](https://github.com/juliangruber/brace-expansion) from 1.1.6 to 1.1.11. **This update includes security fixes.** <details> <summary>Vulnerabilities fixed</summary> *Sourced from The GitHub Security Advisory Database.* > **Moderate severity vulnerability that affects brace-expansion** > index.js in brace-expansion before 1.1.7 is vulnerable to Regular Expression Denial of Service (ReDoS) attacks, as demonstrated by an expand argument containing many comma characters. > > Affected versions: < 1.1.7 *Sourced from [The Node Security Working Group](https://github.com/nodejs/security-wg/blob/master/vuln/npm/338.json).* > **ReDoS** > brace-expansion is a module to support bash-like brace expansion in JavaScript. For example,`{1,2,3,4}` would expand to `1 2 3 4`. > brace expansion versions before 1.1.7 are vulnerable to Regular Expression Denial of Service attacks. A proof of concept is provided below: > > ``` > var expand = require('brace-expansion'); > expand('{,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,\n}'); > ``` > > Affected versions: <=1.1.6 </details> <details> <summary>Release notes</summary> *Sourced from [brace-expansion's releases](https://github.com/juliangruber/brace-expansion/releases).* > ## 1.1.11 > No release notes provided. > > ## v1.1.11 > # brace-expansion > > [Brace expansion](https://www.gnu.org/software/bash/manual/html_node/Brace-Expansion.html), > as known from sh/bash, in JavaScript. > > [![build status](https://secure.travis-ci.org/juliangruber/brace-expansion.svg)](http://travis-ci.org/juliangruber/brace-expansion) > [![downloads](https://img.shields.io/npm/dm/brace-expansion.svg)](https://www.npmjs.org/package/brace-expansion) > [![Greenkeeper badge](https://badges.greenkeeper.io/juliangruber/brace-expansion.svg)](https://greenkeeper.io/) > > [![testling badge](https://ci.testling.com/juliangruber/brace-expansion.png)](https://ci.testling.com/juliangruber/brace-expansion) > > ## Example > > ```js > var expand = require('brace-expansion'); > > expand('file-{a,b,c}.jpg') > // => ['file-a.jpg', 'file-b.jpg', 'file-c.jpg'] > > expand('-v{,,}') > // => ['-v', '-v', '-v'] > > expand('file{0..2}.jpg') > // => ['file0.jpg', 'file1.jpg', 'file2.jpg'] > > expand('file-{a..c}.jpg') > // => ['file-a.jpg', 'file-b.jpg', 'file-c.jpg'] > > expand('file{2..0}.jpg') > // => ['file2.jpg', 'file1.jpg', 'file0.jpg'] > > expand('file{0..4..2}.jpg') > // => ['file0.jpg', 'file2.jpg', 'file4.jpg'] > > expand('file-{a..e..2}.jpg') > // => ['file-a.jpg', 'file-c.jpg', 'file-e.jpg'] > > expand('file{00..10..5}.jpg') > // => ['file00.jpg', 'file05.jpg', 'file10.jpg'] > > expand('{{A..C},{a..c}}') > // => ['A', 'B', 'C', 'a', 'b', 'c'] > > expand('ppp{,config,oe{,conf}}') > // => ['ppp', 'pppconfig', 'pppoe', 'pppoeconf'] > ``` ></tr></table> ... (truncated) </details> <details> <summary>Commits</summary> - [`e52ad1c`](https://github.com/juliangruber/brace-expansion/commit/e52ad1c92cb928dcdc5334625cf3a04e230d3bd5) Merge pull request [#42](https://github-redirect.dependabot.com/juliangruber/brace-expansion/issues/42) from juliangruber/greenkeeper/update-to-node-10 - [`fb4c692`](https://github.com/juliangruber/brace-expansion/commit/fb4c6920828d6d1be00cd95cd7ce57c929c0e800) Update to node 10 in .travis.yml - [`01a21de`](https://github.com/juliangruber/brace-expansion/commit/01a21de7441549d26ac0c0a9ff91385d16e5c21c) 1.1.11 - [`d7c93ee`](https://github.com/juliangruber/brace-expansion/commit/d7c93eebd9d99f4aace9dc829acab4caa13f5125) sponsors - [`54a6176`](https://github.com/juliangruber/brace-expansion/commit/54a6176731eb223cd3dede1473190d885d6b3648) 1.1.10 - [`327c729`](https://github.com/juliangruber/brace-expansion/commit/327c729fa7e12a92237c26e8900c72165ebbd952) Merge pull request [#40](https://github-redirect.dependabot.com/juliangruber/brace-expansion/issues/40) from Parcley/add-license-1 - [`b6ba2e0`](https://github.com/juliangruber/brace-expansion/commit/b6ba2e02407ff1edcf4a99f0bcc58468084d308f) create LICENSE file - [`0f82dab`](https://github.com/juliangruber/brace-expansion/commit/0f82dab6708f7c451e4a865b817057bc5a6b3c8e) 1.1.9 - [`acd1754`](https://github.com/juliangruber/brace-expansion/commit/acd17547daab3615bd99a477746c8656224c0bc8) support - [`40ff02d`](https://github.com/juliangruber/brace-expansion/commit/40ff02d2f89d22ff0d76eafe3ecf5d762839a2b4) Merge pull request [#39](https://github-redirect.dependabot.com/juliangruber/brace-expansion/issues/39) from EdwardBetts/spelling - Additional commits viewable in [compare view](https://github.com/juliangruber/brace-expansion/compare/v1.1.6...1.1.11) </details> <br /> [![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=brace-expansion&package-manager=npm_and_yarn&previous-version=1.1.6&new-version=1.1.11)](https://dependabot.com/compatibility-score.html?dependency-name=brace-expansion&package-manager=npm_and_yarn&previous-version=1.1.6&new-version=1.1.11) 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) --- **Note:** This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit. You can always request more updates by clicking `Bump now` in your [Dependabot dashboard](https://app.dependabot.com). <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 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). To ignore the version in this PR you can just close it - `@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) - 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. </details>
dependabot-preview[bot] commented 2019-08-08 02:06:36 +00:00 (Migrated from github.com)

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version.

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

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting `@dependabot ignore this major version` or `@dependabot ignore this minor version`. If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

Pull request closed

Sign in to join this conversation.
No reviewers
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
gucheen/fetchql!22
No description provided.