An open index of dependabot pull requests across open source projects.

chore(deps): bump the production-dependencies group across 1 directory with 25 updates

Merged
Number: #19
Type: Pull Request
State: Merged
Author: dependabot[bot] dependabot[bot]
Association: Contributor
Comments: 0
Created: March 31, 2025 at 05:00 AM UTC
(7 months ago)
Updated: August 11, 2025 at 03:13 AM UTC
(3 months ago)
Merged: August 11, 2025 at 03:13 AM UTC
(3 months ago)
by gjaykrishnan
Time to Close: 4 months
Labels:
dependencies javascript
Description:

Bumps the production-dependencies group with 25 updates in the / directory:

Package From To
@clack/prompts 0.9.0 0.10.0
@floating-ui/dom 1.6.12 1.6.13
flexsearch 0.7.43 0.8.147
globby 14.0.2 14.1.0
hast-util-to-html 9.0.4 9.0.5
hast-util-to-jsx-runtime 2.3.2 2.3.6
lightningcss 1.28.2 1.29.3
mdast-util-find-and-replace 3.0.1 3.0.2
mermaid 11.4.1 11.6.0
pixi.js 8.6.6 8.9.1
preact 10.25.4 10.26.4
preact-render-to-string 6.5.12 6.5.13
rehype-citation 2.2.2 2.3.0
rehype-mathjax 6.0.0 7.1.0
rehype-pretty-code 0.14.0 0.14.1
remark-gfm 4.0.0 4.0.1
satori 0.12.0 0.12.2
shiki 1.24.4 3.2.1
ws 8.18.0 8.18.1
@types/ws 8.5.13 8.18.0
@types/node 22.10.2 22.13.14
esbuild 0.24.2 0.25.2
prettier 3.4.2 3.5.3
tsx 4.19.2 4.19.3
typescript 5.7.2 5.8.2

Updates @clack/prompts from 0.9.0 to 0.10.0

Release notes

Sourced from @​clack/prompts's releases.

@​clack/prompts@​0.10.0

Minor Changes

  • 613179d: Adds a new indicator option to spinner, which supports the original "dots" loading animation or a new "timer" loading animation.

    import * as p from "@clack/prompts";
    

    const spin = p.spinner({ indicator: "timer" }); spin.start("Loading"); await sleep(3000); spin.stop("Loaded");

  • a38b2bc: Adds stream API which provides the same methods as log, but for iterable (even async) message streams. This is particularly useful for AI responses which are dynamically generated by LLMs.

    import * as p from "@clack/prompts";
    

    await p.stream.step( (async function* () { yield* generateLLMResponse(question); })() );

@​clack/prompts@​0.9.1

Patch Changes

  • 8093f3c: Adds Error support to the validate function
  • 98925e3: Exports the Option type and improves JSDocannotations
  • 1904e57: Replace custom utility for stripping ANSI control sequences with Node's built-in stripVTControlCharacters utility.
  • Updated dependencies [8093f3c]
  • Updated dependencies [e5ba09a]
  • Updated dependencies [8cba8e3]
    • @​clack/core@​0.4.1
Changelog

Sourced from @​clack/prompts's changelog.

0.10.0

Minor Changes

  • 613179d: Adds a new indicator option to spinner, which supports the original "dots" loading animation or a new "timer" loading animation.

    import * as p from "@clack/prompts";
    

    const spin = p.spinner({ indicator: "timer" }); spin.start("Loading"); await sleep(3000); spin.stop("Loaded");

  • a38b2bc: Adds stream API which provides the same methods as log, but for iterable (even async) message streams. This is particularly useful for AI responses which are dynamically generated by LLMs.

    import * as p from "@clack/prompts";
    

    await p.stream.step( (async function* () { yield* generateLLMResponse(question); })() );

0.9.1

Patch Changes

  • 8093f3c: Adds Error support to the validate function
  • 98925e3: Exports the Option type and improves JSDocannotations
  • 1904e57: Replace custom utility for stripping ANSI control sequences with Node's built-in stripVTControlCharacters utility.
  • Updated dependencies [8093f3c]
  • Updated dependencies [e5ba09a]
  • Updated dependencies [8cba8e3]
    • @​clack/core@​0.4.1
Commits

Updates @floating-ui/dom from 1.6.12 to 1.6.13

Release notes

Sourced from @​floating-ui/dom's releases.

@​floating-ui/dom@​1.6.13

