build(deps-dev): bump the npm_and_yarn group across 1 directory with 3 updates - #9
Closed
cldmv-bot[bot] wants to merge 2 commits into
Closed
build(deps-dev): bump the npm_and_yarn group across 1 directory with 3 updates#9cldmv-bot[bot] wants to merge 2 commits into
cldmv-bot[bot] wants to merge 2 commits into
Conversation
…3 updates Bumps the npm_and_yarn group with 3 updates in the / directory: [brace-expansion](https://github.com/juliangruber/brace-expansion), [js-yaml](https://github.com/nodeca/js-yaml) and [minimatch](https://github.com/isaacs/minimatch). Updates `brace-expansion` from 1.1.12 to 1.1.18 - [Release notes](https://github.com/juliangruber/brace-expansion/releases) - [Commits](https://github.com/juliangruber/brace-expansion/commits) Updates `js-yaml` from 4.1.0 to 4.3.1 - [Changelog](https://github.com/nodeca/js-yaml/blob/4.3.1/CHANGELOG.md) - [Commits](nodeca/js-yaml@4.1.0...4.3.1) Updates `minimatch` from 3.1.2 to 3.1.5 - [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md) - [Commits](isaacs/minimatch@v3.1.2...v3.1.5) --- updated-dependencies: - dependency-name: brace-expansion dependency-version: 1.1.18 dependency-type: indirect dependency-group: npm_and_yarn - dependency-name: js-yaml dependency-version: 4.3.1 dependency-type: indirect dependency-group: npm_and_yarn - dependency-name: minimatch dependency-version: 3.1.5 dependency-type: indirect dependency-group: npm_and_yarn ... Signed-off-by: dependabot[bot] <support@github.com> (cherry picked from commit 16369d4)
Shinrai
approved these changes
Aug 3, 2026
Shinrai
added a commit
that referenced
this pull request
Aug 9, 2026
Resolves the two pre-existing high-severity transitives on next: - picomatch 2.3.1 → 2.3.2 (via fast-glob → micromatch; runtime reach) fixes GHSA-3v7f-55p6-f55p (method injection) + GHSA-c2c7-rcm5-vvqj (ReDoS) - nanoid 3.3.16 → 3.3.18 (via vitest → vite → postcss; dev) fixes GHSA-2v37-7h3g-55p8 (zero-size infinite loop) Both in-range (lockfile-only, no package.json change), npm audit now clean (0 vulnerabilities), npm ci verified, full suite green (17/17). Folds in the intent of #9 (security transitive bumps): next already carries newer brace-expansion (5.0.9) / minimatch (10.2.6) than #9's targets and no js-yaml in-tree, so #9 is moot against next — its fixes ride this release rather than the hotfixes lane.
Contributor
|
Folding this into the Checked against |
Shinrai
added a commit
that referenced
this pull request
Aug 10, 2026
## Summary Consolidates the outstanding `next`-targeting dependency work into a single PR so it all rides the `next → master` release ([#19](#19)) together, and wires the repo's lint/format scripts for the post-merge autofix. ### Dependency bumps (each was CI-green individually on `next`) | Dep | Range | Role | |---|---|---| | `espree` | 9 → **11.2.0** | runtime (AST parser) | | `eslint` | 9 → **10.8.1** | dev (lint) | | `@eslint/json` | 0.13 → **2.0.1** | dev (lint) | | `@mdn/browser-compat-data` | 6 → **8.0.10** | dev (feature data) | ### Security (transitive, lockfile-only) | Dep | Bump | Advisory | |---|---|---| | `picomatch` | 2.3.1 → **2.3.2** (via `fast-glob` → `micromatch`; **runtime reach**) | GHSA-3v7f-55p6-f55p, GHSA-c2c7-rcm5-vvqj | | `nanoid` | 3.3.16 → **3.3.18** (via `vitest` → `vite` → `postcss`; dev) | GHSA-2v37-7h3g-55p8 | `npm audit` now reports **0 vulnerabilities**. ### Lint/format wiring Adds `format`/`format:check` (prettier) + `lint`/`lint:fix` (eslint, JS+JSON) wired to `.configs/`, so the post-merge lint-format autofix (CLDMV/.github v4.21.0) has scripts to run when this merges into `next`. eslint ignores the intentional-error scan fixture `tests/testfile.js` and generated `src/data`; one dead unused var was removed so `lint` is green. Repo-wide formatting drift is intentionally left for the autofix to apply and commit back on the post-merge push. ## Validation - `npm ci` clean against the regenerated lockfile (npm-10 compatible). - Full suite green locally: **17 test files / 24 tests**, incl. espree-11 AST parsing paths. - `npm run lint` green; PR CI green (Node 22 + lts/*, CodeQL); the Lint & Format job correctly skips on the feature PR. ## Supersedes / folds in - **Closes on merge:** #15, #16, #17, #18 (the four dependency bumps). - **#9** (security transitives targeting `hotfixes`): folded here. `next` already carries newer `brace-expansion` (5.0.9) / `minimatch` (10.2.6) than #9's targets and has no `js-yaml` in-tree, so #9 is moot against `next` — its intent ships via this release instead of the hotfixes lane.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Supersedes #8. Cherry-picked cleanly onto
hotfixes' own tip instead of merging Dependabot's branch as-is — that branch forks fromnext, and merging it directly would carry forward any ofnext's pooled work that isn't onhotfixesyet. See Auto-redirected PR base: on #8.Bumps the npm_and_yarn group with 3 updates in the / directory: brace-expansion, js-yaml and minimatch.
Updates
brace-expansionfrom 1.1.12 to 1.1.18Release notes
Sourced from brace-expansion's releases.
Commits
Updates
js-yamlfrom 4.1.0 to 4.3.1Changelog
Sourced from js-yaml's changelog.
... (truncated)
Commits
86e91b84.3.1 releasedc3cc4b0Backport quadratic complexity fix for !!omap33d05b54.3.0 released663bfabDrop demo publish, to not override new v5 one.1cb8c7bAdd v4-legacy tag for publish02f27afRestore umd builds back to es58be84edFix es5 compatibility59423c6ReplacemaxMergeSeqLengthoption withmaxTotalMergeKeys(more robust). Ba...6842ef6doc polish590dbab4.2.0 releasedUpdates
minimatchfrom 3.1.2 to 3.1.5Commits
7bba9783.1.5bd25942docs: add warning about ReDoS1a9c27cfix partial matching of globstar patterns1a2e0843.1.4ae24656update lockfileb100374limit recursion for **, improve perf considerably26ffeaalockfile update9eca892lock node version to 1400c323b3.1.330486b2update CI matrix and actionsDependabot 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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditionsYou can disable automated security fix PRs for this repo from the Security Alerts page.