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

Bump the production-dependencies group with 59 updates

Merged
Number: #1
Type: Pull Request
State: Merged
Author: dependabot[bot] dependabot[bot]
Association: None
Comments: 0
Created: August 27, 2025 at 07:54 AM UTC
(17 days ago)
Updated: August 27, 2025 at 09:47 AM UTC
(16 days ago)
Merged: August 27, 2025 at 09:47 AM UTC
(16 days ago)
by dat-rohit
Time to Close: about 2 hours
Labels:
dependencies javascript
Description:

Bumps the production-dependencies group with 59 updates:

Package From To
@clack/prompts 0.6.3 0.11.0
@floating-ui/dom 1.4.3 1.7.4
@napi-rs/simple-git 0.1.9 0.1.22
async-mutex 0.4.0 0.5.0
chalk 4.1.2 5.6.0
chokidar 3.5.3 4.0.3
d3 7.8.5 7.9.0
@types/d3 7.4.0 7.4.3
esbuild-sass-plugin 2.12.0 3.3.1
flexsearch 0.7.21 0.8.205
globby 13.2.1 14.1.0
hast-util-to-html 8.0.4 9.0.5
hast-util-to-jsx-runtime 1.2.0 2.3.6
hast-util-to-string 2.0.0 3.0.1
lightningcss 1.21.7 1.30.1
mdast-util-find-and-replace 2.2.2 3.0.2
mdast-util-to-hast 12.3.0 13.2.0
mdast-util-to-string 3.2.0 4.0.0
plausible-tracker 0.3.8 0.3.9
preact 10.15.1 10.27.1
preact-render-to-string 6.1.0 6.6.1
pretty-bytes 6.1.0 7.0.1
rehype-autolink-headings 6.1.1 7.1.0
rehype-katex 6.0.3 7.0.1
rehype-mathjax 4.0.3 7.1.0
rehype-pretty-code 0.10.0 0.14.1
rehype-raw 6.1.1 7.0.0
rehype-slug 5.1.0 6.0.0
remark 14.0.3 15.0.1
remark-breaks 3.0.3 4.0.0
remark-frontmatter 4.0.1 5.0.0
remark-gfm 3.0.1 4.0.1
remark-math 5.1.1 6.0.0
remark-parse 10.0.2 11.0.0
remark-rehype 10.1.0 11.1.2
remark-smartypants 2.0.0 3.0.2
rimraf 5.0.1 6.0.1
serve-handler 6.1.5 6.1.6
to-vfile 7.2.4 8.0.0
unified 10.1.2 11.0.5
unist-util-visit 4.1.2 5.0.0
vfile 5.3.7 6.0.3
workerpool 6.4.0 9.3.3
@types/workerpool 6.4.0 9.0.0
ws 8.18.0 8.18.3
@types/ws 8.5.5 8.18.1
yargs 17.7.2 18.0.0
@types/cli-spinner 0.2.1 0.2.3
@types/flexsearch 0.7.3 0.7.42
@types/hast 2.3.5 3.0.4
@types/js-yaml 4.0.5 4.0.9
@types/node 20.3.3 24.3.0
@types/pretty-time 1.1.2 1.1.5
@types/source-map-support 0.5.6 0.5.10
@types/yargs 17.0.24 17.0.33
esbuild 0.19.2 0.25.9
prettier 3.0.0 3.6.2
tsx 3.12.7 4.20.5
typescript 5.1.6 5.9.2

Updates @clack/prompts from 0.6.3 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

@​clack/prompts@​0.10.1

Patch Changes

  • 11a5dc1: Fixes multiselect only shows hints on the first item in the options list. Now correctly shows hints for all selected options with hint property.
  • 30aa7ed: Adds a new selectableGroups boolean to the group multi-select prompt. Using selectableGroups: false will disable the ability to select a top-level group, but still allow every child to be selected individually.
  • Updated dependencies [30aa7ed]
  • Updated dependencies [5dfce8a]
  • Updated dependencies [f574297]
    • @​clack/core@​0.4.2

@​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

... (truncated)

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

0.10.1

