Closed dependabot[bot] closed 5 years ago
@dependabot help
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 languageYou can disable automated security fix PRs for this repo from the Security Alerts page.
@dependabot recreate
Bumps brace-expansion from 1.1.6 to 1.1.11.
Release notes
*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'] > ``` > ... (truncated)Commits
- [`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)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 You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/uport-project/mnid/network/alerts).