Skip to content

build: update all non-major dependencies (main)#67035

Open
angular-robot wants to merge 1 commit intoangular:mainfrom
angular-robot:ng-renovate/main-all-non-major-dependencies
Open

build: update all non-major dependencies (main)#67035
angular-robot wants to merge 1 commit intoangular:mainfrom
angular-robot:ng-renovate/main-all-non-major-dependencies

Conversation

@angular-robot
Copy link
Contributor

@angular-robot angular-robot commented Feb 12, 2026

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@algolia/client-common 5.48.05.48.1 age adoption passing confidence
@algolia/client-search (source) 5.48.05.48.1 age adoption passing confidence
@algolia/requester-browser-xhr 5.48.05.48.1 age adoption passing confidence
@algolia/requester-node-http 5.48.05.48.1 age adoption passing confidence
@codemirror/commands 6.10.16.10.2 age adoption passing confidence
@codemirror/lint 6.9.36.9.4 age adoption passing confidence
@codemirror/view 6.39.126.39.14 age adoption passing confidence
@csstools/css-calc (source) 3.0.03.1.1 age adoption passing confidence
@types/node (source) 24.10.1124.10.13 age adoption passing confidence
@typescript/vfs (source) 1.6.21.6.3 age adoption passing confidence
algoliasearch (source) 5.48.05.48.1 age adoption passing confidence
esbuild 0.27.20.27.3 age adoption passing confidence
jasmine-core (source) 6.0.06.0.1 age adoption passing confidence
jsdom ~28.0.0~28.1.0 age adoption passing confidence
jsdom 28.0.028.1.0 age adoption passing confidence
marked (source) 17.0.117.0.2 age adoption passing confidence
playwright-core (source) 1.58.11.58.2 age adoption passing confidence

Release Notes

algolia/algoliasearch-client-javascript (@​algolia/client-common)

v5.48.1

Compare Source

codemirror/commands (@​codemirror/commands)

v6.10.2

Compare Source

Bug fixes

Move the selection to a less surprising place when undoing, moving the selection, redoing, then undoing again.

codemirror/lint (@​codemirror/lint)

v6.9.4

Compare Source

Bug fixes

Make sure nextDiagnostic selects entire diagnostics, even when they overlap with other diagnostics.

codemirror/view (@​codemirror/view)

v6.39.14

Compare Source

Bug fixes

Improve performance of posAtCoords on long lines.

Fix a regression where copy and cut in a shadow DOM on Safari would fall back to the native behavior, often copying the wrong text.

v6.39.13

Compare Source

Bug fixes

Fix an issue where a widget at start or end of line, when wrapped to cover that whole line, could block vertical cursor motion.

Fix an issue EditorView.moveVertically that would sometimes cause selection-extending vertical motion to get stuck on line wrapping points.

csstools/postcss-plugins (@​csstools/css-calc)

v3.1.1

Compare Source

February 13, 2026

  • Fix missing whitespace between components after solving calc expressions (e.g. calc(10px)calc(20px) now serializes as 10px 20px)

v3.1.0

Compare Source

February 12, 2026

  • Add onParseError option to calc().

v3.0.1

Compare Source

February 10, 2026

  • Fix source positions for generated functions and comma's. These now adopt the source position of surrounding nodes.
microsoft/TypeScript-Website (@​typescript/vfs)

v1.6.3

Compare Source

Patch Changes
evanw/esbuild (esbuild)

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.

jasmine/jasmine (jasmine-core)

v6.0.1

Compare Source

Please see the release notes.

jsdom/jsdom (jsdom)

v28.1.0

Compare Source

  • Added blob.text(), blob.arrayBuffer(), and blob.bytes() methods.
  • Improved getComputedStyle() to account for CSS specificity when multiple rules apply. (asamuzaK)
  • Improved synchronous XMLHttpRequest performance by using a persistent worker thread, avoiding ~400ms of setup overhead on every synchronous request after the first one.
  • Improved performance of node.getRootNode(), node.isConnected, and event.dispatchEvent() by caching the root node of document-connected trees.
  • Fixed getComputedStyle() to correctly handle !important priority. (asamuzaK)
  • Fixed document.getElementById() to return the first element in tree order when multiple elements share the same ID.
  • Fixed <svg> elements to no longer incorrectly proxy event handlers to the Window.
  • Fixed FileReader event timing and fileReader.result state to more closely follow the spec.
  • Fixed a potential hang when synchronous XMLHttpRequest encountered dispatch errors.
  • Fixed compatibility with environments where Node.js's built-in fetch() has been used before importing jsdom, by working around undici v6/v7 incompatibilities.
markedjs/marked (marked)

v17.0.2

Compare Source

Bug Fixes
microsoft/playwright (playwright-core)

v1.58.2

Compare Source

Highlights

#​39121 fix(trace viewer): make paths via stdin work
#​39129 fix: do not force swiftshader on chromium mac

Browser Versions

  • Chromium 145.0.7632.6
  • Mozilla Firefox 146.0.1
  • WebKit 26.0

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

@angular-robot angular-robot added action: merge The PR is ready for merge by the caretaker area: build & ci Related the build and CI infrastructure of the project target: automation This PR is targeted to only merge into the branch defined in Github [bot use only] labels Feb 12, 2026
@ngbot ngbot bot modified the milestone: Backlog Feb 12, 2026
@pullapprove pullapprove bot requested a review from crisbeto February 12, 2026 06:29
@angular-robot angular-robot force-pushed the ng-renovate/main-all-non-major-dependencies branch 7 times, most recently from 6af5bab to 570f8e9 Compare February 16, 2026 03:08
See associated pull request for more information.
@angular-robot angular-robot force-pushed the ng-renovate/main-all-non-major-dependencies branch from 570f8e9 to b0bcd77 Compare February 16, 2026 04:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

action: merge The PR is ready for merge by the caretaker area: build & ci Related the build and CI infrastructure of the project target: automation This PR is targeted to only merge into the branch defined in Github [bot use only]

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant