1 hours ago
fluentui

@fluentui/react-docsite-components v8.16.5

Patches

  • Bump @fluentui/react-monaco-editor to v1.8.9 (PR #36209 by radium-v)
1 hours ago
fluentui

@fluentui/react-monaco-editor v1.8.9

Patches

  • Bump @fluentui/react-charting to v5.25.9 (PR #36209 by radium-v)
1 hours ago
fluentui

@fluentui/react-charting v5.25.9

Patches

  • safeurl related bug fix (PR #36121 by v-baambati)
3 hours ago
next.js

v16.3.0-canary.23

Core Changes

  • [Turbopack] Add graph-based CSS chunking algorithm behind experimental.cssChunking: "graph": #93606

Misc Changes

  • Convert more tests from createNext -> nextTestSetup: #93799
  • turbopack: emit assets before duplicate check in emit_assets: #93875
  • [test] split og-api test suite into default and standalone variants: #93915
  • Pass projectDir to adapter modifyConfig: #93916
  • Distinguish in-navigation errors in the instant error overlay: #93843
  • Eval next.config export functions in the try catch: #93884
  • Rename TaskExecutionReason::Initial to Root: #93922

Credits

Huge thanks to @timneutkens, @sokra, @unstubbable, @mischnic, @aurorascharff, and @lukesandberg for helping!

6 hours ago
query

Release 2026-05-18 19:48

Release 2026-05-18 19:48

Changes

Fix

  • vue-query: allow computed ref as queryKey property in queryOptions (#10530) (139e67cca) by @KimHyeongRae0
  • vue-query-devtools: use class attribute in templates (#10635) (299447b06) by @grzdev

Chore

  • add CODEOWNERS file (#10703) (65b9b7271) by @crutchcorn
  • change pull_request_target to pull_request event for labeler workflow (65b8e3122)

Packages

  • @tanstack/angular-query-experimental@5.100.11
  • @tanstack/eslint-plugin-query@5.100.11
  • @tanstack/lit-query@0.2.2
  • @tanstack/preact-query@5.100.11
  • @tanstack/preact-query-devtools@5.100.11
  • @tanstack/preact-query-persist-client@5.100.11
  • @tanstack/query-async-storage-persister@5.100.11
  • @tanstack/query-broadcast-client-experimental@5.100.11
  • @tanstack/query-core@5.100.11
  • @tanstack/query-devtools@5.100.11
  • @tanstack/query-persist-client-core@5.100.11
  • @tanstack/query-sync-storage-persister@5.100.11
  • @tanstack/react-query@5.100.11
  • @tanstack/react-query-devtools@5.100.11
  • @tanstack/react-query-next-experimental@5.100.11
  • @tanstack/react-query-persist-client@5.100.11
  • @tanstack/solid-query@5.100.11
  • @tanstack/solid-query-devtools@5.100.11
  • @tanstack/solid-query-persist-client@5.100.11
  • @tanstack/svelte-query@6.1.30
  • @tanstack/svelte-query-devtools@6.1.30
  • @tanstack/svelte-query-persist-client@6.1.30
  • @tanstack/vue-query@5.100.11
  • @tanstack/vue-query-devtools@6.1.30
6 hours ago
react-query

Release 2026-05-18 19:48

Release 2026-05-18 19:48

Changes

Fix

  • vue-query: allow computed ref as queryKey property in queryOptions (#10530) (139e67cca) by @KimHyeongRae0
  • vue-query-devtools: use class attribute in templates (#10635) (299447b06) by @grzdev

Chore

  • add CODEOWNERS file (#10703) (65b9b7271) by @crutchcorn
  • change pull_request_target to pull_request event for labeler workflow (65b8e3122)

Packages

  • @tanstack/angular-query-experimental@5.100.11
  • @tanstack/eslint-plugin-query@5.100.11
  • @tanstack/lit-query@0.2.2
  • @tanstack/preact-query@5.100.11
  • @tanstack/preact-query-devtools@5.100.11
  • @tanstack/preact-query-persist-client@5.100.11
  • @tanstack/query-async-storage-persister@5.100.11
  • @tanstack/query-broadcast-client-experimental@5.100.11
  • @tanstack/query-core@5.100.11
  • @tanstack/query-devtools@5.100.11
  • @tanstack/query-persist-client-core@5.100.11
  • @tanstack/query-sync-storage-persister@5.100.11
  • @tanstack/react-query@5.100.11
  • @tanstack/react-query-devtools@5.100.11
  • @tanstack/react-query-next-experimental@5.100.11
  • @tanstack/react-query-persist-client@5.100.11
  • @tanstack/solid-query@5.100.11
  • @tanstack/solid-query-devtools@5.100.11
  • @tanstack/solid-query-persist-client@5.100.11
  • @tanstack/svelte-query@6.1.30
  • @tanstack/svelte-query-devtools@6.1.30
  • @tanstack/svelte-query-persist-client@6.1.30
  • @tanstack/vue-query@5.100.11
  • @tanstack/vue-query-devtools@6.1.30
6 hours ago
react-query

@tanstack/svelte-query-devtools@6.1.30

Patch Changes

  • Updated dependencies []:
    • @tanstack/query-devtools@5.100.11
    • @tanstack/svelte-query@6.1.30
6 hours ago
react-query

@tanstack/vue-query@5.100.11

Patch Changes

  • fix(vue-query): allow reactive and getter values as queryKey property in queryOptions (#10530)

    This fixes a regression introduced in #10452 where queryOptions only accepted plain arrays for the queryKey property, but not computed refs, Ref values, or getter functions. The related fix in #10465 only covered the enabled property.

    Now the queryKey property in queryOptions accepts the same reactive forms as enabled:

    • Plain QueryKey arrays
    • Ref<QueryKey>
    • ComputedRef<QueryKey>
    • () => QueryKey (getter)
  • Updated dependencies []:

    • @tanstack/query-core@5.100.11
6 hours ago
react-query

@tanstack/svelte-query@6.1.30

Patch Changes

  • Updated dependencies []:
    • @tanstack/query-core@5.100.11
6 hours ago
react-query

@tanstack/vue-query-devtools@6.1.30

Patch Changes

  • Use the Vue class attribute for devtools template containers. (#10635)

  • Updated dependencies [139e67c]:

    • @tanstack/vue-query@5.100.11
    • @tanstack/query-devtools@5.100.11