Patch Changes

  • 11a5dc1: Fixes multiselect only shows hints on the first item in the options list. Now correctly shows hints for all selected options with hint property.
  • 30aa7ed: Adds a new selectableGroups boolean to the group multi-select prompt. Using selectableGroups: false will disable the ability to select a top-level group, but still allow every child to be selected individually.
  • Updated dependencies [30aa7ed]
  • Updated dependencies [5dfce8a]
  • Updated dependencies [f574297]
    • @​clack/core@​0.4.2

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

... (truncated)

Commits

Updates @floating-ui/dom from 1.4.3 to 1.7.4

Release notes

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

@​floating-ui/dom@​1.7.4

Patch Changes

  • fix(getViewportRect): account for space left by scrollbar-gutter: stable

@​floating-ui/dom@​1.7.3

Patch Changes

  • Update dependencies: @floating-ui/core@1.7.3

@​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

@​floating-ui/dom@​1.7.0

Minor Changes

  • feat(flip): add "alignment" string value for crossAxis option. This value determines if cross axis overflow checking is restricted to the alignment of the placement only. This prevents fallbackPlacements/fallbackAxisSideDirection from too eagerly changing to the perpendicular side (thereby preferring shift() if overflow is detected along the cross axis, even if shift() is placed after flip() in the middleware array).

Patch Changes

  • fix: correct position when document scrollbar is on left side with fixed strategy
  • Update dependencies: @floating-ui/core@1.7.0

@​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

@​floating-ui/dom@​1.6.12

Patch Changes

  • fix: handle relative html offset clipping rect
  • fix(getClippingRect): allow passing DOMRect as a boundary

@​floating-ui/dom@​1.6.11

Patch Changes

  • fix: handle html relative offset
  • Update dependencies: @floating-ui/utils@0.2.8

@​floating-ui/dom@​1.6.10

... (truncated)

Changelog

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

1.7.4

Patch Changes

  • fix(getViewportRect): account for space left by scrollbar-gutter: stable

1.7.3

Patch Changes

  • Update dependencies: @floating-ui/core@1.7.3

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

1.7.0

Minor Changes

  • feat(flip): add "alignment" string value for crossAxis option. This value determines if cross axis overflow checking is restricted to the alignment of the placement only. This prevents fallbackPlacements/fallbackAxisSideDirection from too eagerly changing to the perpendicular side (thereby preferring shift() if overflow is detected along the cross axis, even if shift() is placed after flip() in the middleware array).

Patch Changes

  • fix: correct position when document scrollbar is on left side with fixed strategy
  • Update dependencies: @floating-ui/core@1.7.0

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

1.6.12

Patch Changes

  • fix: handle relative html offset clipping rect
  • fix(getClippingRect): allow passing DOMRect as a boundary

... (truncated)

