Skip to content

Commit 395c8cf

Browse files
Bump brace-expansion from 1.1.11 to 1.1.12 and document breaking changes in v6 (#877)
* Bump brace-expansion from 1.1.11 to 1.1.12 Bumps [brace-expansion](https://github.com/juliangruber/brace-expansion) from 1.1.11 to 1.1.12. - [Release notes](https://github.com/juliangruber/brace-expansion/releases) - [Commits](juliangruber/brace-expansion@1.1.11...v1.1.12) --- updated-dependencies: - dependency-name: brace-expansion dependency-version: 1.1.12 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> * documentation update and check failure fix * doc update * doc updates --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Aparna Jyothi <aparnajyothi-y@github.com>
1 parent 634933e commit 395c8cf

4 files changed

Lines changed: 41 additions & 26 deletions

File tree

.licenses/npm/brace-expansion.dep.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@
44

55
Automatically label new pull requests based on the paths of files being changed or the branch name.
66

7+
## Breaking changes in V6
8+
9+
- Upgraded action from node20 to node24.
10+
> Make sure your runner is on version v2.327.1 or later to ensure compatibility with this release. [Release Notes](https://github.com/actions/runner/releases/tag/v2.327.1)
11+
12+
For more details, see the full release notes on the [release page](https://github.com/actions/labeler/releases/tag/v6.0.0)
13+
714
## Breaking changes in V5
815
1) The ability to apply labels based on the names of base and/or head branches was added ([#186](https://github.com/actions/labeler/issues/186) and [#54](https://github.com/actions/labeler/issues/54)). The match object for changed files was expanded with new combinations in order to make it more intuitive and flexible ([#423](https://github.com/actions/labeler/issues/423) and [#101](https://github.com/actions/labeler/issues/101)). As a result, the configuration file structure was significantly redesigned and is not compatible with the structure of the previous version. Please read the documentation below to find out how to adapt your configuration files for use with the new action version.
916

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11707,7 +11707,7 @@ function expand(str, isTop) {
1170711707
var isOptions = m.body.indexOf(',') >= 0;
1170811708
if (!isSequence && !isOptions) {
1170911709
// {a},b}
11710-
if (m.post.match(/,.*\}/)) {
11710+
if (m.post.match(/,(?!,).*\}/)) {
1171111711
str = m.pre + '{' + m.body + escClose + m.post;
1171211712
return expand(str);
1171311713
}

package-lock.json

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

0 commit comments

Comments
 (0)