16.json (7151B)
1 { 2 "number": 16, 3 "title": "Bump brace-expansion from 1.1.6 to 1.1.11", 4 "state": "merged", 5 "diff_file": "16.diff", 6 "author": "dependabot[bot]", 7 "created_at": "2022-07-21T08:04:07Z", 8 "closed_at": "2022-07-21T08:07:49Z", 9 "merged_at": "2022-07-21T08:07:49Z", 10 "base_ref": "master", 11 "head_ref": "dependabot/npm_and_yarn/brace-expansion-1.1.11", 12 "labels": [ 13 "dependencies" 14 ], 15 "assignees": [], 16 "requested_reviewers": [], 17 "body": "[//]: # (dependabot-start)\n\u26a0\ufe0f **Dependabot is rebasing this PR** \u26a0\ufe0f \n\nRebasing might not happen immediately, so don't worry if this takes some time.\n\nNote: if you make any changes to this PR yourself, they will take precedence over the rebase.\n\n---\n\n[//]: # (dependabot-end)\n\nBumps [brace-expansion](https://github.com/juliangruber/brace-expansion) from 1.1.6 to 1.1.11.\n<details>\n<summary>Release notes</summary>\n<p><em>Sourced from <a href=\"https://github.com/juliangruber/brace-expansion/releases\">brace-expansion's releases</a>.</em></p>\n<blockquote>\n<h2>v1.1.11</h2>\n<h1>brace-expansion</h1>\n<p><a href=\"https://www.gnu.org/software/bash/manual/html_node/Brace-Expansion.html\">Brace expansion</a>,\nas known from sh/bash, in JavaScript.</p>\n<p><a href=\"http://travis-ci.org/juliangruber/brace-expansion\"><img src=\"https://secure.travis-ci.org/juliangruber/brace-expansion.svg\" alt=\"build status\" /></a>\n<a href=\"https://www.npmjs.org/package/brace-expansion\"><img src=\"https://img.shields.io/npm/dm/brace-expansion.svg\" alt=\"downloads\" /></a>\n<a href=\"https://greenkeeper.io/\"><img src=\"https://badges.greenkeeper.io/juliangruber/brace-expansion.svg\" alt=\"Greenkeeper badge\" /></a></p>\n<p><a href=\"https://ci.testling.com/juliangruber/brace-expansion\"><img src=\"https://ci.testling.com/juliangruber/brace-expansion.png\" alt=\"testling badge\" /></a></p>\n<h2>Example</h2>\n<pre lang=\"js\"><code>var expand = require('brace-expansion');\n<p>expand('file-{a,b,c}.jpg')\n// => ['file-a.jpg', 'file-b.jpg', 'file-c.jpg']</p>\n<p>expand('-v{,,}')\n// => ['-v', '-v', '-v']</p>\n<p>expand('file{0..2}.jpg')\n// => ['file0.jpg', 'file1.jpg', 'file2.jpg']</p>\n<p>expand('file-{a..c}.jpg')\n// => ['file-a.jpg', 'file-b.jpg', 'file-c.jpg']</p>\n<p>expand('file{2..0}.jpg')\n// => ['file2.jpg', 'file1.jpg', 'file0.jpg']</p>\n<p>expand('file{0..4..2}.jpg')\n// => ['file0.jpg', 'file2.jpg', 'file4.jpg']</p>\n<p>expand('file-{a..e..2}.jpg')\n// => ['file-a.jpg', 'file-c.jpg', 'file-e.jpg']</p>\n<p>expand('file{00..10..5}.jpg')\n// => ['file00.jpg', 'file05.jpg', 'file10.jpg']</p>\n<p>expand('{{A..C},{a..c}}')\n// => ['A', 'B', 'C', 'a', 'b', 'c']</p>\n<p>expand('ppp{,config,oe{,conf}}')\n// => ['ppp', 'pppconfig', 'pppoe', 'pppoeconf']\n</code></pre></p>\n<h2>API</h2>\n<!-- raw HTML omitted -->\n</blockquote>\n<p>... (truncated)</p>\n</details>\n<details>\n<summary>Commits</summary>\n<ul>\n<li><a href=\"https://github.com/juliangruber/brace-expansion/commit/e52ad1c92cb928dcdc5334625cf3a04e230d3bd5\"><code>e52ad1c</code></a> Merge pull request <a href=\"https://github-redirect.dependabot.com/juliangruber/brace-expansion/issues/42\">#42</a> from juliangruber/greenkeeper/update-to-node-10</li>\n<li><a href=\"https://github.com/juliangruber/brace-expansion/commit/fb4c6920828d6d1be00cd95cd7ce57c929c0e800\"><code>fb4c692</code></a> Update to node 10 in .travis.yml</li>\n<li><a href=\"https://github.com/juliangruber/brace-expansion/commit/01a21de7441549d26ac0c0a9ff91385d16e5c21c\"><code>01a21de</code></a> 1.1.11</li>\n<li><a href=\"https://github.com/juliangruber/brace-expansion/commit/d7c93eebd9d99f4aace9dc829acab4caa13f5125\"><code>d7c93ee</code></a> sponsors</li>\n<li><a href=\"https://github.com/juliangruber/brace-expansion/commit/54a6176731eb223cd3dede1473190d885d6b3648\"><code>54a6176</code></a> 1.1.10</li>\n<li><a href=\"https://github.com/juliangruber/brace-expansion/commit/327c729fa7e12a92237c26e8900c72165ebbd952\"><code>327c729</code></a> Merge pull request <a href=\"https://github-redirect.dependabot.com/juliangruber/brace-expansion/issues/40\">#40</a> from Parcley/add-license-1</li>\n<li><a href=\"https://github.com/juliangruber/brace-expansion/commit/b6ba2e02407ff1edcf4a99f0bcc58468084d308f\"><code>b6ba2e0</code></a> create LICENSE file</li>\n<li><a href=\"https://github.com/juliangruber/brace-expansion/commit/0f82dab6708f7c451e4a865b817057bc5a6b3c8e\"><code>0f82dab</code></a> 1.1.9</li>\n<li><a href=\"https://github.com/juliangruber/brace-expansion/commit/acd17547daab3615bd99a477746c8656224c0bc8\"><code>acd1754</code></a> support</li>\n<li><a href=\"https://github.com/juliangruber/brace-expansion/commit/40ff02d2f89d22ff0d76eafe3ecf5d762839a2b4\"><code>40ff02d</code></a> Merge pull request <a href=\"https://github-redirect.dependabot.com/juliangruber/brace-expansion/issues/39\">#39</a> from EdwardBetts/spelling</li>\n<li>Additional commits viewable in <a href=\"https://github.com/juliangruber/brace-expansion/compare/v1.1.6...1.1.11\">compare view</a></li>\n</ul>\n</details>\n<br />\n\n\n[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n<details>\n<summary>Dependabot commands and options</summary>\n<br />\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@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)\n- `@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)\n- `@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)\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/Nordgedanken/nordgedanken.github.io/network/alerts).\n\n</details>", 18 "comments": [], 19 "review_comments": [] 20 }