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

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

Open
Number: #9
Type: Pull Request
State: Open
Author: dependabot[bot] dependabot[bot]
Association: None
Comments: 0
Created: July 29, 2025 at 02:54 AM UTC
(3 months ago)
Updated: July 29, 2025 at 02:54 AM UTC
(3 months ago)
Labels:
dependencies javascript
Description:

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

Package From To
@clack/prompts 0.10.1 0.11.0
@floating-ui/dom 1.7.0 1.7.2
@napi-rs/simple-git 0.1.19 0.1.21
@webgpu/types 0.1.60 0.1.64
flexsearch 0.7.43 0.8.205
lightningcss 1.29.3 1.30.1
minimatch 10.0.1 10.0.3
pixi.js 8.9.2 8.11.0
preact 10.26.5 10.27.0
satori 0.12.2 0.16.1
sharp 0.34.1 0.34.3
shiki 1.26.2 3.8.1
workerpool 9.2.0 9.3.3
ws 8.18.2 8.18.3
yargs 17.7.2 18.0.0
@types/node 22.15.7 24.1.0
esbuild 0.25.3 0.25.8
prettier 3.5.3 3.6.2
tsx 4.19.4 4.20.3

Updates @clack/prompts from 0.10.1 to 0.11.0

Release notes

Sourced from @​clack/prompts's releases.

@​clack/prompts@​0.11.0

Minor Changes

  • 07ca32d: Reverted a change where placeholders were being set as values on return.

Patch Changes

  • Updated dependencies [07ca32d]
    • @​clack/core@​0.5.0
Changelog

Sourced from @​clack/prompts's changelog.

0.11.0

Minor Changes

  • 07ca32d: Reverted a change where placeholders were being set as values on return.

Patch Changes

  • Updated dependencies [07ca32d]
    • @​clack/core@​0.5.0
Commits

Updates @floating-ui/dom from 1.7.0 to 1.7.2

Release notes

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

@​floating-ui/dom@​1.7.2

Patch Changes

  • perf: reduce memory allocations
  • Update dependencies: @floating-ui/utils@0.2.10, @floating-ui/core@1.7.2

@​floating-ui/dom@​1.7.1

Patch Changes

  • Update dependencies: @floating-ui/core@1.7.1
Changelog

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

1.7.2

Patch Changes

  • perf: reduce memory allocations
  • Update dependencies: @floating-ui/utils@0.2.10, @floating-ui/core@1.7.2

1.7.1

Patch Changes

  • Update dependencies: @floating-ui/core@1.7.1
