Skip to content

fix(deps): update patch updates (patch)#249

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/patch-patch-updates
Open

fix(deps): update patch updates (patch)#249
renovate[bot] wants to merge 1 commit intomainfrom
renovate/patch-patch-updates

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Dec 16, 2025

This PR contains the following updates:

Package Change Age Confidence
@anolilab/prettier-config (source) 9.1.09.1.1 age confidence
@anolilab/textlint-config (source) 12.1.012.1.5 age confidence
@ckeditor/typedoc-plugins (source) 54.3.254.3.4 age confidence
cosmiconfig ^9.0.0^9.0.1 age confidence
dockerode 4.0.94.0.10 age confidence
esbuild 0.27.20.27.4 age confidence
pkg-pr-new (source) ^0.0.62^0.0.66 age confidence
publint (source) 0.3.170.3.18 age confidence
rimraf ^6.1.2^6.1.3 age confidence
semver ^7.7.3^7.7.4 age confidence

Release Notes

anolilab/javascript-style-guide (@​anolilab/prettier-config)

v9.1.1

Compare Source

Bug Fixes
  • resolve pre-commit hook failures and lint errors across packages (a4707c3)
Miscellaneous Chores
  • prettier-config: add .prettierignore (b07d6c3)
  • prettier-config: migrate to ESM prettier config and fix bin.ts (970de06)
anolilab/javascript-style-guide (@​anolilab/textlint-config)

v12.1.5

Compare Source

v12.1.4

Compare Source

v12.1.3

Compare Source

Styles

v12.1.2

Compare Source

Bug Fixes
  • eslint-config: disable css/no-invalid-at-rules for Tailwind CSS … (#​1000) (aa8b26b)

v12.1.1

Compare Source

Miscellaneous Chores
  • textlint-config: migrate prettier config to ESM (9b59056)
  • textlint-config: simplify .prettierignore (1e8c66f)
Dependencies
ckeditor/ckeditor5-dev (@​ckeditor/typedoc-plugins)

v54.3.4

Compare Source

Bug fixes
  • build-tools: Always log TypeScript errors, even when the declarations option is not set or false.

  • ci: Made ckeditor5-dev-ci-circle-workflow-notifier resilient to unstable CircleCI API responses by adding retries, response shape validation, and clearer hard-fail reasons. Closes ckeditor/ckeditor5#19763.

    The notifier now retries transient API failures up to 5 times with delays, fails fast for non-retryable API errors, and reports when manual workflow verification is required.

Released packages

Check out the Versioning policy guide for more information.

Released packages (summary)

Other releases:

v54.3.3

Compare Source

Bug fixes
  • tests: Unify error handling in ckeditor5-dev-tests-run-automated and ckeditor5-dev-tests-run-manual to prevent a TypeError when test execution fails.
Other changes
  • tests: Unified Chrome launch configuration across headless and headed mode and enforced a 1920x1080 window size for consistent and predictable test results.
Released packages

Check out the Versioning policy guide for more information.

Released packages (summary)

Other releases:

cosmiconfig/cosmiconfig (cosmiconfig)

v9.0.1

Compare Source

  • Fixed a race condition where multiple instances existing simultaneously could cause cosmiconfig to fail to load TypeScript config files.
  • Fixed an issue on Windows where CWD being a short path (e.g. C:\Users\USERNA~1) would cause cosmiconfig to fail to load ESM config files.
apocas/dockerode (dockerode)

v4.0.10

Compare Source

What's Changed

New Contributors

Full Changelog: apocas/dockerode@v4.0.9...v4.0.10

evanw/esbuild (esbuild)

v0.27.4

Compare Source

  • Fix a regression with CSS media queries (#​4395, #​4405, #​4406)

    Version 0.25.11 of esbuild introduced support for parsing media queries. This unintentionally introduced a regression with printing media queries that use the <media-type> and <media-condition-without-or> grammar. Specifically, esbuild was failing to wrap an or clause with parentheses when inside <media-condition-without-or>. This release fixes the regression.

    Here is an example:

    /* Original code */
    @&#8203;media only screen and ((min-width: 10px) or (min-height: 10px)) {
      a { color: red }
    }
    
    /* Old output (incorrect) */
    @&#8203;media only screen and (min-width: 10px) or (min-height: 10px) {
      a {
        color: red;
      }
    }
    
    /* New output (correct) */
    @&#8203;media only screen and ((min-width: 10px) or (min-height: 10px)) {
      a {
        color: red;
      }
    }
  • Fix an edge case with the inject feature (#​4407)

    This release fixes an edge case where esbuild's inject feature could not be used with arbitrary module namespace names exported using an export {} from statement with bundling disabled and a target environment where arbitrary module namespace names is unsupported.

    With the fix, the following inject file:

    import jquery from 'jquery';
    export { jquery as 'window.jQuery' };

    Can now always be rewritten as this without esbuild sometimes incorrectly generating an error:

    export { default as 'window.jQuery' } from 'jquery';
  • Attempt to improve API handling of huge metafiles (#​4329, #​4415)

    This release contains a few changes that attempt to improve the behavior of esbuild's JavaScript API with huge metafiles (esbuild's name for the build metadata, formatted as a JSON object). The JavaScript API is designed to return the metafile JSON as a JavaScript object in memory, which makes it easy to access from within a JavaScript-based plugin. Multiple people have encountered issues where this API breaks down with a pathologically-large metafile.

    The primary issue is that V8 has an implementation-specific maximum string length, so using the JSON.parse API with large enough strings is impossible. This release will now attempt to use a fallback JavaScript-based JSON parser that operates directly on the UTF8-encoded JSON bytes instead of using JSON.parse when the JSON metafile is too big to fit in a JavaScript string. The new fallback path has not yet been heavily-tested. The metafile will also now be generated with whitespace removed if the bundle is significantly large, which will reduce the size of the metafile JSON slightly.

    However, hitting this case is potentially a sign that something else is wrong. Ideally you wouldn't be building something so enormous that the build metadata can't even fit inside a JavaScript string. You may want to consider optimizing your project, or breaking up your project into multiple parts that are built independently. Another option could potentially be to use esbuild's command-line API instead of its JavaScript API, which is more efficient (although of course then you can't use JavaScript plugins, so it may not be an option).

