Skip to content

chore(deps): bump the npm-minor-and-patch group with 17 updates - #282

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-minor-and-patch-2c52191aaa
Closed

chore(deps): bump the npm-minor-and-patch group with 17 updates#282
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-minor-and-patch-2c52191aaa

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 12, 2026

Copy link
Copy Markdown
Contributor

Bumps the npm-minor-and-patch group with 17 updates:

Package From To
@types/node 26.4.1 26.5.0
playwright 1.62.1 1.63.0
jszip 3.10.1 3.10.2
happy-dom 20.13.2 20.14.0
hls.js 1.7.1 1.7.2
three 0.185.1 0.186.0
hyparquet 1.29.2 1.30.0
string_decoder 1.1.1 1.3.0
maplibre-gl 6.4.1 6.8.0
marked 18.0.11 18.0.12
@lucide/vue 1.39.0 1.43.0
sass 1.103.1 1.104.0
@types/react-dom 19.2.5 19.2.7
requirejs 2.3.7 2.3.8
fumadocs-core 16.15.4 16.15.8
next 16.3.3 16.3.4
postcss 8.5.23 8.5.28

Updates @types/node from 26.4.1 to 26.5.0

Commits

Updates playwright from 1.62.1 to 1.63.0

Release notes

Sourced from playwright's releases.

v1.63.0

🔒 Test locks

Tests that access a shared resource — an external service, a global account setting — can now declare a named lock. Tests that share a lock name never run concurrently, across files, workers and projects, while everything else keeps running in parallel:

test('update user settings', { lock: 'user-settings' }, async ({ page }) => {
  // never runs at the same time as other tests holding 'user-settings'
});

A test can hold multiple locks, and test.describe() accepts a lock for the whole group. Learn more about test locks.

🪟 Locate across frames

page.frameLocator() and frame.frameLocator() called without a selector search in any frame of the subtree, so you no longer need to locate the iframe first:

// Finds the button in any frame on the page.
await page.frameLocator().getByRole('button').click();

The rest of the locator resolves inside a single frame, just like a regular locator, and an error is thrown when it matches elements in several frames.

👁️ Visible-only locators

New locator.visible() returns a locator that matches only visible elements. It is the recommended replacement for the :visible CSS pseudo-class:

await page.locator('button').visible().click();

🧾 Step params and subtitles

Steps now carry structured data for reporters. Playwright API steps report the target locator and call arguments, and test.step() accepts subtitle and params options for your own steps:

await test.step('Login', async () => {
  // ...
}, { subtitle: 'as admin', params: { user: 'admin' } });

Reporters receive them via testStep.subtitle and testStep.params. For Playwright API

... (truncated)

