Skip to content

Bump the production-dependencies group across 1 directory with 32 updates - #17

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/production-dependencies-af72244007
Open

Bump the production-dependencies group across 1 directory with 32 updates#17
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/production-dependencies-af72244007

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 1, 2026

Copy link
Copy Markdown

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

Package From To
@clack/prompts 0.11.0 1.7.0
@floating-ui/dom 1.7.5 1.8.0
@myriaddreamin/rehype-typst 0.6.0 0.7.0
@napi-rs/simple-git 0.1.22 1.1.0
esbuild-sass-plugin 3.6.0 3.7.0
globby 16.1.1 16.2.4
isomorphic-git 1.37.2 1.41.9
js-yaml 4.1.1 5.4.0
lightningcss 1.31.1 1.33.0
minimatch 10.2.2 10.2.6
pixi.js 8.18.1 8.20.0
preact 10.28.4 10.29.8
preact-render-to-string 6.6.6 6.7.0
pretty-bytes 7.1.0 7.1.1
rehype-pretty-code 0.14.1 0.14.5
remark-smartypants 3.0.2 3.0.3
satori 0.19.2 0.33.4
serve-handler 6.1.6 6.1.7
sharp 0.34.5 0.35.3
toml 3.0.0 5.0.0
workerpool 10.0.1 10.0.3
ws 8.19.0 8.21.3
yaml 2.8.2 2.9.0
yargs 18.0.0 18.1.0
@quartz-community/types 0d62f52 0f5711d
@quartz-community/utils eaa6160 9da5e8d
@types/hast 3.0.4 3.0.5
@types/node 25.3.0 26.3.0
esbuild 0.27.3 0.28.2
prettier 3.8.1 3.9.6
tsx 4.21.0 4.23.12
typescript 5.9.3 7.0.2

Updates @clack/prompts from 0.11.0 to 1.7.0

Release notes

Sourced from @​clack/prompts's releases.

@​clack/prompts@​1.7.0

Minor Changes

  • #574 8f1c380 Thanks @​dreyfus92! - Add showInstructions option to select, multiselect, and groupMultiselect. Keyboard hints remain shown by default; pass showInstructions: false to hide them.

Patch Changes

@​clack/prompts@​1.6.0

