Skip to content

chore(deps): bump the minor-patch group across 1 directory with 3 updates - #2

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/minor-patch-5ae7351b60
Closed

chore(deps): bump the minor-patch group across 1 directory with 3 updates#2
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/minor-patch-5ae7351b60

Conversation

@dependabot

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

Copy link
Copy Markdown

Bumps the minor-patch group with 3 updates in the / directory: better-sqlite3, svelte-sonner and tsc-alias.

Updates better-sqlite3 from 12.6.2 to 12.11.1

Release notes

Sourced from better-sqlite3's releases.

v12.11.1

What's Changed

Full Changelog: WiseLibs/better-sqlite3@v12.11.0...v12.11.1

v12.11.0

⚠️CAUTION: NOT A VIABLE RELEASE

Use v12.11.1 instead.

What's Changed

Full Changelog: WiseLibs/better-sqlite3@v12.10.1...v12.11.0

v12.10.1

What's Changed

Full Changelog: WiseLibs/better-sqlite3@v12.10.0...v12.10.1

v12.10.0

What's Changed

Full Changelog: WiseLibs/better-sqlite3@v12.9.1...v12.10.0

v12.9.1

⚠️CAUTION: NOT A VIABLE RELEASE

Electron v39+ prebuilds are not building successfully at the moment. Stick to v12.9.0 for now.

What's Changed

New Contributors

Full Changelog: WiseLibs/better-sqlite3@v12.9.0...v12.9.1

... (truncated)

Commits

Updates svelte-sonner from 1.1.1 to 1.2.1

Release notes

Sourced from svelte-sonner's releases.

v1.2.1

Patch Changes

  • f506748: fix: firefox mouseleave firing when mouse doesn't move

v1.2.0

Features

  • Multiple toasters. Give a toaster an id and target it with toast(..., { toasterId }). An id on <Toaster /> now identifies the toaster instead of landing on the <ol> element.
  • The gap prop is used in the toast offset math.
  • toastOptions.closeButton is now honored.

Fixes

  • Ported the bug-fix batch from emilkowalski/sonner#777. Custom icons no longer render twice in promise toasts, fast flicks can't dismiss in a direction not in swipeDirections, icons are hidden from assistive technology, content takes the full toast width, and toasts created before the <Toaster /> mounts are no longer lost.
  • Reusing the id of a dismissed toast creates a fresh toast instead of inheriting its old props, and a toast recreated right after dismissal is no longer killed by the pending removal or the old auto-close timer.
  • Styles moved from svelte-preprocess <style global> to a native Svelte 5 :global block, fixing crashes with the latest @sveltejs/vite-plugin-svelte and @tailwindcss/vite.
  • Fixed a setHeight crash (Cannot read properties of undefined) when many toasts were created and dismissed quickly, and a negative heightIndex briefly producing wrong offsets.
  • Fast flicks below the swipe distance threshold can now dismiss, height entries keep the right order when several toasts mount at once, and toast.custom() keeps an explicit id of 0.
Changelog

Sourced from svelte-sonner's changelog.

1.2.1

Patch Changes

  • f506748: fix: firefox mouseleave firing when mouse doesn't move

1.2.0

Minor Changes

  • 7312f33: feat: support multiple toasters via <Toaster id="..." /> and toast(..., { toasterId }) (matching upstream sonner semantics: a toaster without an id renders only toasts without a toasterId), use the gap prop in the toast offset math instead of a hardcoded value, and honor toastOptions.closeButton. Note: an id passed to <Toaster /> now identifies the toaster instead of landing on the <ol> element