Commits
  • 1b025d7 chore: mark v1.63.0 (#42569)
  • 0b9956d cherry-pick(#42568): docs(test): mark test.step subtitle option as since v1.63
  • 13dbf10 cherry-pick(#42552): docs: release notes for v1.63
  • e93b64e cherry-pick(#42566): feat(test): add subtitle option to test.step (#42567)
  • 2b7a5f2 test: response.body() for content-encoding:identity (#42537)
  • 648a67c fix(mcp): create parent directories for explicitly named files (#42540)
  • 7894f56 docs(mcp): clarify how tool file names are resolved (#42538)
  • 52900a1 devops: restore npm publishing from GitHub Actions (#42550)
  • 8c47f59 docs(csharp): fix nonexistent method names in guide examples (#42507)
  • bd6e552 chore(video): emit frames with real timestamps, drop frame number quantizatio...
  • Additional commits viewable in compare view

Updates jszip from 3.10.1 to 3.10.2

Changelog

Sourced from jszip's changelog.

v3.10.2 2026-09-09

  • Fix cross-realm binary type detection in getTypeOf. Fixes #759 (see #578)
  • Add missing types for JSZip.defaults. Fixes #690 (see #927)
  • Fix Blob support in Node.js 18 and up. Fixes #941 (see #955)
Commits
Maintainer changes

This version was pushed to npm by jkoops, a new releaser for jszip since your current version.


Updates happy-dom from 20.13.2 to 20.14.0

Release notes

Sourced from happy-dom's releases.

v20.14.0

🎨 Features

Commits

Updates hls.js from 1.7.1 to 1.7.2

Release notes

Sourced from hls.js's releases.

v1.7.2

Summary

HLS.js v1.7.2 includes bug fixes and improvements over the last release.

Changes Since The Last Release

video-dev/hls.js@v1.7.1...v1.7.2

  • Bundle externals in TypeScript type definitions (#8019) @​robwalch
  • Fix capLevelToPlayerSize with stable player size (#8011)
  • Prevent duration collapse on seek to gap at end-of-stream (#8027)
  • Fix blocking reload for MSN 0 (#8013) @​darfink
  • Process empty WebVTT parts with MAP segments (#8012)
  • Fix IMSC1 millisecond parsing (#8003) @​luantaraschi
  • Fix default the TTML tick rate for IMSC1 subtitles (#8024)
  • Fix HLS Variable Substitution after a Media Playlist parsing error (#7992) @​luantaraschi
  • Docs: add inspect.software health badge (#7989) @​Nayjest

Demo Page

https://e06ac3e1.hls-js-dev.pages.dev/demo/

Feedback

Please provide feedback via Issues in GitHub. For more details on how to contribute to HLS.js, see our CONTRIBUTING guide.

Commits
  • dd669ec Do not mark end-of-stream on empty or GAP segments
  • 28aad06 fix(subtitles): process empty WebVTT parts
  • ded4e78 Default the TTML tick rate instead of dividing by zero
  • 971ffee Convert IMSC1 milliseconds to seconds instead of multiplying
  • f0b8f96 fix: enable blocking reload for MSN 0
  • d12d447 Bundle externals in type definitions (#8019)
  • bc96ed9 Fix capLevelToPlayerSize with stable player size
  • d80bc2f Merge pull request #8017 from video-dev/renovate/wrangler-4.x
  • dd8d2be Update dependency wrangler to v4.124.0
  • f9c3eb7 Merge pull request #8016 from video-dev/renovate/microsoft-api-extractor-7.x
  • Additional commits viewable in compare view

Updates three from 0.185.1 to 0.186.0

Commits

Updates hyparquet from 1.29.2 to 1.30.0

Changelog

Sourced from hyparquet's changelog.

[1.30.0]

  • Add opt-in physical row index symbol to object rows (#176)
Commits

Updates string_decoder from 1.1.1 to 1.3.0

Release notes

Sourced from string_decoder's releases.

v1.3.0

  • Bump safe-buffer to 5.2.0 #15

v1.2.0

  • only ship lib/ folder #11
Commits

Updates maplibre-gl from 6.4.1 to 6.8.0

Release notes

Sourced from maplibre-gl's releases.

v6.8.0

✨ Features and improvements

  • Add map.getStyleUrl(), which returns the URL the style was loaded from, or null when the style was given as an object (#7109) (by @​bradymadden97 and @​giswqs)
  • Sample terrain render-to-texture output through mipmaps with trilinear filtering, so draped layers stop shimmering and aliasing at high pitch (#8328, continues #7673) (by @​AveryanAlex)
  • Build the Intl.Segmenter instances used for text shaping on first use instead of at import, shaving several milliseconds off loading MapLibre on the main thread (#8337) (by @​cherenkov)
  • Link shader programs before reading their compile status, so the driver can overlap the compiles and the main thread waits less on shader compilation (#8338) (by @​cherenkov)
  • Build the default Marker pin once and clone it per marker, so creating many default markers takes roughly half the constructor time (#8340) (by @​cherenkov)
  • Add SDF rendering support for fill patterns, using fill-color as the foreground color (#7747) (by @​bradymadden97 and @​deniial00)
  • Warn once when the canvas is clamped to maxCanvasSize, which previously lowered the rendered resolution silently (#8200) (by @​str0kes)

🐞 Bug fixes

  • Fix a marker's popup jumping to another world copy when the marker is moved across the antimeridian on a zoomed-out map (#5655, #8326, continues #5956) (by @​yuiseki)
  • Fix terrain drape textures not being refreshed after zoom changes, causing stale rendering at the new zoom level (#8251) (by @​patte)
  • Fix a gap between the sky and the ground at high pitch while globe transitions to mercator (#7382) (by @​birkskyum)
  • Treat an empty tile response (e.g. HTTP 204) as no data: raster-DEM tiles now load without elevation instead of failing with a dem dimension mismatch error, and empty raster tiles render as transparent (#1551) (by @​clement-igonet)
  • Validate the before layer in map.moveLayer before reordering, so passing the id of a layer that does not exist leaves the layer order untouched instead of dropping the moved layer out of it (#8301) (by @​lazerg)
  • Fix visible seams between hillshade tiles when using linear interpolation. (#8302) (by @​Turbo87)
  • Fix the map freezing when a render task throws an error (#6093) (by @​UberMouse)
  • Fix getCameraAltitude() returning NaN under globe and vertical-perspective, which disabled marker terrain occlusion and the camera terrain check; the altitude now follows the sphere (#6584) (by @​bigmistqke and @​patte)
  • Draw an elevated symbol on globe when the symbol itself is in view but the ground under it is behind the horizon; occlusion now follows the line of sight to the elevated point (#8253) (by @​clement-igonet)
  • Fix setTiles producing stale tile URLs when loadTile runs in the same frame (#8323) (by @​johncarmack1984 and @​nostrorom)
  • Keep the tile under an elevated symbol from being culled near the horizon, so a symbol with a large symbol-height-offset stays visible until it is behind the planet (#8316) (by @​clement-igonet)

v6.7.0

✨ Features and improvements

  • Support the style specification's font-faces property, with map.setFontFaces and map.getFontFaces and improve complex script languages such as Devanagari, Khmer, Burmese and Hebrew (#8237) (by @​HarelM)
  • Wrap Thai, Khmer, Burmese, Lao, Tibetan, Javanese and Balinese labels at word boundaries instead of running them on in one line, which applies to every style whether or not it declares font-faces (#8237) (by @​HarelM)
  • Throw GPUInitializationError from the Map constructor when the WebGL2 context cannot be created, instead of firing an error event no listener can catch and returning a partially constructed map (#8066) (by @​johncarmack1984)
  • Allow adding an image source without a url. The source starts empty and makes no network request; call updateImage({image}) or updateImage({url}) later to show an image (#8167) (by @​mondsichtung)
  • Skip symbol re-placement when its inputs are unchanged, so repaints from animated style images or custom layers cost a single frame (#8208) (by @​lucaswoj)
  • Add Style#triggerSymbolPlacement, which re-places symbols when something the map cannot see for itself has moved them (#8208) (by @​lucaswoj)
  • Make {validate: false} skip the style snapshot the style setters only build as error context, so adding layers one at a time no longer serializes the whole style on every call (#8259) (by @​lazerg)

🐞 Bug fixes

  • Disable the navigation control's zoom-out button when viewport constraints prevent zooming out further (#5316) (by @​miakh)
  • Keep a vector tile's etag when the tile is reloaded after a style change, so the next expiry refresh can still skip unchanged tiles (#3309) (by @​johncarmack1984)
  • Fix project() and queryTerrainElevation disagreeing with the rendered terrain surface when the elevation lookup sampled a different DEM zoom than the drawn mesh (#8212) (by @​johncarmack1984)
  • Draw numbers (e.g. “21” in “반포대로21길”) and short uppercase codes (e.g. “A1”) upright in vertical line labels instead of rotating them along the line (#5404) (by @​NEKOYASAN)
  • Fix the camera jumping at the end of a pan or zoom gesture on terrain by sampling the center elevation from the rendered terrain surface (#7989, #3982) (by @​johncarmack1984)
  • Ensure style state defaults are serialized (#8263) (by @​hiddewie)

v6.6.0

✨ Features and improvements

... (truncated)

Changelog

Sourced from maplibre-gl's changelog.

6.8.0

✨ Features and improvements

  • Add map.getStyleUrl(), which returns the URL the style was loaded from, or null when the style was given as an object (#7109) (by @​bradymadden97 and @​giswqs)
  • Sample terrain render-to-texture output through mipmaps with trilinear filtering, so draped layers stop shimmering and aliasing at high pitch (#8328, continues #7673) (by @​AveryanAlex)
  • Build the Intl.Segmenter instances used for text shaping on first use instead of at import, shaving several milliseconds off loading MapLibre on the main thread (#8337) (by @​cherenkov)
  • Link shader programs before reading their compile status, so the driver can overlap the compiles and the main thread waits less on shader compilation (#8338) (by @​cherenkov)
  • Build the default Marker pin once and clone it per marker, so creating many default markers takes roughly half the constructor time (#8340) (by @​cherenkov)
  • Add SDF rendering support for fill patterns, using fill-color as the foreground color (#7747) (by @​bradymadden97 and @​deniial00)
  • Warn once when the canvas is clamped to maxCanvasSize, which previously lowered the rendered resolution silently (#8200) (by @​str0kes)

🐞 Bug fixes

  • Fix a marker's popup jumping to another world copy when the marker is moved across the antimeridian on a zoomed-out map (#5655, #8326, continues #5956) (by @​yuiseki)
  • Fix terrain drape textures not being refreshed after zoom changes, causing stale rendering at the new zoom level (#8251) (by @​patte)
  • Fix a gap between the sky and the ground at high pitch while globe transitions to mercator (#7382) (by @​birkskyum)
  • Treat an empty tile response (e.g. HTTP 204) as no data: raster-DEM tiles now load without elevation instead of failing with a dem dimension mismatch error, and empty raster tiles render as transparent (#1551) (by @​clement-igonet)
  • Read the map container's dimensions before mutating it in Map#_setupContainer, avoiding a forced synchronous layout reflow on every map initialization (#8307) (by @​lazerg)
  • Validate the before layer in map.moveLayer before reordering, so passing the id of a layer that does not exist leaves the layer order untouched instead of dropping the moved layer out of it (#8301) (by @​lazerg)
  • Fix visible seams between hillshade tiles when using linear interpolation. (#8302) (by @​Turbo87)
  • Fix the map freezing when a render task throws an error (#6093) (by @​UberMouse)
  • Fix getCameraAltitude() returning NaN under globe and vertical-perspective, which disabled marker terrain occlusion and the camera terrain check; the altitude now follows the sphere (#6584) (by @​bigmistqke and @​patte)
  • Draw an elevated symbol on globe when the symbol itself is in view but the ground under it is behind the horizon; occlusion now follows the line of sight to the elevated point (#8253) (by @​clement-igonet)
  • Fix setTiles producing stale tile URLs when loadTile runs in the same frame (#8323) (by @​johncarmack1984 and @​nostrorom)
  • Keep the tile under an elevated symbol from being culled near the horizon, so a symbol with a large symbol-height-offset stays visible until it is behind the planet (#8316) (by @​clement-igonet)

6.7.0

✨ Features and improvements

  • Support the style specification's font-faces property, with map.setFontFaces and map.getFontFaces and improve complex script languages such as Devanagari, Khmer, Burmese and Hebrew (#8237) (by @​HarelM)
  • Wrap Thai, Khmer, Burmese, Lao, Tibetan, Javanese and Balinese labels at word boundaries instead of running them on in one line, which applies to every style whether or not it declares font-faces (#8237) (by @​HarelM)
  • Throw GPUInitializationError from the Map constructor when the WebGL2 context cannot be created, instead of firing an error event no listener can catch and returning a partially constructed map (#8066) (by @​johncarmack1984)
  • Allow adding an image source without a url. The source starts empty and makes no network request; call updateImage({image}) or updateImage({url}) later to show an image (#8167) (by @​mondsichtung)
  • Skip symbol re-placement when its inputs are unchanged, so repaints from animated style images or custom layers cost a single frame (#8208) (by @​lucaswoj)
  • Add Style#triggerSymbolPlacement, which re-places symbols when something the map cannot see for itself has moved them (#8208) (by @​lucaswoj)
  • Make {validate: false} skip the style snapshot the style setters only build as error context, so adding layers one at a time no longer serializes the whole style on every call (#8259) (by @​lazerg)

🐞 Bug fixes

  • Disable the navigation control's zoom-out button when viewport constraints prevent zooming out further (#5316) (by @​miakh)
  • Keep a vector tile's etag when the tile is reloaded after a style change, so the next expiry refresh can still skip unchanged tiles (#3309) (by @​johncarmack1984)
  • Fix project() and queryTerrainElevation disagreeing with the rendered terrain surface when the elevation lookup sampled a different DEM zoom than the drawn mesh (#8212) (by @​johncarmack1984)
  • Draw numbers (e.g. “21” in “반포대로21길”) and short uppercase codes (e.g. “A1”) upright in vertical line labels instead of rotating them along the line (#5404) (by @​NEKOYASAN)
  • Fix the camera jumping at the end of a pan or zoom gesture on terrain by sampling the center elevation from the rendered terrain surface (#7989, #3982) (by @​johncarmack1984)
  • Ensure style state defaults are serialized (#8263) (by @​hiddewie)

6.6.0

... (truncated)

Commits
  • 9df21da Bump js version to 6.8.0 (#8371)
  • 05302ad fix: compute pixelsPerMeter in the transform helper so getCameraAltitude() wo...
  • cf1781c test: serve the browser tests' tiles and styles from local fixtures (#8367)
  • 055db89 refactor: unify bucket dependency finalization through addFeatures (#8347)
  • 045a3ce Warn when the canvas is clamped to maxCanvasSize (#8275)
  • d2d0371 Keep tiles under elevated symbols from being culled near the horizon (#8319)
  • 0b33607 chore(deps-dev): bump puppeteer from 25.9.0 to 25.10.0 (#8359)
  • 86d30b0 chore(deps-dev): bump devtools-protocol from 0.0.1687809 to 0.0.1692173 (#8354)
  • 9a0884f chore(deps-dev): bump cspell from 10.2.0 to 10.2.1 (#8360)
  • 3d42c64 chore(deps-dev): bump postcss from 8.5.26 to 8.5.28 (#8362)
  • Additional commits viewable in compare view

Updates marked from 18.0.11 to 18.0.12

Release notes

Sourced from marked's releases.

v18.0.12

18.0.12 (2026-09-07)

Bug Fixes

  • allow a tab before the closing sequence of an ATX heading (#4084) (4417582)
  • allow one more level of nested brackets in a link label (#4064) (37b28d8)
  • do not add a newline to an empty code block (#4073) (23b1706)
  • escape character references in autolink destinations (#4053) (8f432f0)
  • reject GFM email autolink when the domain ends in _ or - (#4063) (df57534)
  • reject invalid characters in HTML tag names (#4083) (300bb1d)
  • remove up to the fence indentation from each content line (#4074) (0244f08)
Commits
  • 24bf47c chore(release): 18.0.12 [skip ci]
  • 475ba3d chore(deps-dev): bump eslint from 10.9.1 to 10.10.0 (#4088)
  • 4417582 fix: allow a tab before the closing sequence of an ATX heading (#4084)
  • 23b1706 fix: do not add a newline to an empty code block (#4073)
  • df57534 fix: reject GFM email autolink when the domain ends in _ or - (#4063)
  • 37b28d8 fix: allow one more level of nested brackets in a link label (#4064)
  • 8f432f0 fix: escape character references in autolink destinations (#4053)
  • 44ddc31 docs: add inspect.software health badge (#4062)
  • 0244f08 fix: remove up to the fence indentation from each content line (#4074)
  • 300bb1d fix: reject invalid characters in HTML tag names (#4083)
  • Additional commits viewable in compare view

Updates @lucide/vue from 1.39.0 to 1.43.0

Release notes

Sourced from @​lucide/vue's releases.

Version 1.43.0

What's Changed

Full Changelog: lucide-icons/lucide@1.42.0...1.43.0

Version 1.42.0

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@1.41.0...1.42.0

Version 1.41.0

What's Changed

... (truncated)

Commits

Updates sass from 1.103.1 to 1.104.0

Release notes

Sourced from sass's releases.

Dart Sass 1.104.0

To install Sass 1.104.0, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • Potentially breaking compatibility fix: Colors now convert the special values NaN and negative zero, as well as infinity and negative infinity for polar-hue channels, to 0 as per the CSS spec.

  • The special value negative zero is now serialized as -0 instead of 0 for greater compatibility when using it in CSS calculations.

See the full changelog for changes in earlier releases.

Changelog

Sourced from sass's changelog.

1.104.0

  • Potentially breaking compatibility fix: Colors now convert the special values NaN and negative zero, as well as infinity and negative infinity for polar-hue channels, to 0 as per the CSS spec.

  • The special value negative zero is now serialized as -0 instead of 0 for greater compatibility when using it in CSS calculations.

Commits

Updates @types/react-dom from 19.2.5 to 19.2.7

Commits

Updates requirejs from 2.3.7 to 2.3.8

Commits

Updates fumadocs-core from 16.15.4 to 16.15.8

Release notes

Sourced from fumadocs-core's releases.

fumadocs@16.15.8

  • @​fumadocs/base-ui@​16.15.8
  • fumadocs-core@16.15.8
  • fumadocs-ui@16.15.8

Fix Tabs reverting to the hash target after a tab click

The hash-to-tab logic of Tabs ran on every render instead of only on mount and hashchange, because the effect depended on a useEffectEvent callback, which is not referentially stable.

fumadocs@16.15.7

  • @​fumadocs/base-ui@​16.15.7
  • fumadocs-core@16.15.7
  • fumadocs-ui@16.15.7

Async _fd_prepare hook for Shiki transformersDescription has been truncated

Bumps the npm-minor-and-patch group with 17 updates:

| Package | From | To |
| --- | --- | --- |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `26.4.1` | `26.5.0` |
| [playwright](https://github.com/microsoft/playwright) | `1.62.1` | `1.63.0` |
| [jszip](https://github.com/Stuk/jszip) | `3.10.1` | `3.10.2` |
| [happy-dom](https://github.com/capricorn86/happy-dom) | `20.13.2` | `20.14.0` |
| [hls.js](https://github.com/video-dev/hls.js) | `1.7.1` | `1.7.2` |
| [three](https://github.com/mrdoob/three.js) | `0.185.1` | `0.186.0` |
| [hyparquet](https://github.com/hyparam/hyparquet) | `1.29.2` | `1.30.0` |
| [string_decoder](https://github.com/nodejs/string_decoder) | `1.1.1` | `1.3.0` |
| [maplibre-gl](https://github.com/maplibre/maplibre-gl-js) | `6.4.1` | `6.8.0` |
| [marked](https://github.com/markedjs/marked) | `18.0.11` | `18.0.12` |
| [@lucide/vue](https://github.com/lucide-icons/lucide/tree/HEAD/packages/vue) | `1.39.0` | `1.43.0` |
| [sass](https://github.com/sass/dart-sass) | `1.103.1` | `1.104.0` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.2.5` | `19.2.7` |
| [requirejs](https://github.com/jrburke/r.js) | `2.3.7` | `2.3.8` |
| [fumadocs-core](https://github.com/fuma-nama/fumadocs) | `16.15.4` | `16.15.8` |
| [next](https://github.com/vercel/next.js) | `16.3.3` | `16.3.4` |
| [postcss](https://github.com/postcss/postcss) | `8.5.23` | `8.5.28` |


Updates `@types/node` from 26.4.1 to 26.5.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `playwright` from 1.62.1 to 1.63.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.62.1...v1.63.0)

Updates `jszip` from 3.10.1 to 3.10.2
- [Changelog](https://github.com/Stuk/jszip/blob/main/CHANGES.md)
- [Commits](Stuk/jszip@v3.10.1...v3.10.2)

Updates `happy-dom` from 20.13.2 to 20.14.0
- [Release notes](https://github.com/capricorn86/happy-dom/releases)
- [Commits](capricorn86/happy-dom@v20.13.2...v20.14.0)

Updates `hls.js` from 1.7.1 to 1.7.2
- [Release notes](https://github.com/video-dev/hls.js/releases)
- [Changelog](https://github.com/video-dev/hls.js/blob/master/docs/release-process.md)
- [Commits](video-dev/hls.js@v1.7.1...v1.7.2)

Updates `three` from 0.185.1 to 0.186.0
- [Release notes](https://github.com/mrdoob/three.js/releases)
- [Commits](https://github.com/mrdoob/three.js/commits)

Updates `hyparquet` from 1.29.2 to 1.30.0
- [Changelog](https://github.com/hyparam/hyparquet/blob/master/CHANGELOG.md)
- [Commits](hyparam/hyparquet@v1.29.2...v1.30.0)

Updates `string_decoder` from 1.1.1 to 1.3.0
- [Release notes](https://github.com/nodejs/string_decoder/releases)
- [Commits](nodejs/string_decoder@v1.1.1...v1.3.0)

Updates `maplibre-gl` from 6.4.1 to 6.8.0
- [Release notes](https://github.com/maplibre/maplibre-gl-js/releases)
- [Changelog](https://github.com/maplibre/maplibre-gl-js/blob/main/CHANGELOG.md)
- [Commits](maplibre/maplibre-gl-js@v6.4.1...v6.8.0)

Updates `marked` from 18.0.11 to 18.0.12
- [Release notes](https://github.com/markedjs/marked/releases)
- [Commits](markedjs/marked@v18.0.11...v18.0.12)

Updates `@lucide/vue` from 1.39.0 to 1.43.0
- [Release notes](https://github.com/lucide-icons/lucide/releases)
- [Commits](https://github.com/lucide-icons/lucide/commits/1.43.0/packages/vue)

Updates `sass` from 1.103.1 to 1.104.0
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.103.1...1.104.0)

Updates `@types/react-dom` from 19.2.5 to 19.2.7
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `requirejs` from 2.3.7 to 2.3.8
- [Commits](requirejs/r.js@2.3.7...2.3.8)

Updates `fumadocs-core` from 16.15.4 to 16.15.8
- [Release notes](https://github.com/fuma-nama/fumadocs/releases)
- [Commits](https://github.com/fuma-nama/fumadocs/compare/fumadocs@16.15.4...fumadocs@16.15.8)

Updates `next` from 16.3.3 to 16.3.4
- [Release notes](https://github.com/vercel/next.js/releases)
- [Commits](vercel/next.js@v16.3.3...v16.3.4)

Updates `postcss` from 8.5.23 to 8.5.28
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.5.23...8.5.28)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-version: 26.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor-and-patch
- dependency-name: playwright
  dependency-version: 1.63.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor-and-patch
- dependency-name: jszip
  dependency-version: 3.10.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-minor-and-patch
- dependency-name: happy-dom
  dependency-version: 20.14.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor-and-patch
- dependency-name: hls.js
  dependency-version: 1.7.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-minor-and-patch
- dependency-name: three
  dependency-version: 0.186.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-minor-and-patch
- dependency-name: hyparquet
  dependency-version: 1.30.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-minor-and-patch
- dependency-name: string_decoder
  dependency-version: 1.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor-and-patch
- dependency-name: maplibre-gl
  dependency-version: 6.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-minor-and-patch
- dependency-name: marked
  dependency-version: 18.0.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-minor-and-patch
- dependency-name: "@lucide/vue"
  dependency-version: 1.43.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-minor-and-patch
- dependency-name: sass
  dependency-version: 1.104.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor-and-patch
- dependency-name: "@types/react-dom"
  dependency-version: 19.2.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-minor-and-patch
- dependency-name: requirejs
  dependency-version: 2.3.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-minor-and-patch
- dependency-name: fumadocs-core
  dependency-version: 16.15.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-minor-and-patch
- dependency-name: next
  dependency-version: 16.3.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-minor-and-patch
- dependency-name: postcss
  dependency-version: 8.5.28
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Sep 12, 2026
github-actions Bot added a commit that referenced this pull request Sep 12, 2026
…e gates

Refs #280, #282, #283, #284. Preserve Vitest 4 until a separately validated major migration. Test actual browser Avro and IFC output; regenerate license metadata without changing acceptance rules. No package publication.
@dependabot @github

dependabot Bot commented on behalf of github Sep 12, 2026

Copy link
Copy Markdown
Contributor Author

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Sep 12, 2026
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/npm-minor-and-patch-2c52191aaa branch September 12, 2026 21:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants