Skip to content

chore(deps): bump the dependencies group across 1 directory with 10 updates#67

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

chore(deps): bump the dependencies group across 1 directory with 10 updates#67
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dependencies-2d47014008

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 9, 2026

Copy link
Copy Markdown

Bumps the dependencies group with 10 updates in the / directory:

Package From To
@deepgram/sdk 5.1.0 5.5.0
happy-dom 20.9.0 20.10.6
terser 5.46.2 5.49.0
vite 8.0.10 8.1.4
preact 10.29.1 10.29.7
sugar-high 1.1.0 1.2.1
@tailwindcss/vite 4.2.4 4.3.2
@vitejs/plugin-react 6.0.1 6.0.3
tailwindcss 4.2.4 4.3.2
@playwright/test 1.59.1 1.61.1

Updates @deepgram/sdk from 5.1.0 to 5.5.0

Release notes

Sourced from @​deepgram/sdk's releases.

v5.5.0

5.5.0 (2026-06-26)

Features

  • regen: flux word timings, diarize_model, profanity_filter (#509) (e8be8ca)

v5.4.0

5.4.0 (2026-06-01)

Adds a pluggable streaming-transport layer (the JS side of the cross-SDK SageMaker work) and fixes the TypeScript types exposed for the WebSocket helper clients. Fully backwards-compatible — every new option is optional with existing defaults, so current callers need no code changes.

Features

  • Pluggable transport interface for SageMaker support (#492) (4d43b1b)

    Adds a DeepgramTransport / DeepgramTransportFactory interface (src/transport.ts) and a transportFactory option on DeepgramClient. When set, the listen.v1, listen.v2, speak.v1, and agent.v1 createConnection paths route through a custom transport via a TransportWebSocketAdapter instead of the default WebSocket; REST behaviour is unchanged. This is the seam the @deepgram/sagemaker package plugs into, validated end-to-end against live Nova-3 STT, Flux, and Aura TTS endpoints (including a 400-concurrent-connection burst). Mirrors the same work in the Python and Java SDKs.

  • reconnect flag with auto-disable for custom transports (8dec8c9)

    New optional reconnect?: boolean on DeepgramClient (default true, exposed read-only as client.reconnect) controlling wrapper-level retry of streaming connections. Auto-disabled to false when a transportFactory is supplied, so self-retrying transports aren't double-stacked with a second retry layer (which caused storm-on-storm behaviour under burst load). Opt back in with an explicit reconnect: true.

Bug Fixes

  • Expose WebSocket helper types (#501) (ac71def) — thanks @​asim48-ctrl

    The agent / listen / speak getters were typed against the generated client, which hid the wrapper's createConnection() method and typed Authorization as required. They now expose typed WebSocket wrapper clients, so client.listen.v1.createConnection({ model: "nova-3" }) type-checks and Authorization is optional. Runtime behaviour is unchanged — this is a types-only fix. Fixes #489.

v5.3.0

No release notes provided.

v5.2.0

5.2.0 (2026-05-12)

Features

  • alias AgentV1SettingsAgentListenProvider to *AgentContextListenProvider (150e663)
  • preserve AgentV1Settings.Agent sub-types after regen (2efab2d)
  • preserve SDK compatibility after regen (d2b8d62)
  • restore Agent interface, add AgentReference for string-id flow (4c72d31)
  • sdk regeneration 2026-04-30 (#491) (a618282)
  • sdk regeneration 2026-05-06 with backward-compat preserved (#497) (2aed53e)
Changelog

Sourced from @​deepgram/sdk's changelog.

5.5.0 (2026-06-26)

Features

  • regen: flux word timings, diarize_model, profanity_filter (#509) (e8be8ca)

5.4.0 (2026-06-01)

Features

  • transport: add pluggable streaming-transport interface for SageMaker support. New DeepgramTransport / DeepgramTransportFactory interface (src/transport.ts) and a transportFactory option on DeepgramClient; when set, the listen.v1, listen.v2, speak.v1, and agent.v1 createConnection paths route through a custom transport via a TransportWebSocketAdapter instead of the default WebSocket. REST behaviour is unchanged. This is the seam the @deepgram/sagemaker package plugs into (#492) (4d43b1b)
  • transport: add reconnect flag with auto-disable for custom transports. New optional reconnect?: boolean on DeepgramClient (default true, exposed read-only as client.reconnect) controlling wrapper-level retry of streaming connections; auto-disabled to false when a transportFactory is supplied so self-retrying transports aren't double-stacked with a second retry layer (8dec8c9)

Bug Fixes

  • types: expose WebSocket helper types so client.listen.v1.createConnection({ model }) type-checks and Authorization is optional on the agent / listen / speak connect helpers. Runtime behaviour is unchanged (types-only fix); fixes #489 (#501) (ac71def)

5.3.0 (2026-05-15)

Features

  • listen: Diarization v2 is now GA for batch transcription. New optional diarize_model field on ListenV1RequestUrl and MediaTranscribeRequestOctetStream, plus a new MediaTranscribeRequestDiarizeModel enum (#499) (b015e1f)
  • agent: introduce top-level DeepgramListenProviderV1 and DeepgramListenProviderV2 types that consolidate the previous per-resource provider types. The existing AgentV1SettingsAgent[Context]ListenProvider* paths continue to work, including the nested AgentV1SettingsAgentContextListenProviderV2.LanguageHint namespace path which is preserved as an alias for DeepgramListenProviderV2.LanguageHint (#499) (b015e1f), (ace680a)
  • agent: route agent.v1.settings.think.models over HTTPS instead of WSS. Previously this endpoint was misrouted and was unusable (#499) (b015e1f)
  • environment: replace DeepgramEnvironment.Agent with a new agentRest slot on the Production environment. Callers constructing a custom environment should pass agentRest instead of relying on the removed Agent value (#499) (b015e1f)

Bug Fixes

  • client: restore client.fetch() default baseUrl to api.deepgram.com. After the new agentRest environment slot was introduced, the passthrough helper was defaulting to agent.deepgram.com, which 404'd for canonical REST endpoints (56b8ce5)

5.2.0 (2026-05-12)

Features

  • alias AgentV1SettingsAgentListenProvider to *AgentContextListenProvider (150e663)
  • preserve AgentV1Settings.Agent sub-types after regen (2efab2d)
  • preserve SDK compatibility after regen (d2b8d62)
  • restore Agent interface, add AgentReference for string-id flow (4c72d31)
  • sdk regeneration 2026-04-30 (#491) (a618282)
  • sdk regeneration 2026-05-06 with backward-compat preserved (#497) (2aed53e)
Commits
  • 8e6a715 chore(main): release 5.5.0 (#512)
  • e8be8ca feat(regen): flux word timings, diarize_model, profanity_filter (#509)
  • 8d5d961 chore: add deepgram-kiley and dg-coreylweathers to CODEOWNERS (#510)
  • 0d4e274 chore(main): release 5.4.0 (#503)
  • 19a6184 docs(changelog): dedupe and expand 5.4.0 release notes
  • ef3f40a chore(main): release 5.4.0
  • 4d43b1b feat: add pluggable transport interface for sagemaker support (#492)
  • 8dec8c9 feat: add reconnect flag with auto-disable for custom transports
  • 4f27b6f feat: add pluggable transport interface for SageMaker support
  • ac71def fix: expose websocket helper types (#501)
  • Additional commits viewable in compare view

Updates happy-dom from 20.9.0 to 20.10.6

Release notes

Sourced from happy-dom's releases.

v20.10.6

👷‍♂️ Patch fixes

v20.10.5

👷‍♂️ Patch fixes

  • Adds cache to query selector parser - By @​capricorn86 in task #2142
    • The selector parser degraded in performance in v20.6.3 to solve more complex selectors
    • Parsing is still a bit slower, but the cache will hopefully mitigate most of the problem

v20.10.4

👷‍♂️ Patch fixes

  • Coerce null qualifiedName to empty string in createDocument - By @​Firer in task #2206

v20.10.3

👷‍♂️ Patch fixes

  • Fix "~=" attribute selector matching hyphenated substrings in CSS selectors - By @​mixelburg in task #2194

v20.10.2

👷‍♂️ Patch fixes

v20.10.0

🎨 Features

Commits

Updates terser from 5.46.2 to 5.49.0

Changelog

Sourced from terser's changelog.

v5.49.0

  • Add ResizeObserver box option to domprops
  • Do not evaluate exponentiation of BigInt
  • Parse identifiers from newer unicode versions, and escape them for older runtimes

v5.48.0

  • Support import source ... and import defer ... (#1682)

v5.47.1

  • Fix crash when using mangle.keep_fnames with destructuring

v5.47.0

  • Add builtins_ecma and builtins_pure options
  • Add Intl options to domprops (#1680)
Commits
  • 3433d00 5.49.0
  • 3fef963 update changelog
  • 85d51be add ResizeObserver box option to domprops. Closes #1699
  • 54252be do not evaluate exponentiation of BigInt. Closes #1707
  • deacc52 parse identifiers from newer unicode versions, and escape them for older runt...
  • 59c0161 Update dependency js-yaml to v4.2.0 (#1689)
  • 794a474 5.48.0
  • 9778373 update changelog
  • 7f77594 do not fuzz test in questionable OS
  • 702926f Support source-phase imports (import source / import defer and dynamic `i...
  • Additional commits viewable in compare view

Updates vite from 8.0.10 to 8.1.4

Release notes

Sourced from vite's releases.

v8.1.4

Please refer to CHANGELOG.md for details.

v8.1.3

Please refer to CHANGELOG.md for details.

v8.1.2

Please refer to CHANGELOG.md for details.

v8.1.1

Please refer to CHANGELOG.md for details.

create-vite@8.1.0

Please refer to CHANGELOG.md for details.

plugin-legacy@8.1.0

Please refer to CHANGELOG.md for details.

v8.1.0

Please refer to CHANGELOG.md for details.

plugin-legacy@8.1.0-beta.0

Please refer to CHANGELOG.md for details.

v8.1.0-beta.0

Please refer to CHANGELOG.md for details.

v8.0.16

Please refer to CHANGELOG.md for details.

v8.0.15

Please refer to CHANGELOG.md for details.

v8.0.14

Please refer to CHANGELOG.md for details.

v8.0.13

Please refer to CHANGELOG.md for details.

v8.0.12

Please refer to CHANGELOG.md for details.

v8.0.11

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

8.1.4 (2026-07-09)

Features

Bug Fixes

  • build: add workaround for building on stackblitz (#22840) (575c32c)
  • build: keep import.meta.url in preload function as-is (#22839) (f1f90ed)
  • deps: update all non-major dependencies (#22865) (d4295a9)
  • deps: update rolldown-related dependencies (#22866) (7cf07e4)
  • html: avoid backtracking in import-only check (#22848) (b5868c0)
  • optimizer: avoid optimizer run for transform request before init (#22852) (72a5e21)
  • ssr: align named export function call stacktrace column with Node (#22829) (173a1b6)
  • strip pure CSS chunk imports when chunkImportMap is enabled (#22841) (648bd04)

Documentation

Miscellaneous Chores

  • deps: update dependency postcss-modules to v9 (#22867) (a9539d6)

Code Refactoring

Tests

Build System

8.1.3 (2026-07-02)

Bug Fixes

8.1.2 (2026-06-30)

Bug Fixes

  • deps: revert es-module-lexer to 2.1.0 (#22827) (0d3bd7c)
  • restore, "fix: resolve pnpm .modules.yaml from workspace root instead of cwd (#22757)" (#22825) (efb98cc)

... (truncated)

Commits

Updates preact from 10.29.1 to 10.29.7

Release notes

Sourced from preact's releases.

10.29.7

Maintenance

10.29.6

We had to revert preactjs/preact#5055 due to an incompatibility with useSignalEffect

10.29.5

Fixes

10.29.4

Fixes

10.29.3

Fixes

Performance

Types

Maintenance

10.29.2

Fixes

Maintenance

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for preact since your current version.


Updates sugar-high from 1.1.0 to 1.2.1

Release notes

Sourced from sugar-high's releases.

v1.2.0

Feature

Full Changelog: huozhi/sugar-high@v1.1.0...v1.2.0

Commits

Updates @tailwindcss/vite from 4.2.4 to 4.3.2

Release notes

Sourced from @​tailwindcss/vite's releases.

v4.3.2

Fixed

  • Support bare spacing values for auto-rows-* and auto-cols-* utilities (e.g. auto-rows-12 and auto-cols-16) (#20229)
  • Prevent @tailwindcss/cli in --watch mode from crashing on Windows when @source points to a directory that doesn't exist (#20242)
  • Prevent @tailwindcss/vite from crashing in Deno v2.8.x when context.parentURL is not a valid URL (#20245)
  • Ensure @tailwindcss/cli in --watch mode rebuilds when the input CSS file changes in an ignored directory (#20246)
  • Allow @variant rules used in addBase(…) to use custom variants defined later (#20247)
  • Prevent @tailwindcss/vite from crashing during HMR when scanned files or directories are deleted (#20259)
  • Generate font-size instead of color declarations for text-[--spacing(…)] (#20260)
  • Prevent @source patterns from scanning unrelated sibling files and folders (#20263)
  • Extract class candidates adjacent to Template Toolkit delimiters like %]…[% in .tt, .tt2, and .tx files (#20269)
  • Extract class candidates from conditional Maud syntax like p.text-black[condition] (#20269)
  • Prevent @position-try rules from triggering unknown at-rule warnings when optimizing CSS (#20277)
  • Support class suggestions for named opacity modifiers from --opacity theme values (#20287)
  • Prevent type errors in @tailwindcss/postcss when used with newer PostCSS patch releases (#20289)

v4.3.1

Added

  • Add --silent option to suppress output in @tailwindcss/cli (#20100)

Fixed

  • Remove deprecation warnings by using Module#registerHooks instead of Module#register on Node 26+ (#20028)
  • Canonicalization: don't crash when plugin utilities throw for unsupported values (#20052)
  • Allow @apply to be used with CSS mixins (#19427)
  • Ensure not-* correctly negates @container queries, including style(…) queries (#20059)
  • Ensure drop-shadow-* color utilities work with custom shadow values containing calc(…) (#20080)
  • Fix 'Sourcemap is likely to be incorrect' warnings when using @tailwindcss/vite (#20103)
  • Ensure @tailwindcss/webpack can be installed in Rspack projects without requiring webpack as a peer dependency (#20027)
  • Canonicalization: don't suggest invalid calc(…) expressions (e.g. px-[calc(1rem+0px)]px-[calc(1rem+0)]) (#20127)
  • Canonicalization: avoid suggesting large spacing-scale values for arbitrary lengths (e.g. left-[99999px]left-[99999px], not left-24999.75) (#20130)
  • Ensure @tailwindcss/cli in --watch mode recovers when a tracked dependency is deleted and restored (#20137)
  • Ensure standalone @tailwindcss/cli binaries are ignored when scanning for class candidates (#20139)
  • Ensure class candidates are extracted from Twig addClass(…) and removeClass(…) calls (#20198)
  • Don't crash in the Ruby or Vue preprocessors when scanning files containing invalid UTF-8 bytes (#19588)
  • Allow @variant to be used inside addBase (#19480)
  • Ensure @source globs with symlinks are preserved (#20203)
  • Ensure later @source rules can re-include files excluded by earlier @source not rules (#20203)
  • Upgrade: don't migrate empty class rules to invalid @utility rules (#20205)
  • Ensure transitions between inset-shadow-none and other inset shadows work correctly (#20208)
  • Ensure explicitly referenced @source directories are scanned even when ignored by git (#20214)
  • Ensure @source globs ending in **/* preserve dynamic path segments to avoid scanning too many files (#20217)
  • Canonicalization: don't fold calc(…) divisions when the result would require high precision (e.g. w-[calc(100%/3.5)]w-[calc(100%/3.5)], not w-[28.571428571428573%]) (#20221)
  • Serve ESM type declarations to ESM importers of @tailwindcss/postcss (#20228)

Changed

  • Generate 0 instead of calc(var(--spacing) * 0) for spacing utilities like m-0 and left-0 (#20196)

... (truncated)

Changelog

Sourced from @​tailwindcss/vite's changelog.

[4.3.2] - 2026-06-26

Fixed

  • Support bare spacing values for auto-rows-* and auto-cols-* utilities (e.g. auto-rows-12 and auto-cols-16) (#20229)
  • Prevent @tailwindcss/cli in --watch mode from crashing on Windows when @source points to a directory that doesn't exist (#20242)
  • Prevent @tailwindcss/vite from crashing in Deno v2.8.x when context.parentURL is not a valid URL (#20245)
  • Ensure @tailwindcss/cli in --watch mode rebuilds when the input CSS file changes in an ignored directory (#20246)
  • Allow @variant rules used in addBase(…) to use custom variants defined later (#20247)
  • Prevent @tailwindcss/vite from crashing during HMR when scanned files or directories are deleted (#20259)
  • Generate font-size instead of color declarations for text-[--spacing(…)] (#20260)
  • Prevent @source patterns from scanning unrelated sibling files and folders (#20263)
  • Extract class candidates adjacent to Template Toolkit delimiters like %]…[% in .tt, .tt2, and .tx files (#20269)
  • Extract class candidates from conditional Maud syntax like p.text-black[condition] (#20269)
  • Prevent @position-try rules from triggering unknown at-rule warnings when optimizing CSS (#20277)
  • Support class suggestions for named opacity modifiers from --opacity theme values (#20287)
  • Prevent type errors in @tailwindcss/postcss when used with newer PostCSS patch releases (#20289)

[4.3.1] - 2026-06-12

Added

  • Add --silent option to suppress output in @tailwindcss/cli (#20100)

Fixed

  • Remove deprecation warnings by using Module#registerHooks instead of Module#register on Node 26+ (#20028)
  • Canonicalization: don't crash when plugin utilities throw for unsupported values (#20052)
  • Allow @apply to be used with CSS mixins (#19427)
  • Ensure not-* correctly negates @container queries, including style(…) queries (#20059)
  • Ensure drop-shadow-* color utilities work with custom shadow values containing calc(…) (#20080)
  • Fix 'Sourcemap is likely to be incorrect' warnings when using @tailwindcss/vite (#20103)
  • Ensure @tailwindcss/webpack can be installed in Rspack projects without requiring webpack as a peer dependency (#20027)
  • Canonicalization: don't suggest invalid calc(…) expressions (e.g. px-[calc(1rem+0px)]px-[calc(1rem+0)]) (#20127)
  • Canonicalization: avoid suggesting large spacing-scale values for arbitrary lengths (e.g. left-[99999px]left-[99999px], not left-24999.75) (#20130)
  • Ensure @tailwindcss/cli in --watch mode recovers when a tracked dependency is deleted and restored (#20137)
  • Ensure standalone @tailwindcss/cli binaries are ignored when scanning for class candidates (#20139)
  • Ensure class candidates are extracted from Twig addClass(…) and removeClass(…) calls (#20198)
  • Don't crash in the Ruby or Vue preprocessors when scanning files containing invalid UTF-8 bytes (#19588)
  • Allow @variant to be used inside addBase (#19480)
  • Ensure @source globs with symlinks are preserved (#20203)
  • Ensure later @source rules can re-include files excluded by earlier @source not rules (#20203)
  • Upgrade: don't migrate empty class rules to invalid @utility rules (#20205)
  • Ensure transitions between inset-shadow-none and other inset shadows work correctly (#20208)
  • Ensure explicitly referenced @source directories are scanned even when ignored by git (#20214)
  • Ensure @source globs ending in **/* preserve dynamic path segments to avoid scanning too many files (#20217)
  • Canonicalization: don't fold calc(…) divisions when the result would require high precision (e.g. w-[calc(100%/3.5)]w-[calc(100%/3.5)], not w-[28.571428571428573%]) (#20221)
  • Serve ESM type declarations to ESM importers of @tailwindcss/postcss (#20228)

Changed

... (truncated)

Commits

…pdates

Bumps the dependencies group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@deepgram/sdk](https://github.com/deepgram/deepgram-js-sdk) | `5.1.0` | `5.5.0` |
| [happy-dom](https://github.com/capricorn86/happy-dom) | `20.9.0` | `20.10.6` |
| [terser](https://github.com/terser/terser) | `5.46.2` | `5.49.0` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.0.10` | `8.1.4` |
| [preact](https://github.com/preactjs/preact) | `10.29.1` | `10.29.7` |
| [sugar-high](https://github.com/huozhi/sugar-high/tree/HEAD/packages/sugar-high) | `1.1.0` | `1.2.1` |
| [@tailwindcss/vite](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/@tailwindcss-vite) | `4.2.4` | `4.3.2` |
| [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `6.0.1` | `6.0.3` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `4.2.4` | `4.3.2` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.59.1` | `1.61.1` |



Updates `@deepgram/sdk` from 5.1.0 to 5.5.0
- [Release notes](https://github.com/deepgram/deepgram-js-sdk/releases)
- [Changelog](https://github.com/deepgram/deepgram-js-sdk/blob/main/CHANGELOG.md)
- [Commits](deepgram/deepgram-js-sdk@v5.1.0...v5.5.0)

Updates `happy-dom` from 20.9.0 to 20.10.6
- [Release notes](https://github.com/capricorn86/happy-dom/releases)
- [Commits](capricorn86/happy-dom@v20.9.0...v20.10.6)

Updates `terser` from 5.46.2 to 5.49.0
- [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md)
- [Commits](terser/terser@v5.46.2...v5.49.0)

Updates `vite` from 8.0.10 to 8.1.4
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v8.1.4/packages/vite)

Updates `preact` from 10.29.1 to 10.29.7
- [Release notes](https://github.com/preactjs/preact/releases)
- [Commits](preactjs/preact@10.29.1...10.29.7)

Updates `sugar-high` from 1.1.0 to 1.2.1
- [Release notes](https://github.com/huozhi/sugar-high/releases)
- [Commits](https://github.com/huozhi/sugar-high/commits/v1.2.1/packages/sugar-high)

Updates `@tailwindcss/vite` from 4.2.4 to 4.3.2
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.2/packages/@tailwindcss-vite)

Updates `@vitejs/plugin-react` from 6.0.1 to 6.0.3
- [Release notes](https://github.com/vitejs/vite-plugin-react/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-react/commits/plugin-react@6.0.3/packages/plugin-react)

Updates `tailwindcss` from 4.2.4 to 4.3.2
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.3.2/packages/tailwindcss)

Updates `@playwright/test` from 1.59.1 to 1.61.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.59.1...v1.61.1)

---
updated-dependencies:
- dependency-name: "@deepgram/sdk"
  dependency-version: 5.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: happy-dom
  dependency-version: 20.10.6
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: terser
  dependency-version: 5.49.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: vite
  dependency-version: 8.1.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: preact
  dependency-version: 10.29.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: sugar-high
  dependency-version: 1.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@tailwindcss/vite"
  dependency-version: 4.3.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@vitejs/plugin-react"
  dependency-version: 6.0.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: tailwindcss
  dependency-version: 4.3.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@playwright/test"
  dependency-version: 1.61.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jul 9, 2026
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