Patch Changes

  • fix(autoUpdate): work around IntersectionObserver issue that sometimes fails to detect movement of reference element
  • Update dependencies: @floating-ui/utils@0.2.9
Changelog

Sourced from @​floating-ui/dom's changelog.

1.6.13

Patch Changes

  • fix(autoUpdate): work around IntersectionObserver issue that sometimes fails to detect movement of reference element
  • Update dependencies: @floating-ui/utils@0.2.9
Commits
  • b0dfb58 chore: version packages (#3187)
  • 87504f9 style(dom): apply prettier config (#3189)
  • 1fa2c50 chore(eslint): add 'eslint-plugin-prettier', apply 'prettier' rules (#3177)
  • 1d20f84 fix(getContainingBlock): check for shorthand transform CSS properties (transl...
  • 993e823 fix(autoUpdate): work around bug where intersection ratio is 1 but element ac...
  • 48c872c chore(eslint): migrate eslint configuration .eslintrc.js to eslint.config.mjs...
  • See full diff in compare view

Updates flexsearch from 0.7.43 to 0.8.147

Release notes

Sourced from flexsearch's releases.

v0.8.1

  • Resolver Support for Documents
  • Asynchronous Runtime Balancer, new option priority
  • Export/Import Worker Indexes + Document Worker, new extern config options export and import
  • Improved interoperability of the different build packages, including source folder
  • Support custom filter function for encoder (stop-word filter)

v0.8.0

  • Persistent indexes support for: IndexedDB (Browser), Redis, SQLite, Postgres, MongoDB, Clickhouse
  • Enhanced language customization via the new Encoder class
  • Result Highlighting
  • Query performance achieve results up to 4.5 times faster compared to the previous generation v0.7.x by also improving the quality of results
  • Enhanced support for larger indexes or larger result sets
  • Improved offset and limit processing achieve up to 100 times faster traversal performance through large datasets
  • Support for larger In-Memory index with extended key size (the defaults maximum keystore limit is: 2^24)
  • Greatly enhanced performance of the whole text encoding pipeline
  • Improved indexing of numeric content (Triplets)
  • Intermediate result sets and Resolver
  • Basic Resolver: and, or, xor, not, limit, offset, boost, resolve
  • Improved charset collection
  • New charset preset soundex which further reduces memory consumption by also increasing "fuzziness"
  • Performance gain when polling tasks to the index by using "Event-Loop-Caches"
  • Up to 100 times faster deletion/replacement when not using the additional "fastupdate" register
  • Regex Pre-Compilation (transforms hundreds of regex rules into just a few)
  • Extended support for multiple tags (DocumentIndex)
  • Custom Fields ("Virtual Fields")
  • Custom Filter
  • Custom Score Function
  • Added French language preset (stop-word filter, stemmer)
  • Enhanced Worker Support
  • Export / Import index in chunks
  • Improved Build System + Bundler (Supported: CommonJS, ESM, Global Namespace), also the import of language packs are now supported for Node.js
  • Full covering index.d.ts type definitions
  • Fast-Boot Serialization optimized for Server-Side-Rendering (PHP, Python, Ruby, Rust, Java, Go, Node.js, ...)
Changelog

Sourced from flexsearch's changelog.

Changelog

Current Version

  • Use multi-language charset normalization as the default Encoder
  • Simplified charset support for CJK, Arabic, Cyrillic, Hindi, ... no extra charset definition required, the default encoder can handle them all
  • Charset renamed LatinExact => Exact, LatinDefault => Default and LatinSimple => Normalize, these are universal charset presets for any languages
  • Charset CjkDefault, ArabicDefault and CyrillicDefault was removed, they are fully covered by the default universal charset presets

v0.8.1

  • Resolver Support for Documents
  • Asynchronous Runtime Balancer, new option priority
  • Export/Import Worker Indexes + Document Worker, new extern config options export and import
  • Improved interoperability of the different build packages, including source folder
  • Support custom filter function for encoder (stop-word filter)

v0.8.0

  • Persistent indexes support for: IndexedDB (Browser), Redis, SQLite, Postgres, MongoDB, Clickhouse
  • Enhanced language customization via the new Encoder class
  • Result Highlighting
  • Query performance achieve results up to 4.5 times faster compared to the previous generation v0.7.x by also improving the quality of results
  • Enhanced support for larger indexes or larger result sets
  • Improved offset and limit processing achieve up to 100 times faster traversal performance through large datasets
  • Support for larger In-Memory index with extended key size (the defaults maximum keystore limit is: 2^24)
  • Greatly enhanced performance of the whole text encoding pipeline
  • Improved indexing of numeric content (Triplets)
  • Intermediate result sets and Resolver
  • Basic Resolver: and, or, xor, not, limit, offset, boost, resolve
  • Improved charset collection
  • New charset preset soundex which further reduces memory consumption by also increasing "fuzziness"
  • Performance gain when polling tasks to the index by using "Event-Loop-Caches"
  • Up to 100 times faster deletion/replacement when not using the additional "fastupdate" register
  • Regex Pre-Compilation (transforms hundreds of regex rules into just a few)
  • Extended support for multiple tags (DocumentIndex)
  • Custom Fields ("Virtual Fields")
  • Custom Filter
  • Custom Score Function
  • Added French language preset (stop-word filter, stemmer)
  • Enhanced Worker Support
  • Export / Import index in chunks
  • Improved Build System + Bundler (Supported: CommonJS, ESM, Global Namespace), also the import of language packs are now supported for Node.js
  • Full covering index.d.ts type definitions
  • Fast-Boot Serialization optimized for Server-Side-Rendering (PHP, Python, Ruby, Rust, Java, Go, Node.js, ...)

v0.7.0

  • Bidirectional Context (the order of words can now vary, does not increase memory when using bidirectional context)
  • New memory-friendly strategy for indexes (switchable, saves up to 50% of memory for each index, slightly decrease performance)

... (truncated)

Commits

Updates globby from 14.0.2 to 14.1.0

Release notes

Sourced from globby's releases.

v14.1.0

  • Export isIgnoredByIgnoreFiles and isIgnoredByIgnoreFilesSync functions (#269) cba8941

https://github.com/sindresorhus/globby/compare/v14.0.2...v14.1.0

Commits

Updates hast-util-to-html from 9.0.4 to 9.0.5

Release notes

Sourced from hast-util-to-html's releases.

9.0.5

  • 329625e Update property-information

Full Changelog: https://github.com/syntax-tree/hast-util-to-html/compare/9.0.4...9.0.5

Commits

Updates hast-util-to-jsx-runtime from 2.3.2 to 2.3.6

Release notes

Sourced from hast-util-to-jsx-runtime's releases.

2.3.6

Full Changelog: https://github.com/syntax-tree/hast-util-to-jsx-runtime/compare/2.3.5...2.3.6

2.3.5

  • d25e00a Remove no longer working type hack

Full Changelog: https://github.com/syntax-tree/hast-util-to-jsx-runtime/compare/2.3.4...2.3.5

2.3.4

Types

  • bf5ccaa Fix type error if JSX is not defined

Full Changelog: https://github.com/syntax-tree/hast-util-to-jsx-runtime/compare/2.3.3...2.3.4

2.3.3

  • da03821 Update property-information

Full Changelog: https://github.com/syntax-tree/hast-util-to-jsx-runtime/compare/2.3.2...2.3.3

Commits

Updates lightningcss from 1.28.2 to 1.29.3

Release notes

Sourced from lightningcss's releases.

v1.29.3

v1.29.2

v1.29.0

Added

Fixed

Commits

Updates mdast-util-find-and-replace from 3.0.1 to 3.0.2

Release notes

Sourced from mdast-util-find-and-replace's releases.

3.0.2

Types

  • f67eee4 Refactor to use @imports
  • 8ac2d6b Add declaration maps

Full Changelog: https://github.com/syntax-tree/mdast-util-find-and-replace/compare/3.0.1...3.0.2

Commits

Updates mermaid from 11.4.1 to 11.6.0

Release notes

Sourced from mermaid's releases.

mermaid@11.6.0

Minor Changes

  • #6408 ad65313 Thanks @​ashishjain0512! - fix: restore curve type configuration functionality for flowcharts. This fixes the issue where curve type settings were not being applied when configured through any of the following methods:

    • Config
    • Init directive (%%{ init: { 'flowchart': { 'curve': '...' } } }%%)
    • LinkStyle command (linkStyle default interpolate ...)
  • #6381 95d73bc Thanks @​thomascizeron! - Add Radar Chart

Patch Changes

mermaid@11.5.0

Minor Changes

  • #6187 7809b5a Thanks @​ashishjain0512! - Flowchart new syntax for node metadata bugs

    • Incorrect label mapping for nodes when using &
    • Syntax error when } with trailing spaces before new line
  • #6136 ec0d9c3 Thanks @​knsv! - Adding support for animation of flowchart edges

  • #6373 05bdf0e Thanks @​ashishjain0512! - Upgrade Requirement and ER diagram to use the common renderer flow

    • Added support for directions
    • Added support for hand drawn look
  • #6371 4d25cab Thanks @​knsv! - The arrowhead color should match the color of the edge. Creates a unique clone of the arrow marker with the appropriate color.

Patch Changes

... (truncated)

Commits
  • 7b20839 Merge pull request #6412 from mermaid-js/changeset-release/master
  • bb9210c Version Packages
  • 16d9b63 Add missing changeset for requirement diagram fix
  • bf3370f Merge pull request #6409 from mermaid-js/release/11.6.0
  • 9f9091e Update mermaid version palceholder
  • d1b1a67 Merge pull request #6410 from aloisklink/test/fix-cypress-on-nodejs-v20.19.0
  • ac625bd test(e2e): fix Cypress config for Node.JS v20.19.0
  • 40b85c3 Merge pull request #6408 from mermaid-js/fix/6193-curve-interpolation
  • f8e329f Merge branch 'develop' into fix/6193-curve-interpolation
  • 9b9cec9 Merge pull request #6386 from bollwyvl/patch-5
  • Additional commits viewable in compare view

Updates pixi.js from 8.6.6 to 8.9.1

Release notes

Sourced from pixi.js's releases.

v8.9.1

💾 Download

Development Build:

Production Build:

Documentation:

Changed

https://github.com/pixijs/pixi.js/compare/v8.9.0...v8.9.1

🐛 Fixed

v8.9.0

💾 Download

Development Build:

Production Build:

Documentation:

Changed

https://github.com/pixijs/pixi.js/compare/v8.8.1...v8.9.0

🎁 Added

  • feat: DOMContainer by @​GoodBoyDigital in pixijs/pixijs#11340
    • Experimental support for integrating DOM elements within the PixiJS scene graph, allowing HTML elements to be positioned and transformed alongside other PixiJS objects.
import 'pixi.js/dom'
import { DOMContainer } from 'pixi.js';

// Create a DOM element
const element = document.createElement('div');
element.innerHTML = 'Hello World!';
</tr></table>

... (truncated)

Commits

Updates preact from 10.25.4 to 10.26.4

Release notes

Sourced from preact's releases.

10.26.4

Fixes

10.26.3

Fixes

Types

Maintenance

10.26.2

This is a hotfix release! If you are encountering bundling issues with regards to unallowed import syntax, this will fix it!

Fixes

Maintenance

10.26.1

Fixes

  • Fixes memory leak when wrapping Fragment is captured by an effect closure (#4680, thanks @​JoviDeCroock)

Optimization

Maintenance

... (truncated)

Commits

Updates preact-render-to-string from 6.5.12 to 6.5.13

Release notes

Sourced from preact-render-to-string's releases.

v6.5.13

Patch Changes

  • #408 8e8e8ac Thanks @​f0x52! - Ensure that the _parent is kept around across multiple suspensions and avoid circular references. In doing so our useId hook should always output unique ids during renderingToString.

  • #409 2afaf31 Thanks @​f0x52! - Ensure the renderToStream types of /stream and /stream-node accept a generic for the props of the passed in VNode

  • #405 0a698f6 Thanks @​f0x52! - renderToPipeableStream: expose errors through onError, no longer emit un-catchable error event on internal stream

Changelog

Sourced from preact-render-to-string's changelog.

6.5.13

Patch Changes

  • #408 8e8e8ac Thanks @​f0x52! - Ensure that the _parent is kept around across multiple suspensions and avoid circular references. In doing so our useId hook should always output unique ids during renderingToString.
  • #409 2afaf31 Thanks @​f0x52! - Ensure the renderToStream types of /stream and /stream-node accept a generic for the props of the passed in VNode
  • #405 0a698f6 Thanks @​f0x52! - renderToPipeableStream: expose errors through onError, no longer emit un-catchable error event on internal stream
Commits
  • b2050f4 Version Packages (#410)
  • 0a698f6 renderToPipeableStream: expose errors through onError, no longer emit un-catc...
  • c819f51 Ensure use id works (#411)
  • 8e8e8ac Use suspense boundary vnode as parent for subtree re-render (#408)
  • 2afaf31 Use generic type for vnode props in renderToReadableStream/renderToPipeableSt...
  • See full diff in compare view

Updates rehype-citation from 2.2.2 to 2.3.0

Release notes

Sourced from rehype-citation's releases.

v2.3.0

What's Changed

New Contributors

Full Changelog: https://github.com/timlrx/rehype-citation/compare/v2.2.2...v2.3.0

Commits
  • 48f3d6a 2.3.0
  • eceb1c9 Merge pull request #57 from timlrx/feat/tooltip
  • ce9ade2 update playwright version
  • 3d54265 add example and update docs
  • be9f636 fix: update logic to restore citeproc state
  • c7c0e20 feat: add showTooltips and tooltipAttribute options
  • 3358430 Merge pull request #55 from johanneskopton/main
  • fdae4ee Allow bibliography as blob/ObjectURL to avoid refetching everytime.
  • See full diff in compare view

Updates rehype-mathjax from 6.0.0 to 7.1.0

Release notes

Sourced from rehype-mathjax's releases.

rehype-mathjax@7.1.0

  • 7250ec6 Add catching of mathjax exceptions

rehype-mathjax@7.0.0

  • b353e49 Remove dependency on jsdom migrate: this should be a patch, but there could be small differences: do let us know if you see problems
Commits
Package Dependencies
Ecosystem:
npm
Version Change:
22.10.2 → 22.13.14
Update Type:
Minor
Package:
ws
Ecosystem:
npm
Version Change:
8.18.0 → 8.18.1
Update Type:
Patch
Package:
prettier
Ecosystem:
npm
Version Change:
3.4.2 → 3.5.3
Update Type:
Minor
Ecosystem:
npm
Version Change:
0.9.0 → 0.10.0
Update Type:
Minor
Package:
typescript
Ecosystem:
npm
Version Change:
5.7.2 → 5.8.2
Update Type:
Minor
Package:
esbuild
Ecosystem:
npm
Version Change:
0.24.2 → 0.25.2
Update Type:
Minor
Package:
tsx
Ecosystem:
npm
Version Change:
4.19.2 → 4.19.3
Update Type:
Patch
Package:
satori
Ecosystem:
npm
Version Change:
0.12.0 → 0.12.2
Update Type:
Patch
Package:
pixi.js
Ecosystem:
npm
Version Change:
8.6.6 → 8.9.1
Update Type:
Minor
Package:
shiki
Ecosystem:
npm
Version Change:
1.24.4 → 3.2.1
Update Type:
Major
Package:
mermaid
Ecosystem:
npm
Version Change:
11.4.1 → 11.6.0
Update Type:
Minor
Package:
flexsearch
Ecosystem:
npm
Version Change:
0.7.43 → 0.8.147
Update Type:
Minor
Ecosystem:
npm
Version Change:
1.6.12 → 1.6.13
Update Type:
Patch
Package:
preact
Ecosystem:
npm
Version Change:
10.25.4 → 10.26.4
Update Type:
Minor
Ecosystem:
npm
Version Change:
0.14.0 → 0.14.1
Update Type:
Patch
Ecosystem:
npm
Version Change:
1.28.2 → 1.29.3
Update Type:
Minor
Ecosystem:
npm
Version Change:
2.2.2 → 2.3.0
Update Type:
Minor
Package:
remark-gfm
Ecosystem:
npm
Version Change:
4.0.0 → 4.0.1
Update Type:
Patch
Package:
globby
Ecosystem:
npm
Version Change:
14.0.2 → 14.1.0
Update Type:
Minor
Package:
@types/ws
Ecosystem:
npm
Version Change:
8.5.13 → 8.18.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
9.0.4 → 9.0.5
Update Type:
Patch
Ecosystem:
npm
Version Change:
2.3.2 → 2.3.6
Update Type:
Patch
Ecosystem:
npm
Version Change:
6.0.0 → 7.1.0
Update Type:
Major
Ecosystem:
npm
Version Change:
3.0.1 → 3.0.2
Update Type:
Patch
Ecosystem:
npm
Version Change:
6.5.12 → 6.5.13
Update Type:
Patch
Technical Details
ID: 4841360
UUID: 2428056888
Node ID: PR_kwDONkMZ9c6QuTU4
Host: GitHub
Repository: gjaykrishnan/gjaykrishnan.github.io
Merge State: Unknown