Commits
  • 9497a55 chore: version packages (#3354)
  • ac2af58 perf: reduce additional memory allocations
  • 999bb86 chore: version packages (#3336)
  • 37eb937 fix(flip): check all placements for main axis overflow with `crossAxis: 'alig...
  • See full diff in compare view

Updates @napi-rs/simple-git from 0.1.19 to 0.1.21

Release notes

Sourced from @​napi-rs/simple-git's releases.

v0.1.21

What's Changed

Full Changelog: https://github.com/Brooooooklyn/simple-git/compare/v0.1.20...v0.1.21

v0.1.20

What's Changed

Full Changelog: https://github.com/Brooooooklyn/simple-git/compare/v0.1.19...v0.1.20

Commits

Updates @webgpu/types from 0.1.60 to 0.1.64

Commits

Updates flexsearch from 0.7.43 to 0.8.205

Release notes

Sourced from flexsearch's releases.

v0.8.2

  • Config-Serialized Query Caches, Improved caching strategy for Document indexes and Resolver
  • Resolver Async Processing Workflow (including Queuing)
  • Extended Resolver Support: Worker, Persistent, Cache
  • Extended Result Highlighting: Boundaries, Ellipsis, Alignment
  • Improved TypeScript Typings
  • Improved Stemmer Handling
  • Improved Result Highlighting
  • Use multi-language charset normalization as the default Encoder
  • Simplified charset support for multi-language content
  • Charset renamed LatinExact => Exact, LatinDefault => Default and LatinSimple => Normalize, these are universal charset presets for any languages
  • Charset ArabicDefault and CyrillicDefault was removed, they are fully covered by the default universal charset presets
  • Charset Charset.CjkDefault was renamed to Charset.CJK

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

  • Calling index.clear() on a persistent Index does not stack to the task queue by default (which executes on commit), instead it will execute immediately and return a Promise
  • Added new tokenizer tolerant, inherits from strict but also matches simple typos like missing letters and swapped letters
  • Improved Redis Cleanup
  • Resolver: Support Result Highlighting

v0.8.2

  • Config-Serialized Query Caches, Improved caching strategy for Document indexes and Resolver
  • Resolver Async Processing Workflow (including Queuing)
  • Extended Resolver Support: Worker, Persistent, Cache
  • Extended Result Highlighting: Boundaries, Ellipsis, Alignment
  • Improved TypeScript Typings
  • Improved Stemmer Handling
  • Improved Result Highlighting
  • Use multi-language charset normalization as the default Encoder
  • Simplified charset support for multi-language content
  • Charset renamed LatinExact => Exact, LatinDefault => Default and LatinSimple => Normalize, these are universal charset presets for any languages
  • Charset ArabicDefault and CyrillicDefault was removed, they are fully covered by the default universal charset presets
  • Charset Charset.CjkDefault was renamed to Charset.CJK

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)

... (truncated)

Commits

Updates lightningcss from 1.29.3 to 1.30.1

Release notes

Sourced from lightningcss's releases.

v1.30.1

Fixed crash on process exit when lightningcss was loaded inside a Node.js worker thread on Linux

v1.30.0

Features

  • Update relative color parsing to latest spec: colors now support numbers in addition to percentages, and calcs in colors are now always numbers. Note that this was technically a breaking change in the spec. You may need to update code using relative color calculations on percentages to use numbers instead. See the PR for details. – #465
  • Update nesting implementation for new spec: It is now possible to nest selectors with pseudo elements, and declarations and nested rules can be interleaved. See https://web.dev/blog/css-nesting-cssnesteddeclarations for more details. – https://github.com/parcel-bundler/lightningcss/commit/6c465c123deb549dfb45fd3558f25dca0dbde0d6
  • Skip generating unnecessary @supports rules when already nested in a @supports rule – #878, d398c1b86439dfd243a6c2ba627a8e7981118a44
  • Improve error recovery for media queries – #954
  • Add support for ::picker, ::picker-icon and ::checkmark – #957
  • Add build support for Android – #932

Fixes

  • Fix error message for invalid composes selectors – parcel-bundler/lightningcss#948
  • Update browserslist – parcel-bundler/lightningcss#961
  • Fix linear-gradient direction conversion for legacy vendor-prefixed values – #936
  • Prevent new lines in license comments from breaking source maps – #971
  • Do not inline layers before imports – 33ea2c149e2c94f6e45a86d6d666d092729c9523
  • Statically link Visual Studio redistributables on Windows builds – e5c4139be325c03704072c948be38f8b1f990071
  • update browser compat data – 17bdc80ff5282c410daf65d135ef6cac79200e55
Commits
  • f2dc67c v1.30.1
  • d302a6b Add linker option to prevent segfault in Node worker threads
  • 474c67c v1.30.0
  • 17bdc80 update browser compat data
  • e5c4139 Statically link Visual Studio redistributables on Windows builds
  • 33ea2c1 Do not inline layers before imports
  • 4ebcb45 Update relative color parsing to latest spec (#465)
  • 0f064ab Prevent new lines written by write_str from breaking source maps (#971)
  • 16fdfd5 fix: remove grid feature (#972)
  • 496f4f6 Add build support for Android (#932)
  • Additional commits viewable in compare view

Updates minimatch from 10.0.1 to 10.0.3

Commits

Updates pixi.js from 8.9.2 to 8.11.0

Release notes

Sourced from pixi.js's releases.

v8.11.0

💾 Download

Installation:

npm install pixi.js@8.11.0

Development Build:

Production Build:

Documentation:

Changed

https://github.com/pixijs/pixi.js/compare/v8.10.2...v8.11.0

🚨 Behavior Change 🚨

In this release, we've corrected how textStyle.padding interacts with text positioning when anchor values are set. Previously, padding could incorrectly offset the position of text objects. With this fix, text objects now behave consistently but you may notice some text elements appear slightly repositioned as a result. This is expected and reflects the intended, more predictable layout.

🎁 Added

🐛 Fixed

🧹 Chores

New Contributors

v8.10.2

💾 Download

... (truncated)

Commits

Updates preact from 10.26.5 to 10.27.0

Release notes

Sourced from preact's releases.

10.27.0

Features

Fixes

  • Ensure we rerender after a suspensefully hydrating boundary throws an… (#4856, thanks @​JoviDeCroock)

Maintenance

10.26.9

Fixes

Maintenance

10.26.8

Fixes

10.26.7

Types

Improvements

Maintenance

10.26.6

... (truncated)

Commits
  • e42b82b Merge pull request #4859 from preactjs/10.26.10
  • 43598cf chore: Backport refcallback type and debug helpers (#4860)
  • 6fea157 Merge pull request #4856 from preactjs/ensure-we-rerender
  • 6e24eda Only mark force when it's a real error
  • dec937f Ensure we rerender after a suspensefully hydrating boundary throws an error
  • a9b12d9 chore: Update 'replaceNode' deprecation comment to point at new shim (#4844)
  • 504eb5c perf: reduce some repeated logic (#4814) (#4821)
  • ee12c20 Merge pull request #4800 from preactjs/release-10.26.9
  • 9b54e1b 10.26.9
  • d369bdb Merge pull request #4798 from preactjs/10.x-precompile-attr
  • Additional commits viewable in compare view

Updates satori from 0.12.2 to 0.16.1

Release notes

Sourced from satori's releases.

0.16.1

0.16.1 (2025-07-23)

Bug Fixes

0.16.0

This is a big update thanks to updates from our dependency Yoga.

  • Support for box-sizing
  • Support for display: contents
  • Support for position: static
  • Support for align-content: space-evenly
  • Better support for position: absolute
  • Support for percentage values for gap

Also removed the satori/wasm entrypoint as we're always inlining the WASM binary in the lib source now.

0.16.0 (2025-07-21)

Features

0.15.2

0.15.2 (2025-06-09)

Bug Fixes

0.15.1

0.15.1 (2025-06-09)

Bug Fixes

  • allow lines to start with words that begin with special characters (#674) (055e4e0), closes #656

0.15.0

0.15.0 (2025-06-09)

Features

... (truncated)

Commits
  • 691f01d fix: handle z-index as unitless property (#667)
  • 5945f7a feat: Switch to yoga-layout (#689)
  • b54f510 fix: Support async components (#686)
  • 055e4e0 fix: allow lines to start with words that begin with special characters (#674)
  • 6646c27 feat: Support text-decoration-style: double (#685)
  • 82de867 fix: text align justify not working (#677)
  • 59c3c08 fix: transform and rotate not working properly on text (#676)
  • 4926c0b feat: add point scale factor (#681)
  • 56bd3d5 fix: pixel alignment for multiline or centered text (#682)
  • aa7cdb6 fix(ci): publish to npm with provenance (#672)
  • Additional commits viewable in compare view

Updates sharp from 0.34.1 to 0.34.3

Commits
  • 276ac2d Release v0.34.3
  • 2dedcf3 Prerelease v0.34.3-rc.1
  • 92f2145 Upgrade to sharp-libvips v1.2.0
  • 2cd2f84 Upgrade to libvips v8.17.1
  • 8ee8d27 Provide XMP as a string, as well as a Buffer, where possible
  • 4e3f379 Add keepXmp and withXmp for control over output XMP metadata #4416
  • df5454e Add support for RAW digicam input, requires custom libvips+libraw
  • 32cf6be Docs: update benchmark results ahead of v0.34.3
  • 96dfd40 Tests: update benchmark environment
  • 1422798 Upgrade to sharp-libvips v1.2.0-rc.3
  • Additional commits viewable in compare view

Updates shiki from 1.26.2 to 3.8.1

Release notes

Sourced from shiki's releases.

v3.8.1

   🐞 Bug Fixes

    View changes on GitHub

v3.8.0

   🚀 Features

    View changes on GitHub

v3.7.0

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v3.6.0

   🚀 Features

    View changes on GitHub

v3.5.0

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v3.4.2

   🚀 Features

... (truncated)

Commits

Updates workerpool from 9.2.0 to 9.3.3

Changelog

Sourced from workerpool's changelog.

2025-06-27, version 9.3.3

2025-05-29, version 9.3.2

  • Fix: #505 npm package missing /src/generated/ files.

2025-05-29, version 9.3.1

  • Fix: #505 npm package missing /src/generated/ files.

2025-05-28, version 9.3.0

  • Feat: support for events and std streams to parents from an abort handler (#478). Thanks @​joshLong145.
  • feat: improve compatibility with standard Promise type (#504). Thanks @​joshkel.
Commits

Updates ws from 8.18.2 to 8.18.3

Release notes

Sourced from ws's releases.

8.18.3

Bug fixes

  • Fixed a spec violation where the Sec-WebSocket-Version header was not added to the HTTP response if the client requested version was either invalid or unacceptable (33f5dbaf).
Commits

Updates yargs from 17.7.2 to 18.0.0

Changelog

Sourced from yargs's changelog.

18.0.0 (2025-05-26)

⚠ BREAKING CHANGES

  • command names are not derived from modules passed to command.
  • singleton usage of yargs yargs.foo, yargs().argv, has been removed.
  • minimum node.js versions now ^20.19.0 || ^22.12.0 || >=23.
  • yargs is now ESM first

Features

Package Dependencies
Ecosystem:
npm
Version Change:
22.15.7 → 24.1.0
Update Type:
Major
Package:
ws
Ecosystem:
npm
Version Change:
8.18.2 → 8.18.3
Update Type:
Patch
Package:
prettier
Ecosystem:
npm
Version Change:
3.5.3 → 3.6.2
Update Type:
Minor
Ecosystem:
npm
Version Change:
0.10.1 → 0.11.0
Update Type:
Minor
Package:
yargs
Ecosystem:
npm
Version Change:
17.7.2 → 18.0.0
Update Type:
Major
Package:
esbuild
Ecosystem:
npm
Version Change:
0.25.3 → 0.25.8
Update Type:
Patch
Package:
minimatch
Ecosystem:
npm
Version Change:
10.0.1 → 10.0.3
Update Type:
Patch
Package:
tsx
Ecosystem:
npm
Version Change:
4.19.4 → 4.20.3
Update Type:
Minor
Package:
satori
Ecosystem:
npm
Version Change:
0.12.2 → 0.16.1
Update Type:
Minor
Package:
pixi.js
Ecosystem:
npm
Version Change:
8.9.2 → 8.11.0
Update Type:
Minor
Package:
shiki
Ecosystem:
npm
Version Change:
1.26.2 → 3.8.1
Update Type:
Major
Package:
sharp
Ecosystem:
npm
Version Change:
0.34.1 → 0.34.3
Update Type:
Patch
Package:
flexsearch
Ecosystem:
npm
Version Change:
0.7.43 → 0.8.205
Update Type:
Minor
Ecosystem:
npm
Version Change:
1.7.0 → 1.7.2
Update Type:
Patch
Package:
preact
Ecosystem:
npm
Version Change:
10.26.5 → 10.27.0
Update Type:
Minor
Package:
workerpool
Ecosystem:
npm
Version Change:
9.2.0 → 9.3.3
Update Type:
Minor
Ecosystem:
npm
Version Change:
1.29.3 → 1.30.1
Update Type:
Minor
Ecosystem:
npm
Version Change:
0.1.60 → 0.1.64
Update Type:
Patch
Ecosystem:
npm
Version Change:
0.1.19 → 0.1.21
Update Type:
Patch
Technical Details
ID: 4275764
UUID: 2702482701
Node ID: PR_kwDOOo3TXs6hFJ0N
Host: GitHub
Repository: Pavan-Notes/pavan-notes.github.io
Merge State: Unknown