v0.27.3

Compare Source

  • Preserve URL fragments in data URLs (#​4370)

    Consider the following HTML, CSS, and SVG:

    • index.html:

      <!DOCTYPE html>
      <html>
        <head><link rel="stylesheet" href="icons.css"></head>
        <body><div class="triangle"></div></body>
      </html>
    • icons.css:

      .triangle {
        width: 10px;
        height: 10px;
        background: currentColor;
        clip-path: url(./triangle.svg#x);
      }
    • triangle.svg:

      <svg xmlns="http://www.w3.org/2000/svg">
        <defs>
          <clipPath id="x">
            <path d="M0 0H10V10Z"/>
          </clipPath>
        </defs>
      </svg>

    The CSS uses a URL fragment (the #x) to reference the clipPath element in the SVG file. Previously esbuild's CSS bundler didn't preserve the URL fragment when bundling the SVG using the dataurl loader, which broke the bundled CSS. With this release, esbuild will now preserve the URL fragment in the bundled CSS:

    /* icons.css */
    .triangle {
      width: 10px;
      height: 10px;
      background: currentColor;
      clip-path: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"><defs><clipPath id="x"><path d="M0 0H10V10Z"/></clipPath></defs></svg>#x');
    }
  • Parse and print CSS @scope rules (#​4322)

    This release includes dedicated support for parsing @scope rules in CSS. These rules include optional "start" and "end" selector lists. One important consequence of this is that the local/global status of names in selector lists is now respected, which improves the correctness of esbuild's support for CSS modules. Minification of selectors inside @scope rules has also improved slightly.

    Here's an example:

    /* Original code */
    @&#8203;scope (:global(.foo)) to (:local(.bar)) {
      .bar {
        color: red;
      }
    }
    
    /* Old output (with --loader=local-css --minify) */
    @&#8203;scope (:global(.foo)) to (:local(.bar)){.o{color:red}}
    
    /* New output (with --loader=local-css --minify) */
    @&#8203;scope(.foo)to (.o){.o{color:red}}
  • Fix a minification bug with lowering of for await (#​4378, #​4385)

    This release fixes a bug where the minifier would incorrectly strip the variable in the automatically-generated catch clause of lowered for await loops. The code that generated the loop previously failed to mark the internal variable references as used.

  • Update the Go compiler from v1.25.5 to v1.25.7 (#​4383, #​4388)

    This PR was contributed by @​MikeWillCook.

stackblitz-labs/pkg.pr.new (pkg-pr-new)

v0.0.66

Compare Source

v0.0.65

Compare Source

v0.0.63

Compare Source

publint/publint (publint)

v0.3.18

Compare Source

Patch Changes
  • Fix deprecated subpath mapping check crash and make getPkgPathValue from publint/utils return undefined if the path is invalid (ad2aa9c)
isaacs/rimraf (rimraf)

v6.1.3

Compare Source

npm/node-semver (semver)

v7.7.4

Compare Source

Bug Fixes
Documentation
Dependencies
Chores

Configuration

📅 Schedule: Branch creation - "after 10:00 before 19:00 every weekday except after 13:00 before 14:00" in timezone Europe/Berlin, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from prisis as a code owner December 16, 2025 13:35
@renovate renovate bot added the c: dependencies Pull requests that adds/updates a dependency label Dec 16, 2025
@renovate renovate bot enabled auto-merge (squash) December 16, 2025 13:35
@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai bot commented Dec 16, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

  • 🔍 Trigger a full review

Comment @coderabbitai help to get the list of available commands and usage tips.

@github-actions
Copy link
Copy Markdown
Contributor

github-actions bot commented Dec 16, 2025

Thank you for following the naming conventions! 🙏

@renovate renovate bot force-pushed the renovate/patch-patch-updates branch 2 times, most recently from 4e1a121 to 7bb1369 Compare December 22, 2025 09:35
@socket-security
Copy link
Copy Markdown

socket-security bot commented Dec 22, 2025

Warning

Review the following alerts detected in dependencies.

According to your organization's Security Policy, it is recommended to resolve "Warn" alerts. Learn more about Socket for GitHub.

Action Severity Alert  (click "▶" to expand/collapse)
Warn Critical
Critical CVE: Handlebars.js has JavaScript Injection via AST Type Confusion

CVE: GHSA-2w6w-674q-4c4q Handlebars.js has JavaScript Injection via AST Type Confusion (CRITICAL)

Affected versions: >= 4.0.0 < 4.7.9

Patched version: 4.7.9

From: pnpm-lock.yamlnpm/@semantic-release/commit-analyzer@13.0.1npm/@semantic-release/release-notes-generator@14.1.0npm/handlebars@4.7.8

ℹ Read more on: This package | This alert | What is a critical CVE?

Next steps: Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support@socket.dev.

Suggestion: Remove or replace dependencies that include known critical CVEs. Consumers can use dependency overrides or npm audit fix --force to remove vulnerable dependencies.

Mark the package as acceptable risk. To ignore this alert only in this pull request, reply with the comment @SocketSecurity ignore npm/handlebars@4.7.8. You can also ignore all packages with @SocketSecurity ignore-all. To ignore an alert for all future pull requests, use Socket's Dashboard to change the triage state of this alert.

View full report

@renovate renovate bot force-pushed the renovate/patch-patch-updates branch 3 times, most recently from 4f07655 to 4ad759b Compare January 9, 2026 09:03
@renovate renovate bot force-pushed the renovate/patch-patch-updates branch 3 times, most recently from 8916fe8 to 09106af Compare January 13, 2026 10:54
@renovate renovate bot force-pushed the renovate/patch-patch-updates branch from 09106af to 0ceeb2c Compare January 19, 2026 09:09
@renovate renovate bot force-pushed the renovate/patch-patch-updates branch 5 times, most recently from a41670e to 3f38cab Compare February 2, 2026 09:15
@renovate renovate bot changed the title fix(deps): update patch updates (patch) fix(deps): update patch updates (patch) - autoclosed Feb 2, 2026
@renovate renovate bot closed this Feb 2, 2026
auto-merge was automatically disabled February 2, 2026 11:00

Pull request was closed

@renovate renovate bot deleted the renovate/patch-patch-updates branch February 2, 2026 11:00
@renovate renovate bot changed the title fix(deps): update patch updates (patch) - autoclosed fix(deps): update dependency pkg-pr-new to ^0.0.63 Feb 5, 2026
@renovate renovate bot reopened this Feb 5, 2026
@renovate renovate bot force-pushed the renovate/patch-patch-updates branch 2 times, most recently from 3f38cab to 0826dca Compare February 5, 2026 13:39
@renovate renovate bot enabled auto-merge (squash) February 6, 2026 09:28
@renovate renovate bot force-pushed the renovate/patch-patch-updates branch from 0826dca to 4a59593 Compare February 9, 2026 09:12
@renovate renovate bot changed the title fix(deps): update dependency pkg-pr-new to ^0.0.63 fix(deps): update patch updates (patch) Feb 9, 2026
@socket-security
Copy link
Copy Markdown

socket-security bot commented Feb 9, 2026

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Updated@​anolilab/​textlint-config@​12.1.0 ⏵ 12.1.5501009195 +1100
Updated@​anolilab/​prettier-config@​9.1.0 ⏵ 9.1.1671009694100
Updatedesbuild@​0.27.2 ⏵ 0.27.49110073 +191100
Updated@​ckeditor/​typedoc-plugins@​54.3.2 ⏵ 54.3.48010010096100
Addedcosmiconfig@​9.0.19910010085100
Addedgot@​14.6.69910010085100
Updateddockerode@​4.0.9 ⏵ 4.0.10100 +1100100 +187 +5100

View full report

@renovate renovate bot force-pushed the renovate/patch-patch-updates branch 2 times, most recently from d589715 to 3a0bf85 Compare February 19, 2026 09:43
@renovate renovate bot force-pushed the renovate/patch-patch-updates branch 3 times, most recently from 4003ead to e372725 Compare March 4, 2026 09:32
@renovate renovate bot force-pushed the renovate/patch-patch-updates branch 2 times, most recently from 6aafdd8 to 7814fe7 Compare March 5, 2026 14:07
@renovate renovate bot force-pushed the renovate/patch-patch-updates branch 2 times, most recently from c551554 to 5c11e27 Compare March 18, 2026 10:05
@renovate renovate bot force-pushed the renovate/patch-patch-updates branch 2 times, most recently from a99b1a0 to 73c29f8 Compare March 27, 2026 13:13
Signed-off-by: Renovate Bot <bot@renovateapp.com>
@renovate renovate bot force-pushed the renovate/patch-patch-updates branch from 73c29f8 to e8d5f8b Compare March 31, 2026 14:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

c: dependencies Pull requests that adds/updates a dependency

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants