Skip to content

chore(deps): bump the non-majors group across 1 directory with 20 updates#141

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/non-majors-c5547d6053
Open

chore(deps): bump the non-majors group across 1 directory with 20 updates#141
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/non-majors-c5547d6053

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Apr 1, 2025

Bumps the non-majors group with 20 updates in the / directory:

Package From To
@kobalte/core 0.13.8 0.13.9
@modular-forms/solid 0.25.0 0.25.1
@rust-nostr/nostr-sdk 0.39.0 0.40.2
@sentry/solid 9.1.0 9.10.1
@solid-primitives/memo 1.4.0 1.4.1
@solidjs/router 0.13.6 0.15.3
@tanstack/solid-query 5.66.2 5.71.1
@tanstack/solid-query-devtools 5.66.2 5.71.1
@tanstack/solid-virtual 3.13.0 3.13.6
nostr-login 1.7.6 1.7.11
nostr-tools 2.10.4 2.11.0
rxjs 7.8.1 7.8.2
solid-js 1.9.4 1.9.5
@iconify-json/material-symbols 1.2.14 1.2.17
@types/serviceworker 0.0.120 0.0.127
solid-devtools 0.33.0 0.34.0
typescript 5.7.3 5.8.2
vite 6.1.0 6.2.4
vite-plugin-solid 2.11.1 2.11.6
vitest 3.0.5 3.1.1

Updates @kobalte/core from 0.13.8 to 0.13.9

Release notes

Sourced from @​kobalte/core's releases.

@​kobalte/core@​0.13.9

Patch Changes

Commits

Updates @modular-forms/solid from 0.25.0 to 0.25.1

Release notes

Sourced from @​modular-forms/solid's releases.

v0.25.1 (@​modular-forms/solid)