Patch Changes

  • 7fbbc1c: fix: guard heightIndex against a not-found (-1) result

    Toast.svelte computed heightIndex as heights.findIndex(...) || 0. When a toast has no measured height entry yet, findIndex returns -1, and -1 || 0 evaluates to -1 (since -1 is truthy). That negative index then fed the offset calculation (heightIndex * GAP) and the reducerIndex >= heightIndex guard, producing incorrect stacking offsets in the brief window before a toast's height is measured. Replaced the || 0 fallback with an explicit === -1 ? 0 : idx check.

  • 32b4655: fix: prevent Cannot read properties of undefined (reading 'toastId') crash from setHeight

    setHeight looked up a toast's position in this.toasts (via #findToastIdx) and then used that integer to write into this.heights. The two arrays grow independently (toasts is unshifted, heights is pushed; remove() splices toasts but only removeHeight() filters heights), so the indices drift out of sync. When toastIdx >= heights.length, this.heights[toastIdx] = data created a sparse array with undefined holes, and a subsequent heights.findIndex((h) => h.toastId === ...) then dereferenced the hole and threw TypeError: Cannot read properties of undefined (reading 'toastId'), white-screening the host app.

    Fixed by searching heights directly by toastId (mirroring removeHeight) via a dedicated #findHeightIdx helper, so the index always refers to the correct array. The lookup is wrapped in untrack because setHeight runs inside a $effect; a tracked read of this.heights would re-trigger that effect on the following write and hit effect_update_depth_exceeded.

  • 7312f33: fix: replace the svelte-preprocess <style global> block with a native Svelte 5 :global block so the published component compiles with the latest @sveltejs/vite-plugin-svelte (fixes crashes with @tailwindcss/vite CSS extraction)

  • 6084611: fix: record the drag start time so a fast flick below the distance threshold can dismiss a toast, reset the auto-close timer when a dismissed toast id is recreated in the same tick, keep height entries in newest-first order when several toasts mount together, and fully reset gesture state when a toast is revived mid-exit

  • emilkowalski/sonner#777swipeDirections (which is now actually passed down from the Toaster), decorative icons are hidden from assistive technology, toast content takes the full toast width, toast.custom() keeps an explicit id of 0, toasts created before the <Toaster /> mounts are no longer lost, a new toast reusing the id of a dismissed toast no longer inherits its props, and a toast recreated right after being dismissed is no longer removed by the pending dismissal

Commits
  • 146b1f1 Merge pull request #207 from wobsoriano/changeset-release/main
  • e4f035d docs: add SvelteKit ssr.noExternal troubleshooting note (#166)
  • 676aac9 Version Packages
  • e480ec9 Merge pull request #165 from huntabyte/fix/149
  • 3aa8a07 Merge pull request #205 from wobsoriano/changeset-release/main
  • 1a8583a Version Packages
  • fbe8cca Merge pull request #206 from wobsoriano/sync-upstream-777
  • 6084611 fix: address review findings (drag velocity, same-tick recreate timer, batche...
  • 139de50 chore: clean up comments and test types
  • 3b3d2d7 test: add browser-level parity tests for sonner#777 fixes, split unit specs, ...
  • Additional commits viewable in compare view

Updates tsc-alias from 1.9.1 to 1.9.2

Release notes

Sourced from tsc-alias's releases.

v1.9.2 (2026-08-17)

Full Changelog: justkey007/tsc-alias@v1.9.1...v1.9.2

Fix #263

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…ates

Bumps the minor-patch group with 3 updates in the / directory: [better-sqlite3](https://github.com/WiseLibs/better-sqlite3), [svelte-sonner](https://github.com/wobsoriano/svelte-sonner) and [tsc-alias](https://github.com/justkey007/tsc-alias).


Updates `better-sqlite3` from 12.6.2 to 12.11.1
- [Release notes](https://github.com/WiseLibs/better-sqlite3/releases)
- [Commits](WiseLibs/better-sqlite3@v12.6.2...v12.11.1)

Updates `svelte-sonner` from 1.1.1 to 1.2.1
- [Release notes](https://github.com/wobsoriano/svelte-sonner/releases)
- [Changelog](https://github.com/wobsoriano/svelte-sonner/blob/main/CHANGELOG.md)
- [Commits](wobsoriano/svelte-sonner@v1.1.1...v1.2.1)

Updates `tsc-alias` from 1.9.1 to 1.9.2
- [Release notes](https://github.com/justkey007/tsc-alias/releases)
- [Commits](justkey007/tsc-alias@v1.9.1...v1.9.2)

---
updated-dependencies:
- dependency-name: better-sqlite3
  dependency-version: 12.11.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: svelte-sonner
  dependency-version: 1.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: tsc-alias
  dependency-version: 1.9.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-patch
...

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 Aug 20, 2026
@dependabot @github

dependabot Bot commented on behalf of github Aug 27, 2026

Copy link
Copy Markdown
Author

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Aug 27, 2026
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/minor-patch-5ae7351b60 branch August 27, 2026 23:25
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