3 hours ago
router

v1.140.1

Version 1.140.1 - 12/9/25, 8:18 PM

Changes

Fix

  • commit route context (#6053) (e681a56) by Manuel Schiller

Docs

  • fix database guide example to match Server Functions API (#5716) (98dc050) by @morinokami

Packages

  • @tanstack/router-core@1.140.1
  • @tanstack/solid-router@1.140.1
  • @tanstack/react-router@1.140.1
  • @tanstack/vue-router@1.140.1
  • @tanstack/solid-router-ssr-query@1.140.1
  • @tanstack/react-router-ssr-query@1.140.1
  • @tanstack/vue-router-ssr-query@1.140.1
  • @tanstack/router-ssr-query-core@1.140.1
  • @tanstack/zod-adapter@1.140.1
  • @tanstack/valibot-adapter@1.140.1
  • @tanstack/arktype-adapter@1.140.1
  • @tanstack/router-devtools@1.140.1
  • @tanstack/solid-router-devtools@1.140.1
  • @tanstack/react-router-devtools@1.140.1
  • @tanstack/vue-router-devtools@1.140.1
  • @tanstack/router-devtools-core@1.140.1
  • @tanstack/router-generator@1.140.1
  • @tanstack/router-cli@1.140.1
  • @tanstack/router-plugin@1.140.1
  • @tanstack/router-vite-plugin@1.140.1
  • @tanstack/solid-start@1.140.1
  • @tanstack/solid-start-client@1.140.1
  • @tanstack/solid-start-server@1.140.1
  • @tanstack/start-client-core@1.140.1
  • @tanstack/start-server-core@1.140.1
  • @tanstack/start-storage-context@1.140.1
  • @tanstack/react-start@1.140.1
  • @tanstack/react-start-client@1.140.1
  • @tanstack/react-start-server@1.140.1
  • @tanstack/start-plugin-core@1.140.1
  • @tanstack/start-static-server-functions@1.140.1
5 hours ago
react-grid-layout

2.0.0

Uncategorized
  • React 18 dev upgrade
    • PR: #2049
  • chore: migrate ESLint to v9 with flat config
    • PR: #2181
  • RGL v2
    • PR: #2183
6 hours ago
ui

shadcn@3.5.2

Patch Changes

6 hours ago
drawio
10 hours ago
jotai

v2.16.0

This version deprecates atomFamily in jotai/utils in favor of jotai-family, and includes some internal changes.

What's Changed

Full Changelog: https://github.com/pmndrs/jotai/compare/v2.15.2...v2.16.0

11 hours ago
vuetify

v3.11.3

🔧 Bug Fixes

  • fields: clean up aria attributes (#22418) (054dbf4)
  • types: support strict TS checks in templates (#22395) (02710a6)
  • v-ripple: remove mousedown and keydown listeners on unmount (278a7e9)
  • VAppBar: prevent navbar pop-up when reaching page bottom (#22224) (8da1495), closes #20352
  • VAutocomplete, VCombobox: skip subheader for auto-select-first (#22402) (9edd98c), closes #22398
  • VBtn: keep all styles within CSS layer (c794da1)
  • VColorPicker: render inner outlines in forced-colors mode (#22317) (c61c0d3)
  • VDataTable: selecting group should respect selectable prop (#22410) (e295fa6), closes #22409
  • VDataTable: typo in header field intent » indent (f44b2fd)
  • VDataTableFooter: correct placement of aria label (#22359) (137cb95), closes #20896
  • VDatePicker: correct year and month for jalali (41067af), closes #22417
  • VDatePicker: correct next year button disabled condition (04a4608), closes #22408
  • VHotkey: avoid build errors when customizing VKbd sass variables (fa1fb4f), closes #22372
  • VInput: prioritize slots over prepend/append icons (#22406) (2a998ee), closes #22332
  • VNumberInput: clean up listeners on unmount (045bbaf)
  • VOtpInput: apply rounded prop to inner fields (#21499) (f49803a), closes #20286
  • VOverlay: clean up focus trap listeners and data on unmount (497ae4b), closes #22397
  • VSelect: don't skip continuing keyboard lookup match (f1f3c45), closes #22423
  • VSelects: no closable chips when readonly or disabled (#22368) (21c85eb), closes #22349
  • VSlider: clean up listeners on unmount (f2621a3)
  • VTextarea: avoid placeholder obstructing the label (27e854f), closes #22416
  • VTextArea/VSelects: help screen readers read field labels (#20339) (04b6725), closes #19155 #19156
  • VTimePicker: don't inherit defaults from VTextField (3ffa749), closes #22407
  • VTimePicker: clean up listeners on unmount (60183d7)
  • VTooltip: should be dismissable by default (#22419) (c5ae129), closes #21501
  • VVirtualScroll: show more than 1 element when min height is 0 (#22420) (08550fd)
  • VWindow: set transition-duration css variable (4676b6d)

🧪 Labs

  • VVideo: clean up listeners on unmount (0d37af0)
12 hours ago
engine

v2.14.3

Fixes

  • Fix uninitialized SplatCenter members in GLSL gsplat shader by @mvaligursky in #8237

Full Changelog: https://github.com/playcanvas/engine/compare/v2.14.2...v2.14.3

14 hours ago
G2

v5.4.7

What's Changed

Full Changelog: https://github.com/antvis/G2/compare/v5.4.6...v5.4.7

14 hours ago
rspack

v1.6.7

Highlights 💡

🎉 Support for import.meta.filename, import.meta.dirname, and import.meta.resolve

Rspack now supports the import.meta.filename, import.meta.dirname, and import.meta.resolve meta properties in ESM modules. These properties provide a standardized way to access file and directory paths in ES modules, similar to the CommonJS __filename and __dirname variables:

// Get the absolute path of the current module file
console.log(import.meta.filename);
// e.g., "/path/to/project/src/index.js"

// Get the directory path of the current module
console.log(import.meta.dirname);
// e.g., "/path/to/project/src"

// Resolve a module specifier to an absolute URL
const resolvedPath = import.meta.resolve('./utils.js');

Thanks to @magic-akari for this contribution!

What's Changed

New Features 🎉

Bug Fixes 🐞

Refactor 🔨

Other Changes

Full Changelog: https://github.com/web-infra-dev/rspack/compare/v1.6.6...v1.6.7

15 hours ago
hono

v4.10.8

What's Changed

New Contributors

Full Changelog: https://github.com/honojs/hono/compare/v4.10.7...v4.10.8