Commits
  • 7c33a3d chore: version packages (#3388)
  • 8b34295 fix(getViewportRect): account for scrollbar-gutter: stable space (#3387)
  • 38f8b5a chore: version packages (#3377)
  • 693c9cc fix(flip): ensure perpendicular axis flips with crossAxis alignment (#3376)
  • 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...
  • fdcb0a9 chore: version packages (#3310)
  • 1150bcf chore: make dom depend on core for minors
  • Additional commits viewable in compare view

Updates @napi-rs/simple-git from 0.1.9 to 0.1.22

Release notes

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

v0.1.22

What's Changed

New Contributors

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

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

... (truncated)

Commits
  • 7d01607 0.1.22
  • 5792944 chore: fix preversion script
  • 6cbeb6e chore: clippy fix and npm trusted publisher (#99)
  • a1dfc9b chore(deps): update actions/download-artifact action to v5 (#97)
  • 919cd79 ci: replace unmaintained goto-bus-stop/setup-zig with mlugg/setup-zig action ...
  • 3b580ef 0.1.21
  • a36a282 fix: link libz.a on Linux x64 gnu (#95)
  • bb9e05e chore(deps): update cross-platform-actions/action action to v0.29.0 (#94)
  • dea17f8 0.1.20
  • b66275d feat: upgrade to NAPI-RS 3.0 (#93)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​napi-rs/simple-git since your current version.


Updates async-mutex from 0.4.0 to 0.5.0

Changelog

Sourced from async-mutex's changelog.

0.5.0 - 2024/03/11

  • Support priority queueing for mutexes and semaphores. A huge "thank you" goes to @​dmurvihill who added this feature.
  • Update dependencies.

0.4.1 - 2024/01/17

  • Expand documentation and fix a few errors.
  • Clear timeout after acquiring a lock in withTimeout.
  • Thanks to AkatQuas and aryzing for their contributions.
  • Update dependencies.
Commits
  • ca071fc Changelog, bump version.
  • 3b8ae6f Bump dependencies.
  • 43e8858 Merge pull request #75 from dmurvihill/priority
  • 285229f Remove redundant instructions
  • 4350d80 Reverse findIndex for queuing tasks in waitForUnlock()
  • 981554f Fix test name
  • 2d13278 Reverse findIndex for queuing tasks in acquire()
  • c546c3f Merge branch 'master' into priority
  • 6a55acb Add failing test for crowd-out condition
  • 6af938b Merge pull request #76 from dmurvihill/fix-unhandled-rejection-in-tests
  • Additional commits viewable in compare view

Updates chalk from 4.1.2 to 5.6.0

Release notes

Sourced from chalk's releases.

v5.6.0

  • Make WezTerm terminal use true color a8f5bf7

https://github.com/chalk/chalk/compare/v5.5.0...v5.6.0

v5.5.0

  • Make Ghostty terminal use true color (#653) 79ee2d3

https://github.com/chalk/chalk/compare/v5.4.1...v5.5.0

v5.4.1

  • Fix navigator not defined ReferenceError (#642) 4ebb62d

https://github.com/chalk/chalk/compare/v5.4.0...v5.4.1

v5.4.0

  • Update CIRCLECI environments to return level 3 color support f838120

https://github.com/chalk/chalk/compare/v5.3.0...v5.4.0

v5.3.0

  • Add sideEffects field to package.json 5aafc0a
  • Add support for Gitea Actions (#603) 29b8569

https://github.com/chalk/chalk/compare/v5.2.0...v5.3.0

v5.2.0

  • Improve Deno compatibility (#579) 7443e9f
  • Detect true-color support for GitHub Actions (#579) 7443e9f
  • Detect true-color support for Kitty terminal (#579) 7443e9f
  • Fix test for Azure DevOps environment (#579) 7443e9f

https://github.com/chalk/chalk/compare/v5.1.2...v5.2.0

v5.1.2

  • Fix exported styles names (#569) a34bcf6

https://github.com/chalk/chalk/compare/v5.1.1...v5.1.2

v5.1.1

  • Improved the names of exports introduced in 5.1.0 (#567) 6e0df05
    • We of course preserved the old names.

https://github.com/chalk/chalk/compare/v5.1.0...v5.1.1

v5.1.0

... (truncated)

Commits

Updates chokidar from 3.5.3 to 4.0.3

Release notes

Sourced from chokidar's releases.

4.0.3

What's Changed

Full Changelog: https://github.com/paulmillr/chokidar/compare/4.0.2...4.0.3

4.0.2

What's Changed

New Contributors

Full Changelog: https://github.com/paulmillr/chokidar/compare/4.0.1...4.0.2

4.0.1

  • Various fixes and improvements of typescript types

New Contributors

Full Changelog: https://github.com/paulmillr/chokidar/compare/4.0.0...4.0.1

4.0.0

  • Remove glob support
  • Remove bundled fsevents
  • Decrease dependency count from 13 to 1
  • Rewrite in typescript. Makes emitted types more precise
  • The package became hybrid common.js / ESM
  • Bump minimum node.js requirement to v14+

Special thanks to @​43081j for improvements and help.

Full Changelog: https://github.com/paulmillr/chokidar/compare/3.6.0...4.0.0

3.6.0

What's Changed

New Contributors

... (truncated)

Commits

Updates d3 from 7.8.5 to 7.9.0

Release notes

Sourced from d3's releases.

v7.9.0

Commits

Updates @types/d3 from 7.4.0 to 7.4.3

Commits

Updates esbuild-sass-plugin from 2.12.0 to 3.3.1

Release notes

Sourced from esbuild-sass-plugin's releases.

v3.3.1

What's Changed

New Contributors

Full Changelog: https://github.com/glromeo/esbuild-sass-plugin/compare/v3.3.0...v3.3.1

v3.3.0

What's Changed

New Contributors

Full Changelog: https://github.com/glromeo/esbuild-sass-plugin/compare/v3.2.0...v3.3.0

local-css

Added support for type: 'local-css' #173 thanks to @​kohlmannj

There's always a catch

image

  • type now can be a function that takes care of rendering the style module #171
  • sass-embedded is now optional (installed as peer dependency) #168

Pedal to the metal!!!

Bye bye dart-sass...welcome sass-embedded, the speed increase is palpable!

A big thank you to the sass maintainers for this work ...and to Nathan for pushing for this change

Sources!

src folder maybe needed in published package #155

v2.16.0

bitmoji

I just updated esbuild and sass to the latest and greatest...

F as in faster!

bitmoji

Thank you @​mattlewis92 for the speed boost caching fs stats!

Good call

bitmoji

... (truncated)

Commits
  • f0e58c9 Update package.json
  • 0151ef4 Merge pull request #179 from dungjk/feature/named_exports
  • 6dba8bd style: update coding style to align with source code conventions
  • 6abbf37 feat: Add support namedExports
  • e6519ee Update package.json
  • 947f1ef Merge pull request #177 from Valgrifer/patch-1
  • 3856b4e accept esbuild 0.21
  • de2948c Create tea.yaml
  • 12bf67f Update package.json
  • 02fc7fb Merge pull request #173 from kohlmannj/local-css
  • Additional commits viewable in compare view

Updates flexsearch from 0.7.21 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, ...)

v0.7.31

... (truncated)

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 globby from 13.2.1 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

v14.0.2

  • Fix types f600250

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

v14.0.1

  • Fix expandDirectories.extension option (#263) af5d139
  • Fix read permission error on ignore files search (#259) 3a28601

https://github.com/sindresorhus/globby/compare/v14.0.0...v14.0.1

v14.0.0

Breaking

  • Require Node.js 18 2c06ae5

Improvements

https://github.com/sindresorhus/globby/compare/v13.2.2...v14.0.0

v13.2.2

Package Dependencies
Ecosystem:
npm
Version Change:
20.3.3 → 24.3.0
Update Type:
Major
Package:
ws
Ecosystem:
npm
Version Change:
8.18.0 → 8.18.3
Update Type:
Patch
Package:
prettier
Ecosystem:
npm
Version Change:
3.0.0 → 3.6.2
Update Type:
Minor
Ecosystem:
npm
Version Change:
0.6.3 → 0.11.0
Update Type:
Minor
Package:
typescript
Ecosystem:
npm
Version Change:
5.1.6 → 5.9.2
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.19.2 → 0.25.9
Update Type:
Minor
Package:
rimraf
Ecosystem:
npm
Version Change:
5.0.1 → 6.0.1
Update Type:
Major
Package:
tsx
Ecosystem:
npm
Version Change:
3.12.7 → 4.20.5
Update Type:
Major
Package:
chalk
Ecosystem:
npm
Version Change:
4.1.2 → 5.6.0
Update Type:
Major
Package:
flexsearch
Ecosystem:
npm
Version Change:
0.7.21 → 0.8.205
Update Type:
Minor
Ecosystem:
npm
Version Change:
1.4.3 → 1.7.4
Update Type:
Minor
Package:
preact
Ecosystem:
npm
Version Change:
10.15.1 → 10.27.1
Update Type:
Minor
Package:
workerpool
Ecosystem:
npm
Version Change:
6.4.0 → 9.3.3
Update Type:
Major
Ecosystem:
npm
Version Change:
0.10.0 → 0.14.1
Update Type:
Minor
Package:
chokidar
Ecosystem:
npm
Version Change:
3.5.3 → 4.0.3
Update Type:
Major
Ecosystem:
npm
Version Change:
1.21.7 → 1.30.1
Update Type:
Minor
Ecosystem:
npm
Version Change:
6.1.0 → 7.0.1
Update Type:
Major
Ecosystem:
npm
Version Change:
6.1.5 → 6.1.6
Update Type:
Patch
Package:
remark-gfm
Ecosystem:
npm
Version Change:
3.0.1 → 4.0.1
Update Type:
Major
Package:
globby
Ecosystem:
npm
Version Change:
13.2.1 → 14.1.0
Update Type:
Major
Ecosystem:
npm
Version Change:
6.1.1 → 7.1.0
Update Type:
Major
Ecosystem:
npm
Version Change:
10.1.0 → 11.1.2
Update Type:
Major
Ecosystem:
npm
Version Change:
4.1.2 → 5.0.0
Update Type:
Major
Package:
@types/ws
Ecosystem:
npm
Version Change:
8.5.5 → 8.18.1
Update Type:
Minor
Ecosystem:
npm
Version Change:
8.0.4 → 9.0.5
Update Type:
Major
Ecosystem:
npm
Version Change:
1.2.0 → 2.3.6
Update Type:
Major
Ecosystem:
npm
Version Change:
4.0.3 → 7.1.0
Update Type:
Major
Ecosystem:
npm
Version Change:
4.0.5 → 4.0.9
Update Type:
Patch
Package:
d3
Ecosystem:
npm
Version Change:
7.8.5 → 7.9.0
Update Type:
Minor
Ecosystem:
npm
Version Change:
3.0.3 → 4.0.0
Update Type:
Major
Ecosystem:
npm
Version Change:
2.2.2 → 3.0.2
Update Type:
Major
Ecosystem:
npm
Version Change:
6.1.0 → 6.6.1
Update Type:
Minor
Package:
rehype-slug
Ecosystem:
npm
Version Change:
5.1.0 → 6.0.0
Update Type:
Major
Package:
unified
Ecosystem:
npm
Version Change:
10.1.2 → 11.0.5
Update Type:
Major
Package:
remark-math
Ecosystem:
npm
Version Change:
5.1.1 → 6.0.0
Update Type:
Major
Ecosystem:
npm
Version Change:
2.12.0 → 3.3.1
Update Type:
Major
Ecosystem:
npm
Version Change:
0.1.9 → 0.1.22
Update Type:
Patch
Ecosystem:
npm
Version Change:
2.0.0 → 3.0.1
Update Type:
Major
Ecosystem:
npm
Version Change:
6.0.3 → 7.0.1
Update Type:
Major
Ecosystem:
npm
Version Change:
12.3.0 → 13.2.0
Update Type:
Major
Ecosystem:
npm
Version Change:
17.0.24 → 17.0.33
Update Type:
Patch
Package:
rehype-raw
Ecosystem:
npm
Version Change:
6.1.1 → 7.0.0
Update Type:
Major
Ecosystem:
npm
Version Change:
2.0.0 → 3.0.2
Update Type:
Major
Package:
vfile
Ecosystem:
npm
Version Change:
5.3.7 → 6.0.3
Update Type:
Major
Package:
remark
Ecosystem:
npm
Version Change:
14.0.3 → 15.0.1
Update Type:
Major
Package:
async-mutex
Ecosystem:
npm
Version Change:
0.4.0 → 0.5.0
Update Type:
Minor
Package:
@types/d3
Ecosystem:
npm
Version Change:
7.4.0 → 7.4.3
Update Type:
Patch
Ecosystem:
npm
Version Change:
3.2.0 → 4.0.0
Update Type:
Major
Ecosystem:
npm
Version Change:
0.3.8 → 0.3.9
Update Type:
Patch
Ecosystem:
npm
Version Change:
4.0.1 → 5.0.0
Update Type:
Major
Ecosystem:
npm
Version Change:
10.0.2 → 11.0.0
Update Type:
Major
Package:
to-vfile
Ecosystem:
npm
Version Change:
7.2.4 → 8.0.0
Update Type:
Major
Ecosystem:
npm
Version Change:
0.2.1 → 0.2.3
Update Type:
Patch
Ecosystem:
npm
Version Change:
0.7.3 → 0.7.42
Update Type:
Patch
Package:
@types/hast
Ecosystem:
npm
Version Change:
2.3.5 → 3.0.4
Update Type:
Major
Ecosystem:
npm
Version Change:
1.1.2 → 1.1.5
Update Type:
Patch
Ecosystem:
npm
Version Change:
0.5.6 → 0.5.10
Update Type:
Patch
Ecosystem:
npm
Version Change:
6.4.0 → 9.0.0
Update Type:
Major
Technical Details
ID: 5868201
UUID: 2777517600
Node ID: PR_kwDOPkxIu86ljY4g
Host: GitHub
Repository: dat-rohit/dat-rohit.github.io
Merge State: Unknown