Minor Changes

  • #568 f87933f Thanks @​florian-lefebvre! - Updates default formatter of note() to note dim lines anymore

    If you want the old behavior, provide a format() function:

    import { note } from '@clack/prompts';
    +import { styleText } from 'node:util';
    note(
    'You can edit the file src/index.jsx',
    'Next steps.'
    
    { format: (text) => styleText('dim', text) }
    );
  • #567 cc6aab5 Thanks @​dreyfus92! - Add keyboard instruction footers to select, multiselect, and groupMultiselect in the active state, matching autocomplete. No option — always shown.

  • Patch Changes

    @​clack/prompts@​1.5.1

    Patch Changes

    @​clack/prompts@​1.5.0

    Minor Changes

    ... (truncated)

    Changelog

    Sourced from @​clack/prompts's changelog.

    1.7.0

    Minor Changes

    • #574 8f1c380 Thanks @​dreyfus92! - Add showInstructions option to select, multiselect, and groupMultiselect. Keyboard hints remain shown by default; pass showInstructions: false to hide them.

    Patch Changes

    1.6.0

    Minor Changes

    • #568 f87933f Thanks @​florian-lefebvre! - Updates default formatter of note() to note dim lines anymore

      If you want the old behavior, provide a format() function:

      import { note } from '@clack/prompts';
      +import { styleText } from 'node:util';
      note(
      'You can edit the file src/index.jsx',
      'Next steps.'
      
      { format: (text) => styleText('dim', text) }
      );
  • #567 cc6aab5 Thanks @​dreyfus92! - Add keyboard instruction footers to select, multiselect, and groupMultiselect in the active state, matching autocomplete. No option — always shown.

  • Patch Changes

    1.5.1

    Patch Changes

    ... (truncated)

    Commits
    Maintainer changes

    This version was pushed to npm by GitHub Actions, a new releaser for @​clack/prompts since your current version.


    Updates @floating-ui/dom from 1.7.5 to 1.8.0

    Release notes

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

    @​floating-ui/dom@​1.8.0

    Minor Changes

    • feat: add 'layoutViewport' string option to rootBoundary. Unlike the visual 'viewport' boundary, it remains stable while pinch-zooming or when a mobile software keyboard is open, and unlike a manually passed Rect of the documentElement's client size, it accounts for space reserved by scrollbar-gutter: stable.

    Patch Changes

    • fix: remove redundant passive options from scroll listeners
    • fix: support explicit undefined for optional properties with exactOptionalPropertyTypes
    • fix(autoUpdate): update immediately instead of waiting for the 1s layoutShift refresh throttle when the reference moved during an observer refresh
    • fix(getClippingRect): correct clipping-ancestor filtering for fixed-position elements
    • perf(dom): reduce bundle size and skip redundant per-call work in positioning utilities
    • fix(getViewportRect): account for scrollbar-gutter: stable both-edges reserved space
    • fix(getViewportRect): don't overflow past a left-side document scrollbar
    • fix(platform): don't throw in getClientRects when a virtual element without a getClientRects method is used with the inline() middleware
    • fix(autoUpdate): refresh layout shift observer on root resize
    • Update dependencies: @floating-ui/core@1.8.0, @floating-ui/utils@0.2.12

    @​floating-ui/dom@​1.7.6

    Patch Changes

    • fix(types): ensure Platform type contains detectOverflow type
    • perf: bundle and runtime improvements
    • feat(autoUpdate): allow not passing a floating element
    • Update dependencies: @floating-ui/utils@0.2.11, @floating-ui/core@1.7.5
    Changelog

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

    1.8.0

    Minor Changes

    • feat: add 'layoutViewport' string option to rootBoundary. Unlike the visual 'viewport' boundary, it remains stable while pinch-zooming or when a mobile software keyboard is open, and unlike a manually passed Rect of the documentElement's client size, it accounts for space reserved by scrollbar-gutter: stable.

    Patch Changes

    • fix: remove redundant passive options from scroll listeners
    • fix: support explicit undefined for optional properties with exactOptionalPropertyTypes
    • fix(autoUpdate): update immediately instead of waiting for the 1s layoutShift refresh throttle when the reference moved during an observer refresh
    • fix(getClippingRect): correct clipping-ancestor filtering for fixed-position elements
    • perf(dom): reduce bundle size and skip redundant per-call work in positioning utilities
    • fix(getViewportRect): account for scrollbar-gutter: stable both-edges reserved space
    • fix(getViewportRect): don't overflow past a left-side document scrollbar
    • fix(platform): don't throw in getClientRects when a virtual element without a getClientRects method is used with the inline() middleware
    • fix(autoUpdate): refresh layout shift observer on root resize
    • Update dependencies: @floating-ui/core@1.8.0, @floating-ui/utils@0.2.12

    1.7.6

    Patch Changes

    • fix(types): ensure Platform type contains detectOverflow type
    • perf: bundle and runtime improvements
    • feat(autoUpdate): allow not passing a floating element
    • Update dependencies: @floating-ui/utils@0.2.11, @floating-ui/core@1.7.5
    Commits
    • 12d9473 chore: version packages (#3480)
    • ad0a73f fix(getViewportRect): account for scrollbar-gutter: stable both-edges reser...
    • 9887c96 fix(types): restore bivariant parameters for optional callbacks
    • 28bc9c1 fix(autoUpdate): avoid duplicate update on window resize
    • 5976f20 test(dom): run unit tests in vitest browser mode
    • 705a03c fix(platform): support virtual elements without getClientRects in inline() (#...
    • 3785f3b feat: add layoutViewport string option to rootBoundary (#3486)
    • 0d0e88e fix(inline): no-op on empty client rects and detect RTL disjoined line rects ...
    • 73c1f76 fix(types): support exactOptionalPropertyTypes (#3456)
    • cd58dd2 fix(getClippingRect): correct clipping-ancestor filtering for fixed-position ...
    • Additional commits viewable in compare view

    Updates @myriaddreamin/rehype-typst from 0.6.0 to 0.7.0

    Release notes

    Sourced from @​myriaddreamin/rehype-typst's releases.

    v0.7.0

    Packages

    Compiler

    rustdoc-typst-demo (New)

    Package: typst.ts

    Package: typst.react

    Package: typst.vue3

    Package: typst.svelte (New)

    ... (truncated)

    Commits
    Maintainer changes

    This version was pushed to npm by GitHub Actions, a new releaser for @​myriaddreamin/rehype-typst since your current version.


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

    Release notes

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

    v1.1.0

    What's Changed

    Full Changelog: Brooooooklyn/simple-git@v1.0.0...v1.1.0

    v1.0.0

    What's Changed

    ... (truncated)

    Commits
    • 3b8e55c 1.1.0
    • e580290 fix(deps): update void to v0.10.6 (#153)
    • 659d5ca feat: add created (first-add commit) to FileModification (#152)
    • 3ca64c5 chore(deps): update dorny/paths-filter action to v4 (#150)
    • 9b5a48b fix(deps): update dependency void to v0.10.5 (#151)
    • 723f6b3 chore: move renovate.json
    • 4ca5860 chore: fix yarn and renovate config
    • 638b632 fix(deps): update dependency @​void/react to v0.10.5 (#148)
    • 8300a3f fix(deps): update dependency @​void/md to v0.10.5 (#147)
    • 6881589 feat: simple-git.napi.rs website (landing + docs + Cloudflare deploy) (#146)
    • Additional commits viewable in compare view

    Updates esbuild-sass-plugin from 3.6.0 to 3.7.0

    Release notes

    Sourced from esbuild-sass-plugin's releases.

    v3.7.0 Hasta la vista

    Commits

    Updates globby from 16.1.1 to 16.2.4

    Release notes

    Sourced from globby's releases.

    v16.2.4

    • Fix ignore option disabling the gitignore option 19e1fce

    sindresorhus/globby@v16.2.3...v16.2.4

    v16.2.3

    • Fix backslash-escaped .gitignore rules 5775ffb

    sindresorhus/globby@v16.2.2...v16.2.3

    v16.2.2

    • Fix: Do not enumerate ignored directories with gitignore option 8bf8f54

    sindresorhus/globby@v16.2.1...v16.2.2

    v16.2.1

    • Fix gitignore ignoring an entire checkout under an anchored ancestor path (#277) e7bd988

    sindresorhus/globby@v16.2.0...v16.2.1

    v16.2.0


    sindresorhus/globby@v16.1.1...v16.2.0

    Commits

    Updates isomorphic-git from 1.37.2 to 1.41.9

    Release notes

    Sourced from isomorphic-git's releases.

    v1.41.9

    1.41.9 (2026-08-23)

    Bug Fixes

    • match filepaths on path component boundaries (#2416) (89d641a)

    v1.41.8

    1.41.8 (2026-08-21)

    Bug Fixes

    • throw when TREE is given a ref that cannot be resolved (#2407) (fe987eb)

    v1.41.7

    1.41.7 (2026-08-19)

    Bug Fixes

    • return best merge bases for DAG histories (#2412) (a7f747f)

    v1.41.5

    1.41.5 (2026-08-17)

    Bug Fixes

    • include file mode changes in filepath log (#2413) (07c6fe7)

    v1.41.4

    1.41.4 (2026-08-13)

    Bug Fixes

    • restore checkout filepaths from the index (#2409) (25dc739)

    v1.41.3

    1.41.3 (2026-08-10)

    Bug Fixes

    • don't split a CRLF that straddles two chunks in splitLines (#2397) (aa6812c)

    v1.41.2

    1.41.2 (2026-08-09)

    ... (truncated)

    Commits
    • 89d641a fix: match filepaths on path component boundaries (#2416)
    • fe987eb fix: throw when TREE is given a ref that cannot be resolved (#2407)
    • 0730055 docs(readme): fix ES import example using unexported 'plugins' (#2408)
    • a7f747f fix: return best merge bases for DAG histories (#2412)
    • a760325 fix: validate readObject format consistently (#2406)
    • 07c6fe7 fix: include file mode changes in filepath log (#2413)
    • 25dc739 fix: restore checkout filepaths from the index (#2409)
    • aa6812c fix: don't split a CRLF that straddles two chunks in splitLines (#2397)
    • 39a3e22 chore: build docs (#2405)
    • 0d7c8e0 fix: expose internal git lock for tests (#2404)
    • Additional commits viewable in compare view

    Updates js-yaml from 4.1.1 to 5.4.0

    Changelog

    Sourced from js-yaml's changelog.

    [5.4.0] - 2026-08-25

    Added

    • Added the scalarStyleRules dumper option to customize string formatting. See Scalar styling for details.

    Changed

    • [breaking] Flattened the low-level AST node style representation. Scalar and collection nodes now use SCALAR_STYLE and COLLECTION_STYLE values; explicit tags use the separate tagged property. Alias nodes now contain only kind and anchor. This only affects code that directly constructs or edits AST nodes.
    • [breaking] The sortKeys option was rewritten using AST mutation to avoid side effects.
    • Reworked scalar style selection. This can change formatting without changing loaded values; in particular, whitespace-only strings are now double-quoted.

    Fixed

    • Accept a byte order mark at the start of each document in a stream, #791.
    • Produce valid flow mappings with quoteFlowKeys and flowSkipColonSpace, including alias and property-only keys, #786.
    • Preserve empty scalar items when converting block sequences to flow style.
    • Do not apply the 1024-character simple-key limit to flow mapping keys.
    • Count Unicode code points, rather than UTF-16 code units, for the 1024-character simple-key limit.
    • Add an explicit document-end marker after keep-chomped block scalars when needed to preserve trailing newlines.

    [5.3.0] - 2026-08-14

    This release focuses on reworking the documentation and making small architectural improvements before moving forward.

    Added

    • Added completely new documentation.
    • Exported DUMP_SCHEMA, the default schema used by the dumper.
    • Added YAMLException.throwAt() for throwing an error at a source position.

    Changed

    • Changed flat constant exports to grouped exports: EVENT_ID, SCALAR_STYLE, COLLECTION_STYLE, and CHOMPING_MODE, along with their value types. The old exports are still preserved, but deprecated.
    • Made identify mandatory for custom tag definitions. Use identify: () => false for load-only tags.

    Deprecated

    • Deprecated flat constant exports. Use grouped ones instead.

    Removed

    ... (truncated)

    Commits
    • 6b4ff5e 5.4.0 released
    • 3b3625e Update changelog
    • 4f25a74 Fix file name
    • 3bd003b Expose new scalar styling API
    • fbb3e9d Remove regex lookbehind for ES2015 compatibility
    • d43c185 Fix flowSkipColonSpace by forcing quoteFlowKeys
    • a5fdb31 Add automatic double quoting for whitespace-only strings, close #534
    • 25dcf77 Fix keep-chomped scalar test expectations
    • 9f50a42 Fix open-ended tracking for document end markers
    • 31aad6d Fix simple key length limit for astral characters
    • Additional commits viewable in compare view

    Updates lightningcss from 1.31.1 to 1.33.0

    Release notes

    Sourced from lightningcss's releases.

    v1.33.0

    Added

    Fixed

    v1.32.0

    Added

    Fixed

    Commits

    Updates minimatch from 10.2.2 to 10.2.6

    Commits

    @dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 1, 2026
    @dependabot
    dependabot Bot force-pushed the dependabot/npm_and_yarn/production-dependencies-af72244007 branch 2 times, most recently from c836794 to 73892f3 Compare August 15, 2026 07:45
    @dependabot
    dependabot Bot force-pushed the dependabot/npm_and_yarn/production-dependencies-af72244007 branch from 73892f3 to 17281ba Compare August 22, 2026 07:46
    …ates
    
    Bumps the production-dependencies group with 32 updates in the / directory:
    
    | Package | From | To |
    | --- | --- | --- |
    | [@clack/prompts](https://github.com/bombshell-dev/clack/tree/HEAD/packages/prompts) | `0.11.0` | `1.7.0` |
    | [@floating-ui/dom](https://github.com/floating-ui/floating-ui/tree/HEAD/packages/dom) | `1.7.5` | `1.8.0` |
    | [@myriaddreamin/rehype-typst](https://github.com/Myriad-Dreamin/typst.ts) | `0.6.0` | `0.7.0` |
    | [@napi-rs/simple-git](https://github.com/Brooooooklyn/simple-git) | `0.1.22` | `1.1.0` |
    | [esbuild-sass-plugin](https://github.com/glromeo/esbuild-sass-plugin) | `3.6.0` | `3.7.0` |
    | [globby](https://github.com/sindresorhus/globby) | `16.1.1` | `16.2.4` |
    | [isomorphic-git](https://github.com/isomorphic-git/isomorphic-git) | `1.37.2` | `1.41.9` |
    | [js-yaml](https://github.com/nodeca/js-yaml) | `4.1.1` | `5.4.0` |
    | [lightningcss](https://github.com/parcel-bundler/lightningcss) | `1.31.1` | `1.33.0` |
    | [minimatch](https://github.com/isaacs/minimatch) | `10.2.2` | `10.2.6` |
    | [pixi.js](https://github.com/pixijs/pixijs) | `8.18.1` | `8.20.0` |
    | [preact](https://github.com/preactjs/preact) | `10.28.4` | `10.29.8` |
    | [preact-render-to-string](https://github.com/preactjs/preact-render-to-string) | `6.6.6` | `6.7.0` |
    | [pretty-bytes](https://github.com/sindresorhus/pretty-bytes) | `7.1.0` | `7.1.1` |
    | [rehype-pretty-code](https://github.com/rehype-pretty/rehype-pretty-code/tree/HEAD/packages/core) | `0.14.1` | `0.14.5` |
    | [remark-smartypants](https://github.com/silvenon/remark-smartypants) | `3.0.2` | `3.0.3` |
    | [satori](https://github.com/vercel/satori) | `0.19.2` | `0.33.4` |
    | [serve-handler](https://github.com/vercel/serve-handler) | `6.1.6` | `6.1.7` |
    | [sharp](https://github.com/lovell/sharp) | `0.34.5` | `0.35.3` |
    | [toml](https://github.com/BinaryMuse/toml-node) | `3.0.0` | `5.0.0` |
    | [workerpool](https://github.com/josdejong/workerpool) | `10.0.1` | `10.0.3` |
    | [ws](https://github.com/websockets/ws) | `8.19.0` | `8.21.3` |
    | [yaml](https://github.com/eemeli/yaml) | `2.8.2` | `2.9.0` |
    | [yargs](https://github.com/yargs/yargs) | `18.0.0` | `18.1.0` |
    | [@quartz-community/types](https://github.com/quartz-community/types) | ``0d62f52`` | ``0f5711d`` |
    | [@quartz-community/utils](https://github.com/quartz-community/utils) | ``eaa6160`` | ``9da5e8d`` |
    | [@types/hast](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/hast) | `3.0.4` | `3.0.5` |
    | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.3.0` | `26.3.0` |
    | [esbuild](https://github.com/evanw/esbuild) | `0.27.3` | `0.28.2` |
    | [prettier](https://github.com/prettier/prettier) | `3.8.1` | `3.9.6` |
    | [tsx](https://github.com/privatenumber/tsx) | `4.21.0` | `4.23.12` |
    | [typescript](https://github.com/microsoft/TypeScript) | `5.9.3` | `7.0.2` |
    
    
    
    Updates `@clack/prompts` from 0.11.0 to 1.7.0
    - [Release notes](https://github.com/bombshell-dev/clack/releases)
    - [Changelog](https://github.com/bombshell-dev/clack/blob/main/packages/prompts/CHANGELOG.md)
    - [Commits](https://github.com/bombshell-dev/clack/commits/@clack/prompts@1.7.0/packages/prompts)
    
    Updates `@floating-ui/dom` from 1.7.5 to 1.8.0
    - [Release notes](https://github.com/floating-ui/floating-ui/releases)
    - [Changelog](https://github.com/floating-ui/floating-ui/blob/master/packages/dom/CHANGELOG.md)
    - [Commits](https://github.com/floating-ui/floating-ui/commits/@floating-ui/dom@1.8.0/packages/dom)
    
    Updates `@myriaddreamin/rehype-typst` from 0.6.0 to 0.7.0
    - [Release notes](https://github.com/Myriad-Dreamin/typst.ts/releases)
    - [Changelog](https://github.com/Myriad-Dreamin/typst.ts/blob/main/docs/release-workflows.md)
    - [Commits](Myriad-Dreamin/typst.ts@v0.6.0...v0.7.0)
    
    Updates `@napi-rs/simple-git` from 0.1.22 to 1.1.0
    - [Release notes](https://github.com/Brooooooklyn/simple-git/releases)
    - [Commits](Brooooooklyn/simple-git@v0.1.22...v1.1.0)
    
    Updates `esbuild-sass-plugin` from 3.6.0 to 3.7.0
    - [Release notes](https://github.com/glromeo/esbuild-sass-plugin/releases)
    - [Commits](https://github.com/glromeo/esbuild-sass-plugin/commits/v3.7.0)
    
    Updates `globby` from 16.1.1 to 16.2.4
    - [Release notes](https://github.com/sindresorhus/globby/releases)
    - [Commits](sindresorhus/globby@v16.1.1...v16.2.4)
    
    Updates `isomorphic-git` from 1.37.2 to 1.41.9
    - [Release notes](https://github.com/isomorphic-git/isomorphic-git/releases)
    - [Commits](isomorphic-git/isomorphic-git@v1.37.2...v1.41.9)
    
    Updates `js-yaml` from 4.1.1 to 5.4.0
    - [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md)
    - [Commits](nodeca/js-yaml@4.1.1...5.4.0)
    
    Updates `lightningcss` from 1.31.1 to 1.33.0
    - [Release notes](https://github.com/parcel-bundler/lightningcss/releases)
    - [Commits](https://github.com/parcel-bundler/lightningcss/commits/v1.33.0)
    
    Updates `minimatch` from 10.2.2 to 10.2.6
    - [Changelog](https://github.com/isaacs/minimatch/blob/main/changelog.md)
    - [Commits](isaacs/minimatch@v10.2.2...v10.2.6)
    
    Updates `pixi.js` from 8.18.1 to 8.20.0
    - [Release notes](https://github.com/pixijs/pixijs/releases)
    - [Commits](pixijs/pixijs@v8.18.1...v8.20.0)
    
    Updates `preact` from 10.28.4 to 10.29.8
    - [Release notes](https://github.com/preactjs/preact/releases)
    - [Commits](preactjs/preact@10.28.4...10.29.8)
    
    Updates `preact-render-to-string` from 6.6.6 to 6.7.0
    - [Release notes](https://github.com/preactjs/preact-render-to-string/releases)
    - [Changelog](https://github.com/preactjs/preact-render-to-string/blob/main/CHANGELOG.md)
    - [Commits](preactjs/preact-render-to-string@v6.6.6...v6.7.0)
    
    Updates `pretty-bytes` from 7.1.0 to 7.1.1
    - [Release notes](https://github.com/sindresorhus/pretty-bytes/releases)
    - [Commits](sindresorhus/pretty-bytes@v7.1.0...v7.1.1)
    
    Updates `rehype-pretty-code` from 0.14.1 to 0.14.5
    - [Release notes](https://github.com/rehype-pretty/rehype-pretty-code/releases)
    - [Changelog](https://github.com/rehype-pretty/rehype-pretty-code/blob/master/packages/core/CHANGELOG.md)
    - [Commits](https://github.com/rehype-pretty/rehype-pretty-code/commits/rehype-pretty-code@0.14.5/packages/core)
    
    Updates `remark-smartypants` from 3.0.2 to 3.0.3
    - [Release notes](https://github.com/silvenon/remark-smartypants/releases)
    - [Commits](silvenon/remark-smartypants@v3.0.2...v3.0.3)
    
    Updates `satori` from 0.19.2 to 0.33.4
    - [Release notes](https://github.com/vercel/satori/releases)
    - [Commits](vercel/satori@0.19.2...0.33.4)
    
    Updates `serve-handler` from 6.1.6 to 6.1.7
    - [Release notes](https://github.com/vercel/serve-handler/releases)
    - [Commits](vercel/serve-handler@6.1.6...6.1.7)
    
    Updates `sharp` from 0.34.5 to 0.35.3
    - [Release notes](https://github.com/lovell/sharp/releases)
    - [Commits](lovell/sharp@v0.34.5...v0.35.3)
    
    Updates `toml` from 3.0.0 to 5.0.0
    - [Changelog](https://github.com/BinaryMuse/toml-node/blob/master/CHANGELOG.md)
    - [Commits](BinaryMuse/toml-node@v3.0.0...v5.0.0)
    
    Updates `workerpool` from 10.0.1 to 10.0.3
    - [Changelog](https://github.com/josdejong/workerpool/blob/master/HISTORY.md)
    - [Commits](josdejong/workerpool@v10.0.1...v10.0.3)
    
    Updates `ws` from 8.19.0 to 8.21.3
    - [Release notes](https://github.com/websockets/ws/releases)
    - [Commits](websockets/ws@8.19.0...8.21.3)
    
    Updates `yaml` from 2.8.2 to 2.9.0
    - [Release notes](https://github.com/eemeli/yaml/releases)
    - [Commits](eemeli/yaml@v2.8.2...v2.9.0)
    
    Updates `yargs` from 18.0.0 to 18.1.0
    - [Release notes](https://github.com/yargs/yargs/releases)
    - [Changelog](https://github.com/yargs/yargs/blob/main/CHANGELOG.md)
    - [Commits](yargs/yargs@v18.0.0...v18.1.0)
    
    Updates `@quartz-community/types` from `0d62f52` to `0f5711d`
    - [Release notes](https://github.com/quartz-community/types/releases)
    - [Commits](quartz-community/types@0d62f52...0f5711d)
    
    Updates `@quartz-community/utils` from `eaa6160` to `9da5e8d`
    - [Release notes](https://github.com/quartz-community/utils/releases)
    - [Commits](quartz-community/utils@eaa6160...9da5e8d)
    
    Updates `@types/hast` from 3.0.4 to 3.0.5
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/hast)
    
    Updates `@types/node` from 25.3.0 to 26.3.0
    - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
    - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)
    
    Updates `esbuild` from 0.27.3 to 0.28.2
    - [Release notes](https://github.com/evanw/esbuild/releases)
    - [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
    - [Commits](evanw/esbuild@v0.27.3...v0.28.2)
    
    Updates `prettier` from 3.8.1 to 3.9.6
    - [Release notes](https://github.com/prettier/prettier/releases)
    - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
    - [Commits](prettier/prettier@3.8.1...3.9.6)
    
    Updates `tsx` from 4.21.0 to 4.23.12
    - [Release notes](https://github.com/privatenumber/tsx/releases)
    - [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)
    - [Commits](privatenumber/tsx@v4.21.0...v4.23.12)
    
    Updates `typescript` from 5.9.3 to 7.0.2
    - [Release notes](https://github.com/microsoft/TypeScript/releases)
    - [Commits](microsoft/TypeScript@v5.9.3...v7.0.2)
    
    ---
    updated-dependencies:
    - dependency-name: "@clack/prompts"
      dependency-version: 1.7.0
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: production-dependencies
    - dependency-name: "@floating-ui/dom"
      dependency-version: 1.8.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: "@myriaddreamin/rehype-typst"
      dependency-version: 0.7.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: "@napi-rs/simple-git"
      dependency-version: 1.1.0
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: production-dependencies
    - dependency-name: "@quartz-community/types"
      dependency-version: 0f5711da9144cc354d833ea1507036dc69ebb8ca
      dependency-type: direct:development
      dependency-group: production-dependencies
    - dependency-name: "@quartz-community/utils"
      dependency-version: 9da5e8de5b2a2a33dc7c15168282058217ff3e3f
      dependency-type: direct:development
      dependency-group: production-dependencies
    - dependency-name: "@types/hast"
      dependency-version: 3.0.5
      dependency-type: direct:development
      update-type: version-update:semver-patch
      dependency-group: production-dependencies
    - dependency-name: "@types/node"
      dependency-version: 26.1.2
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: production-dependencies
    - dependency-name: esbuild
      dependency-version: 0.28.1
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: esbuild-sass-plugin
      dependency-version: 3.7.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: globby
      dependency-version: 16.2.2
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: isomorphic-git
      dependency-version: 1.40.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: js-yaml
      dependency-version: 5.2.2
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: production-dependencies
    - dependency-name: lightningcss
      dependency-version: 1.33.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: minimatch
      dependency-version: 10.2.6
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: production-dependencies
    - dependency-name: pixi.js
      dependency-version: 8.19.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: preact
      dependency-version: 10.29.7
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: preact-render-to-string
      dependency-version: 6.7.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: prettier
      dependency-version: 3.9.6
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: pretty-bytes
      dependency-version: 7.1.1
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: production-dependencies
    - dependency-name: rehype-pretty-code
      dependency-version: 0.14.5
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: production-dependencies
    - dependency-name: remark-smartypants
      dependency-version: 3.0.3
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: production-dependencies
    - dependency-name: satori
      dependency-version: 0.29.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: serve-handler
      dependency-version: 6.1.7
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: production-dependencies
    - dependency-name: sharp
      dependency-version: 0.35.3
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: toml
      dependency-version: 5.0.0
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: production-dependencies
    - dependency-name: tsx
      dependency-version: 4.23.1
      dependency-type: direct:development
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: typescript
      dependency-version: 7.0.2
      dependency-type: direct:development
      update-type: version-update:semver-major
      dependency-group: production-dependencies
    - dependency-name: workerpool
      dependency-version: 10.0.3
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: production-dependencies
    - dependency-name: ws
      dependency-version: 8.21.1
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: yaml
      dependency-version: 2.9.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    - dependency-name: yargs
      dependency-version: 18.1.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: production-dependencies
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    @dependabot
    dependabot Bot force-pushed the dependabot/npm_and_yarn/production-dependencies-af72244007 branch from 17281ba to 13e42d9 Compare August 29, 2026 07:45
    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