Many thanks to @​obedm503 for contributing to this release.

  • Fix setValues for field arrays (pull request #274)
Commits

Updates @rust-nostr/nostr-sdk from 0.39.0 to 0.40.2

Release notes

Sourced from @​rust-nostr/nostr-sdk's releases.

v0.40.2

Fixed

  • Fixes from upstream rust crates

v0.40.1

Fixed

  • Fix NostrConnect constructor
Changelog

Sourced from @​rust-nostr/nostr-sdk's changelog.

0.40.2

Fixed

  • Fixes from upstream rust crates

0.40.1

Fixed

  • Fix NostrConnect constructor
Commits

Updates @sentry/solid from 9.1.0 to 9.10.1

Release notes

Sourced from @​sentry/solid's releases.

9.10.1

  • fix: Correct @​sentry-internal/feedback docs to match the code (#15874)
  • deps: Bump bundler plugins to version 3.2.4 (#15909)

Bundle size 📦

Path Size
@​sentry/browser 23.08 KB
@​sentry/browser - with treeshaking flags 22.88 KB
@​sentry/browser (incl. Tracing) 36.49 KB
@​sentry/browser (incl. Tracing, Replay) 73.65 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 67 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 78.3 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 90.87 KB
@​sentry/browser (incl. Feedback) 40.21 KB
@​sentry/browser (incl. sendFeedback) 27.71 KB
@​sentry/browser (incl. FeedbackAsync) 32.5 KB
@​sentry/react 24.86 KB
@​sentry/react (incl. Tracing) 38.39 KB
@​sentry/vue 27.3 KB
@​sentry/vue (incl. Tracing) 38.18 KB
@​sentry/svelte 23.12 KB
CDN Bundle 24.33 KB
CDN Bundle (incl. Tracing) 36.51 KB
CDN Bundle (incl. Tracing, Replay) 71.53 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 76.71 KB
CDN Bundle - uncompressed 70.93 KB
CDN Bundle (incl. Tracing) - uncompressed 108.11 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 219.4 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 231.97 KB
@​sentry/nextjs (client) 39.68 KB
@​sentry/sveltekit (client) 36.92 KB
@​sentry/node 142.91 KB
@​sentry/node - without tracing 96.12 KB
@​sentry/aws-serverless 120.46 KB

9.10.0

Important Changes

  • feat: Add support for logs

    • feat(node): Add logging public APIs to Node SDKs (#15764)
    • feat(core): Add support for beforeSendLog (#15814)
    • feat(core): Add support for parameterizing logs (#15812)
    • fix: Remove critical log severity level (#15824)

    All JavaScript SDKs other than @sentry/cloudflare and @sentry/deno now support sending logs via dedicated methods as part of Sentry's upcoming logging product.

    Logging is gated by an experimental option, _experiments.enableLogs.

... (truncated)

Changelog

Sourced from @​sentry/solid's changelog.

9.10.1

  • fix: Correct @​sentry-internal/feedback docs to match the code (#15874)
  • deps: Bump bundler plugins to version 3.2.4 (#15909)

9.10.0

Important Changes

  • feat: Add support for logs

    • feat(node): Add logging public APIs to Node SDKs (#15764)
    • feat(core): Add support for beforeSendLog (#15814)
    • feat(core): Add support for parameterizing logs (#15812)
    • fix: Remove critical log severity level (#15824)

    All JavaScript SDKs other than @sentry/cloudflare and @sentry/deno now support sending logs via dedicated methods as part of Sentry's upcoming logging product.

    Logging is gated by an experimental option, _experiments.enableLogs.

    Sentry.init({
      dsn: 'PUBLIC_DSN',
      // `enableLogs` must be set to true to use the logging features
      _experiments: { enableLogs: true },
    });
    const { trace, debug, info, warn, error, fatal, fmt } = Sentry.logger;
    trace('Starting database connection', { database: 'users' });
    debug('Cache miss for user', { userId: 123 });
    error('Failed to process payment', { orderId: 'order_123', amount: 99.99 });
    fatal('Database connection pool exhausted', { database: 'users', activeConnections: 100 });
    // Structured logging via the fmt helper function. When you use fmt, the string template and parameters are sent separately so they can be queried independently in Sentry.
    info(fmt(Updated profile for user ${userId}));
    warn(fmt(Rate limit approaching for endpoint ${endpoint}. Requests: ${requests}, Limit: ${limit}));

    With server-side SDKs like @sentry/node, @sentry/bun or server-side of @sentry/nextjs or @sentry/sveltekit, you can do structured logging without needing the fmt helper function.

    const { info, warn } = Sentry.logger;
    info('User %s logged in successfully', [123]);
    warn('Failed to load user %s data', [123], { errorCode: 404 });

    To filter logs, or update them before they are sent to Sentry, you can use the _experiments.beforeSendLog option.

... (truncated)

Commits
  • 979fe8f release: 9.10.1
  • c72d02b Merge pull request #15910 from getsentry/prepare-release/9.10.1
  • 2139b59 meta(changelog): Update changelog for VERSION
  • bcb15ba deps: Bump bundler plugins to version 3.2.4 (#15909)
  • 4dc7006 Merge pull request #15876 from getsentry/master
  • dbde86c Merge branch 'release/9.10.0'
  • 791d9e3 fix: Correct @​sentry-internal/feedback docs to match the code (#15874)
  • e383fff release: 9.10.0
  • 03d4ab1 Merge pull request #15867 from getsentry/prepare-release/9.10.0
  • d430d96 meta(changelog): Update changelog for 9.10.0
  • Additional commits viewable in compare view

Updates @solid-primitives/memo from 1.4.0 to 1.4.1

Release notes

Sourced from @​solid-primitives/memo's releases.

@​solid-primitives/memo@​1.4.1

Patch Changes

  • d86e65d: fix createWritableMemo (fixes #772)
Commits

Updates @solidjs/router from 0.13.6 to 0.15.3

Changelog

Sourced from @​solidjs/router's changelog.

0.15.3

Patch Changes

  • 97184e4: more lenient on cache resuming (allow nested promises during hydration)

0.15.2

Patch Changes

  • fe5c83e: Add JSdoc
  • 9a5e350: Vite 6 compatibility
  • 20ad18f: only clear completed actions on navigation

0.15.1

Patch Changes

  • f3763aa: Export Submission at the top level
  • 813e6bd: fix onComplete return type

0.15.0

Minor Changes

  • 6799556: rename cache to query, action onComplete

0.14.10

Patch Changes

  • 18b9b52: Support arrays in Search Params
  • 272218f: fix #491 - useSubmission with "with" actions

0.14.9

Patch Changes

  • a22d7d2: fix preloadRoute to take string path
  • 6dd0473: support empty array/string to mean no revalidation

0.14.8

Patch Changes

  • a3a36fb: Add query and param wrappers to support non-Proxy envs
  • 2475851: bump deps
  • 2f1fa18: improve anchor preload performance

0.14.7

... (truncated)

Commits

Updates @tanstack/solid-query from 5.66.2 to 5.71.1

Release notes

Sourced from @​tanstack/solid-query's releases.

v5.71.1

Version 5.71.1 - 3/31/25, 8:35 AM

Changes

Fix

  • Prevent redundant function call error in dev mode (#8877) (610ba68) by Daniel Osmond

Test

  • react-query: fix async to promise (#8889) (cf7b375) by MINSEONG KIM
  • react-query: resolve ESLint typescript-eslint/require-await warnings (#8888) (bd4c8d1) by MINSEONG KIM
  • react-query: fix async to promise and remove unnecessary await (#8887) (517c490) by MINSEONG KIM
  • react-query: resolve ESLint typescript-eslint/require-await warnings (#8886) (627062b) by MINSEONG KIM
  • react-query: fix queryFn to use Promise.resolve to match TypeScript requirements (#8885) (5acf8e6) by MINSEONG KIM
  • react-query: use fake timers for useQuery.promise.test.tsx (#8890) (cd6c8c0) by MINSEONG KIM

Packages

  • @​tanstack/query-core@​5.71.1
  • @​tanstack/react-query@​5.71.1
  • @​tanstack/query-broadcast-client-experimental@​5.71.1
  • @​tanstack/query-persist-client-core@​5.71.1
  • @​tanstack/query-sync-storage-persister@​5.71.1
  • @​tanstack/react-query-devtools@​5.71.1
  • @​tanstack/react-query-persist-client@​5.71.1
  • @​tanstack/react-query-next-experimental@​5.71.1
  • @​tanstack/solid-query@​5.71.1
  • @​tanstack/solid-query-devtools@​5.71.1
  • @​tanstack/solid-query-persist-client@​5.71.1
  • @​tanstack/svelte-query@​5.71.1
  • @​tanstack/svelte-query-devtools@​5.71.1
  • @​tanstack/svelte-query-persist-client@​5.71.1
  • @​tanstack/vue-query@​5.71.1
  • @​tanstack/vue-query-devtools@​5.71.1
  • @​tanstack/angular-query-experimental@​5.71.1
  • @​tanstack/query-async-storage-persister@​5.71.1
  • @​tanstack/angular-query-devtools-experimental@​5.71.1

v5.71.0

Version 5.71.0 - 3/30/25, 12:53 PM

Changes

Feat

  • eslint-plugin: no void queryFn (#8878) (c2e5272) by Eliya Cohen

Test

... (truncated)

Commits

Updates @tanstack/solid-query-devtools from 5.66.2 to 5.71.1

Release notes

Sourced from @​tanstack/solid-query-devtools's releases.

v5.71.1

Version 5.71.1 - 3/31/25, 8:35 AM

Changes

Fix

  • Prevent redundant function call error in dev mode (#8877) (610ba68) by Daniel Osmond

Test

  • react-query: fix async to promise (#8889) (cf7b375) by MINSEONG KIM
  • react-query: resolve ESLint typescript-eslint/require-await warnings (#8888) (bd4c8d1) by MINSEONG KIM
  • react-query: fix async to promise and remove unnecessary await (#8887) (517c490) by MINSEONG KIM
  • react-query: resolve ESLint typescript-eslint/require-await warnings (#8886) (627062b) by MINSEONG KIM
  • react-query: fix queryFn to use Promise.resolve to match TypeScript requirements (#8885) (5acf8e6) by MINSEONG KIM
  • react-query: use fake timers for useQuery.promise.test.tsx (#8890) (cd6c8c0) by MINSEONG KIM

Packages

  • @​tanstack/query-core@​5.71.1
  • @​tanstack/react-query@​5.71.1
  • @​tanstack/query-broadcast-client-experimental@​5.71.1
  • @​tanstack/query-persist-client-core@​5.71.1
  • @​tanstack/query-sync-storage-persister@​5.71.1
  • @​tanstack/react-query-devtools@​5.71.1
  • @​tanstack/react-query-persist-client@​5.71.1
  • @​tanstack/react-query-next-experimental@​5.71.1
  • @​tanstack/solid-query@​5.71.1
  • @​tanstack/solid-query-devtools@​5.71.1
  • @​tanstack/solid-query-persist-client@​5.71.1
  • @​tanstack/svelte-query@​5.71.1
  • @​tanstack/svelte-query-devtools@​5.71.1
  • @​tanstack/svelte-query-persist-client@​5.71.1
  • @​tanstack/vue-query@​5.71.1
  • @​tanstack/vue-query-devtools@​5.71.1
  • @​tanstack/angular-query-experimental@​5.71.1
  • @​tanstack/query-async-storage-persister@​5.71.1
  • @​tanstack/angular-query-devtools-experimental@​5.71.1

v5.71.0

Version 5.71.0 - 3/30/25, 12:53 PM

Changes

Feat

  • eslint-plugin: no void queryFn (#8878) (c2e5272) by Eliya Cohen

Test

... (truncated)

Commits

Updates @tanstack/solid-virtual from 3.13.0 to 3.13.6

Release notes

Sourced from @​tanstack/solid-virtual's releases.

@​tanstack/solid-virtual@​3.13.6

Patch Changes

  • Updated dependencies [042616f]:
    • @​tanstack/virtual-core@​3.13.6

@​tanstack/solid-virtual@​3.13.5

Patch Changes

  • Updated dependencies [51656d9]:
    • @​tanstack/virtual-core@​3.13.5

@​tanstack/solid-virtual@​3.13.4

Patch Changes

@​tanstack/solid-virtual@​3.13.3

Patch Changes

  • Updated dependencies [02ef309]:
    • @​tanstack/virtual-core@​3.13.3
Changelog

Sourced from @​tanstack/solid-virtual's changelog.

3.13.6

Patch Changes

  • Updated dependencies [042616f]:
    • @​tanstack/virtual-core@​3.13.6

3.13.5

Patch Changes

  • Updated dependencies [51656d9]:
    • @​tanstack/virtual-core@​3.13.5

3.13.4

Patch Changes

3.13.3

Patch Changes

  • Updated dependencies [02ef309]:
    • @​tanstack/virtual-core@​3.13.3
Commits

Updates nostr-login from 1.7.6 to 1.7.11

Updates nostr-tools from 2.10.4 to 2.11.0

Commits
  • 9a612e5 update nip11 test.
  • 266dbdf nip27: rewrite to support urls and references in a simpler API for rich UIs.
  • 19ae983 nip19: decodeNostrURI() function that doesn't throw.
  • 4188f2c Generic repost
  • 97bded8 prevent a relay from eoseing then closing and causing pool handlers to fire t...
  • 174d36a nip07: remove getRelays()
  • 0177b13 nip55: remove getRelays()
  • 05eb62d support subscription label, not only an absolute id.
  • 3c4019a nip54 normalizeIdentifier function
  • e7e8db1 nip46: take EventTemplate instead of UnsignedEvent.
  • Additional commits viewable in compare view

Updates rxjs from 7.8.1 to 7.8.2

Changelog

Sourced from rxjs's changelog.

7.8.2 (2025-02-22)

Bug Fixes

  • animationFrameScheduler: some tasks are never flushed and sometimes it breaks completely (#7444) (8bbfa4e)
  • mergeWith: works correctly with an Array (#7281) (27855c6)
  • subscriber: strict type signature for next method (#7172) (0e2ef5e)
Commits
  • e5351d0 chore(publish): 7.8.2
  • 8bbfa4e fix(animationFrameScheduler): some tasks are never flushed and sometimes it b...
  • 4a2d0d2 docs(rxjs.dex): replace polyfill.io with a Cloudflare equivalent (#7487)
  • 2fb0740 chore: 7.x remove global npm install and ignore latest TS (#7398)
  • d69d890 docs: fix missing overloads in docs when overload count is less than 3 (#7367...
  • 27855c6 fix(mergeWith): works correctly with an Array (#7281)
  • 9db6563 docs: provide URL for the V8 docs app (#7244)
  • 5c3fb33 docs: add MonoTypeOperatorFunction documentation (#7284)
  • 0e2ef5e fix(subscriber): strict type signature for next method (#7172)
  • b6d00c1 docs: improve glossary and semantics page (#7267)
  • Additional commits viewable in compare view

Updates solid-js from 1.9.4 to 1.9.5

Commits

Updates @iconify-json/material-symbols from 1.2.14 to 1.2.17

Commits

Updates @types/serviceworker from 0.0.120 to 0.0.127

Release notes

Sourced from @​types/serviceworker's releases.

@​types/serviceworker@​0.0.127

index.d.ts

No changes

iterable.d.ts

No changes

@​types/serviceworker@​0.0.126

index.d.ts

New interfaces

  • AbortController
  • AbortSignal
  • Blob
  • BroadcastChannel
  • ByteLengthQueuingStrategy
  • CSSImageValue
  • CSSKeywordValue
  • CSSMathClamp
  • CSSMathInvert
  • CSSMathMax
  • CSSMathMin
  • CSSMathNegate
  • CSSMathProduct
  • CSSMathSum
  • CSSMathValue
  • CSSMatrixComponent
  • CSSNumericArray
  • CSSNumericValue
  • CSSPerspective
  • CSSRotate
  • CSSScale
  • CSSSkew
  • CSSSkewX
  • CSSSkewY
  • CSSStyleValue
  • CSSTransformComponent
  • CSSTransformValue
  • CSSTranslate
  • CSSUnitValue
  • CSSUnparsedValue
  • CSSVariableReferenceValue
  • Cache
  • CacheStorage
  • CanvasGradient
  • CanvasPattern
  • Client

... (truncated)

Commits

Updates solid-devtools from 0.33.0 to 0.34.0

Release notes

Sourced from solid-devtools's releases.

solid-devtools@0.34.0

Minor Changes

  • 95b348b: Add setElementInterface funtion to setup to support custom renderers (closes #343)

Patch Changes

  • 05163c3: fix: babel plugin resolution by importing @​babel/plugin-syntax-typescript instead of passing it as a string
  • Updated dependencies [370c545]
  • Updated dependencies [95b348b]
  • Updated dependencies [a72919e]
    • @​solid-devtools/debugger@​0.27.0
    • @​solid-devtools/shared@​0.19.1
Commits
  • bc48079 Version Packages (#341)
  • 5ebc121 Version Packages
  • e28f37a Support custom renderers (#345)
  • e364a4e Add docs about supporting custom renderers
  • 95b348b Add setElementInterface function to setup to support custom renderers
  • 370c545 Remove element field from SourceCodeData
  • 9e1fa49 Undo unrelated serialize logic change
  • 436c636 Fix import
  • d1988bc Use element interface when serializing values
  • e3aadc5 Some fixes
  • Additional commits viewable in compare view

Updates typescript from 5.7.3 to 5.8.2

Release notes

Sourced from typescript's releases.

TypeScript 5.8

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8 RC

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8 Beta

For release notes, check out the release announcement.

Downloads are available on:

Commits
  • beb69e4 Bump version to 5.8.2 and LKG
  • 8fdbd54 🤖 Pick PR #61210 (Fix mistakenly disallowed default e...) into release-5.8 (#...
  • f4a3a8a 🤖 Pick PR #61175 (Ban import=require and export= unde...) into release-5.8 (#...
  • 420ff06 Bump version to 5.8.1-rc and LKG
  • 48eb13f Update LKG
  • fb59c19 Merge remote-tracking branch 'origin/main' into release-5.8
  • df342b7 Fixed rewriteRelativeImportExtensions for import() within call expression...
  • 775412a Bump github/codeql-action from 3.28.8 to 3.28.9 in the github-actions group (...
  • e1629e5 Pass ignoreErrors=true to more resolveEntityName callers (#61144)
  • 6fd1799 Update LKG
  • Additional commits viewable in compare view

Updates vite from 6.1.0 to 6.2.4

Release notes

Sourced from vite's releases.

v6.2.4

Please refer to CHANGELOG.md for details.

v6.2.3

Please refer to CHANGELOG.md for details.

v6.2.2

Please refer to CHANGELOG.md for details.

create-vite@6.2.1

Please refer to CHANGELOG.md for details.

v6.2.1

Please refer to CHANGELOG.md for details.

create-vite@6.2.0

Please refer to CHANGELOG.md for details.

v6.2.0

Please refer to CHANGELOG.md for details.

v6.2.0-beta.1

Please refer to CHANGELOG.md for details.

v6.2.0-beta.0

Please refer to CHANGELOG.md for details.

v6.1.3

Please refer to CHANGELOG.md for details.

v6.1.2

Please refer to CHANGELOG.md for details.

create-vite@6.1.1

Please refer to CHANGELOG.md for details.

v6.1.1

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

6.2.4 (2025-03-31)

6.2.3 (2025-03-24)

6.2.2 (2025-03-14)

  • fix: await client buildStart on top level buildStart (#19624) (b31faab), closes #19624
  • fix(css): inline css correctly for double quote use strict (#19590) (d0aa833), closes #19590
  • fix(deps): update all non-major dependencies (#19613) (363d691), closes #19613
  • fix(indexHtml): ensure correct URL when querying module graph (#19601) (dc5395a), closes #19601
  • fix(preview): use preview https config, not server (

…ates

Bumps the non-majors group with 20 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@kobalte/core](https://github.com/kobaltedev/kobalte) | `0.13.8` | `0.13.9` |
| [@modular-forms/solid](https://github.com/fabian-hiller/modular-forms) | `0.25.0` | `0.25.1` |
| [@rust-nostr/nostr-sdk](https://github.com/rust-nostr/nostr-sdk-js) | `0.39.0` | `0.40.2` |
| [@sentry/solid](https://github.com/getsentry/sentry-javascript) | `9.1.0` | `9.10.1` |
| [@solid-primitives/memo](https://github.com/solidjs-community/solid-primitives) | `1.4.0` | `1.4.1` |
| [@solidjs/router](https://github.com/solidjs/solid-router) | `0.13.6` | `0.15.3` |
| [@tanstack/solid-query](https://github.com/TanStack/query/tree/HEAD/packages/solid-query) | `5.66.2` | `5.71.1` |
| [@tanstack/solid-query-devtools](https://github.com/TanStack/query/tree/HEAD/packages/solid-query-devtools) | `5.66.2` | `5.71.1` |
| [@tanstack/solid-virtual](https://github.com/TanStack/virtual/tree/HEAD/packages/solid-virtual) | `3.13.0` | `3.13.6` |
| nostr-login | `1.7.6` | `1.7.11` |
| [nostr-tools](https://github.com/nbd-wtf/nostr-tools) | `2.10.4` | `2.11.0` |
| [rxjs](https://github.com/reactivex/rxjs) | `7.8.1` | `7.8.2` |
| [solid-js](https://github.com/solidjs/solid) | `1.9.4` | `1.9.5` |
| [@iconify-json/material-symbols](https://github.com/iconify/icon-sets) | `1.2.14` | `1.2.17` |
| [@types/serviceworker](https://github.com/microsoft/TypeScript-DOM-Lib-Generator) | `0.0.120` | `0.0.127` |
| [solid-devtools](https://github.com/thetarnav/solid-devtools) | `0.33.0` | `0.34.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.7.3` | `5.8.2` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `6.1.0` | `6.2.4` |
| [vite-plugin-solid](https://github.com/solidjs/vite-plugin-solid) | `2.11.1` | `2.11.6` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `3.0.5` | `3.1.1` |



Updates `@kobalte/core` from 0.13.8 to 0.13.9
- [Release notes](https://github.com/kobaltedev/kobalte/releases)
- [Commits](https://github.com/kobaltedev/kobalte/compare/@kobalte/core@0.13.8...@kobalte/core@0.13.9)

Updates `@modular-forms/solid` from 0.25.0 to 0.25.1
- [Release notes](https://github.com/fabian-hiller/modular-forms/releases)
- [Commits](https://github.com/fabian-hiller/modular-forms/commits)

Updates `@rust-nostr/nostr-sdk` from 0.39.0 to 0.40.2
- [Release notes](https://github.com/rust-nostr/nostr-sdk-js/releases)
- [Changelog](https://github.com/rust-nostr/nostr-sdk-js/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rust-nostr/nostr-sdk-js/commits/v0.40.2)

Updates `@sentry/solid` from 9.1.0 to 9.10.1
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@9.1.0...9.10.1)

Updates `@solid-primitives/memo` from 1.4.0 to 1.4.1
- [Release notes](https://github.com/solidjs-community/solid-primitives/releases)
- [Commits](https://github.com/solidjs-community/solid-primitives/compare/@solid-primitives/memo@1.4.0...@solid-primitives/memo@1.4.1)

Updates `@solidjs/router` from 0.13.6 to 0.15.3
- [Changelog](https://github.com/solidjs/solid-router/blob/main/CHANGELOG.md)
- [Commits](https://github.com/solidjs/solid-router/commits)

Updates `@tanstack/solid-query` from 5.66.2 to 5.71.1
- [Release notes](https://github.com/TanStack/query/releases)
- [Commits](https://github.com/TanStack/query/commits/v5.71.1/packages/solid-query)

Updates `@tanstack/solid-query-devtools` from 5.66.2 to 5.71.1
- [Release notes](https://github.com/TanStack/query/releases)
- [Commits](https://github.com/TanStack/query/commits/v5.71.1/packages/solid-query-devtools)

Updates `@tanstack/solid-virtual` from 3.13.0 to 3.13.6
- [Release notes](https://github.com/TanStack/virtual/releases)
- [Changelog](https://github.com/TanStack/virtual/blob/main/packages/solid-virtual/CHANGELOG.md)
- [Commits](https://github.com/TanStack/virtual/commits/@tanstack/solid-virtual@3.13.6/packages/solid-virtual)

Updates `nostr-login` from 1.7.6 to 1.7.11

Updates `nostr-tools` from 2.10.4 to 2.11.0
- [Release notes](https://github.com/nbd-wtf/nostr-tools/releases)
- [Commits](nbd-wtf/nostr-tools@v2.10.4...v2.11.0)

Updates `rxjs` from 7.8.1 to 7.8.2
- [Release notes](https://github.com/reactivex/rxjs/releases)
- [Changelog](https://github.com/ReactiveX/rxjs/blob/7.8.2/CHANGELOG.md)
- [Commits](ReactiveX/rxjs@7.8.1...7.8.2)

Updates `solid-js` from 1.9.4 to 1.9.5
- [Release notes](https://github.com/solidjs/solid/releases)
- [Changelog](https://github.com/solidjs/solid/blob/main/CHANGELOG.md)
- [Commits](solidjs/solid@v1.9.4...v1.9.5)

Updates `@iconify-json/material-symbols` from 1.2.14 to 1.2.17
- [Commits](https://github.com/iconify/icon-sets/commits)

Updates `@types/serviceworker` from 0.0.120 to 0.0.127
- [Release notes](https://github.com/microsoft/TypeScript-DOM-Lib-Generator/releases)
- [Commits](https://github.com/microsoft/TypeScript-DOM-Lib-Generator/compare/@types/serviceworker@0.0.120...@types/serviceworker@0.0.127)

Updates `solid-devtools` from 0.33.0 to 0.34.0
- [Release notes](https://github.com/thetarnav/solid-devtools/releases)
- [Commits](https://github.com/thetarnav/solid-devtools/compare/solid-devtools@0.33.0...solid-devtools@0.34.0)

Updates `typescript` from 5.7.3 to 5.8.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](microsoft/TypeScript@v5.7.3...v5.8.2)

Updates `vite` from 6.1.0 to 6.2.4
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v6.2.4/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v6.2.4/packages/vite)

Updates `vite-plugin-solid` from 2.11.1 to 2.11.6
- [Release notes](https://github.com/solidjs/vite-plugin-solid/releases)
- [Changelog](https://github.com/solidjs/vite-plugin-solid/blob/main/CHANGELOG.md)
- [Commits](https://github.com/solidjs/vite-plugin-solid/compare/vite-plugin-solid@2.11.1...vite-plugin-solid@2.11.6)

Updates `vitest` from 3.0.5 to 3.1.1
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v3.1.1/packages/vitest)

---
updated-dependencies:
- dependency-name: "@kobalte/core"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-majors
- dependency-name: "@modular-forms/solid"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-majors
- dependency-name: "@rust-nostr/nostr-sdk"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: "@sentry/solid"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: "@solid-primitives/memo"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-majors
- dependency-name: "@solidjs/router"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: "@tanstack/solid-query"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: "@tanstack/solid-query-devtools"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: "@tanstack/solid-virtual"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-majors
- dependency-name: nostr-login
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-majors
- dependency-name: nostr-tools
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: rxjs
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-majors
- dependency-name: solid-js
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-majors
- dependency-name: "@iconify-json/material-symbols"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-majors
- dependency-name: "@types/serviceworker"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-majors
- dependency-name: solid-devtools
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-majors
- dependency-name: vite-plugin-solid
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: non-majors
- dependency-name: vitest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: non-majors
...

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 Apr 1, 2025
@vercel
Copy link

vercel bot commented Apr 1, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
streets ❌ Failed (Inspect) Apr 1, 2025 11:30am

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