Skip to content

build(deps): bump the minor-and-patch group across 1 directory with 9 updates#417

Open
dependabot[bot] wants to merge 1 commit intostagingfrom
dependabot/npm_and_yarn/staging/minor-and-patch-1fe2e107e9
Open

build(deps): bump the minor-and-patch group across 1 directory with 9 updates#417
dependabot[bot] wants to merge 1 commit intostagingfrom
dependabot/npm_and_yarn/staging/minor-and-patch-1fe2e107e9

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 22, 2026

Bumps the minor-and-patch group with 9 updates in the / directory:

Package From To
@biomejs/biome 2.4.10 2.4.12
@json-render/core 0.2.0 0.18.0
@opentelemetry/sdk-node 0.210.0 0.215.0
keypal 0.1.11 0.2.0
@cossistant/next 0.0.29 0.2.0
@cossistant/react 0.0.29 0.2.0
@json-render/react 0.2.0 0.18.0
@tanstack/react-pacer 0.19.4 0.22.0
@anthropic-ai/sdk 0.39.0 0.90.0

Updates @biomejs/biome from 2.4.10 to 2.4.12

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.4.12

2.4.12

Patch Changes

  • #9376 9701a33 Thanks @​dyc3! - Added the nursery/noIdenticalTestTitle lint rule. This rule disallows using the same title for two describe blocks or two test cases at the same nesting level.

    describe("foo", () => {});
    describe("foo", () => {
      // invalid: same title as previous describe block
      test("baz", () => {});
      test("baz", () => {}); // invalid: same title as previous test case
    });
  • #9889 7ae83f2 Thanks @​dyc3! - Improved the diagnostics for useForOf to better explain the problem, why it matters, and how to fix it.

  • #9916 27dd7b1 Thanks @​Jayllyz! - Added a new nursery rule noComponentHookFactories, that disallows defining React components or custom hooks inside other functions.

    For example, the following snippets trigger the rule:

    function createComponent(label) {
      function MyComponent() {
        return <div>{label}</div>;
      }
      return MyComponent;
    }
    function Parent() {
      function Child() {
        return <div />;
      }
      return <Child />;
    }
  • #9980 098f1ff Thanks @​ematipico! - Fixed #9941: Biome now emits a warning diagnostic when a file exceed the files.maxSize limit.

  • #9942 9956f1d Thanks @​dyc3! - Fixed #9918: useConsistentTestIt no longer panics when applying fixes to chained calls such as test.for([])("x", () => {});.

  • #9891 4d9ac51 Thanks @​dyc3! - Improved the noGlobalObjectCalls diagnostic to better explain why calling global objects like Math or JSON is invalid and how to fix it.

  • #9902 3f4d103 Thanks @​ematipico! - Fixed #9901: the command lint --write is now idempotent when it's run against HTML-ish files that contains scripts and styles.

  • #9891 4d9ac51 Thanks @​dyc3! - Improved the noMultiStr diagnostic to explain why escaped multiline strings are discouraged and what to use instead.

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.4.12

Patch Changes

  • #9376 9701a33 Thanks @​dyc3! - Added the nursery/noIdenticalTestTitle lint rule. This rule disallows using the same title for two describe blocks or two test cases at the same nesting level.

    describe("foo", () => {});
    describe("foo", () => {
      // invalid: same title as previous describe block
      test("baz", () => {});
      test("baz", () => {}); // invalid: same title as previous test case
    });
  • #9889 7ae83f2 Thanks @​dyc3! - Improved the diagnostics for useForOf to better explain the problem, why it matters, and how to fix it.

  • #9916 27dd7b1 Thanks @​Jayllyz! - Added a new nursery rule noComponentHookFactories, that disallows defining React components or custom hooks inside other functions.

    For example, the following snippets trigger the rule:

    function createComponent(label) {
      function MyComponent() {
        return <div>{label}</div>;
      }
      return MyComponent;
    }
    function Parent() {
      function Child() {
        return <div />;
      }
      return <Child />;
    }
  • #9980 098f1ff Thanks @​ematipico! - Fixed #9941: Biome now emits a warning diagnostic when a file exceed the files.maxSize limit.

  • #9942 9956f1d Thanks @​dyc3! - Fixed #9918: useConsistentTestIt no longer panics when applying fixes to chained calls such as test.for([])("x", () => {});.

  • #9891 4d9ac51 Thanks @​dyc3! - Improved the noGlobalObjectCalls diagnostic to better explain why calling global objects like Math or JSON is invalid and how to fix it.

  • #9902 3f4d103 Thanks @​ematipico! - Fixed #9901: the command lint --write is now idempotent when it's run against HTML-ish files that contains scripts and styles.

  • #9891 4d9ac51 Thanks @​dyc3! - Improved the noMultiStr diagnostic to explain why escaped multiline strings are discouraged and what to use instead.

  • #9966 322675e Thanks @​siketyan! - Fixed #9113: Biome now parses and formats @media and other conditional blocks correctly inside embedded CSS snippets.

... (truncated)

Commits

Updates @json-render/core from 0.2.0 to 0.18.0

Release notes

Sourced from @​json-render/core's releases.

@​json-render/core@​0.16.0

Minor Changes

  • 519a538: Add Next.js renderer and shadcn-svelte component library.

    New:

    • @json-render/next -- Next.js renderer that turns JSON specs into full Next.js applications with routes, layouts, SSR, metadata, data loaders, and static generation. Client and server entry points at @json-render/next and @json-render/next/server. Includes built-in Link, Slot, error boundary, loading, and not-found components.
    • @json-render/shadcn-svelte -- Pre-built shadcn-svelte components for json-render Svelte apps. 36 components built on Svelte 5 + Tailwind CSS with state binding, validation, and action support. Server-safe catalog at @json-render/shadcn-svelte/catalog.

@​json-render/core@​0.15.0

Minor Changes

  • bf3a7ec: Add Ink terminal renderer for interactive terminal UIs.

    New:

    • @json-render/ink -- Terminal UI renderer for json-render, built on Ink. Includes 20+ standard components (Box, Text, Heading, Card, Table, TextInput, Select, MultiSelect, Tabs, etc.), action/validation/focus contexts, two-way state binding, and streaming via useUIStream. Server-safe entry points at @json-render/ink/schema, @json-render/ink/catalog, and @json-render/ink/server.

    Improved:

    • Examples -- new ink-chat terminal chat demo, game-engine 3D example using react-three-fiber, website examples page with live demos and search.

@​json-render/core@​0.14.1

Patch Changes

  • 43b7515: Add yaml format support to buildUserPrompt

    New:

    • buildUserPrompt now accepts format and serializer options, enabling YAML as a wire format alongside JSON

@​json-render/core@​0.14.0

Minor Changes

  • a8afd8b: Add YAML wire format package and universal edit modes for surgical spec refinement.

    New:

    • @json-render/yaml -- YAML wire format for json-render. Includes streaming YAML parser, yamlPrompt() for system prompts, and AI SDK transform (pipeYamlRender) as a drop-in alternative to JSONL streaming. Supports four fence types: yaml-spec, yaml-edit, yaml-patch, and diff.
    • Universal edit modes in @json-render/core -- three strategies for multi-turn spec refinement: patch (RFC 6902), merge (RFC 7396), and diff (unified diff). New editModes option on buildUserPrompt() and PromptOptions. New helpers: deepMergeSpec(), diffToPatches(), buildEditUserPrompt(), buildEditInstructions(), isNonEmptySpec().

    Improved:

    • Playground -- format toggle (JSONL / YAML), edit mode picker (patch / merge / diff), and token usage display with prompt caching stats.
    • Prompt caching -- generate API uses Anthropic ephemeral cache control for system prompts.
    • CI -- lint, type-check, and test jobs now run in parallel.

@​json-render/core@​0.13.0

Minor Changes

... (truncated)

Changelog

Sourced from @​json-render/core's changelog.

0.18.0

New Features

  • Devtools — Five new packages for inspecting json-render apps in the browser: @json-render/devtools (framework-agnostic core), plus @json-render/devtools-react, @json-render/devtools-vue, @json-render/devtools-svelte, and @json-render/devtools-solid adapters. Drop <JsonRenderDevtools /> into your app to get a shadow-DOM-isolated panel with six tabs (Spec, State, Actions, Stream, Catalog, Pick), a DOM picker that maps clicked elements back to spec keys via data-jr-key, a capped event store, and server-side stream tap utilities. Floating toggle or Cmd/Ctrl + Shift + J, tree-shakes to null in production (#273)
  • Devtools example — New examples/devtools Next.js demo showing the full devtools panel wired up to an AI chat endpoint and a component catalog (#273)
  • Action observer and devtools flag in core@json-render/core now exposes an action observer and a devtools enablement flag that adapters use to mirror actions and stream events into the panel (#273)

Bug Fixes

  • Zod 4 schema formattingformatZodType now correctly handles z.record(), z.default(), and z.literal() types from Zod 4, which previously produced incorrect or empty output in generated prompts and schemas (#239)

Improvements

  • Zod 4 test coverage — Added unit tests for formatZodType covering record, default, and literal types to guard against regressions (#272)

Contributors

0.17.0

New Features

  • Gaussian Splatting — Added GaussianSplat component to @json-render/react-three-fiber, bringing the component count to 20. Composable with all existing R3F components (lights, controls, post-processing) via drei's Splat loader (#259)
  • Standalone gsplat example — Experimental demo app showcasing Gaussian Splatting with gsplat.js (no Three.js dependency), featuring scene selector, live JSON spec viewer, and progress indicator (#259)
  • R3F gsplat example — Demo app with five scenes: splat showroom, splat with primitives, multi-splat, post-processing effects, and animated floating splat (#259)

Improved

  • AI output quality — Improved prompt output and schema generation for more reliable AI-generated specs (#268)

Contributors

0.16.0

Improved

  • Release process — Switched from Changesets to a manual single-PR release workflow with changelog markers and automatic npm publish on version bump
Commits
Maintainer changes

This version was pushed to npm by vercel-release-bot, a new releaser for @​json-render/core since your current version.


Updates @opentelemetry/sdk-node from 0.210.0 to 0.215.0

Release notes

Sourced from @​opentelemetry/sdk-node's releases.

experimental/v0.215.0

0.215.0

💥 Breaking Changes

  • feat(sdk-logs)!: add required forceFlush() to LogRecordExporter interface #6356 @​pichlermarc
    • (user-facing): LogRecordExporter interface now requires a forceFlush() method to be implemented. Custom exporters will need to implement this method to continue working with the Logs SDK.
  • feat(api-logs, sdk-logs)!: add Logger#enabled() #6371 @​david-luna

🚀 Features

🐛 Bug Fixes

  • fix(instrumentation-fetch): preserve init overrides when input is a Request object #6421 @​akandic47
  • fix(otlp-exporter-base): limit Node.js HTTP transport response body to 4 MiB #6552 @​kartikgola
  • fix(instrumentation-fetch): avoid unwrapping fetch API when disabling #6575 @​david-luna
  • fix(web-common): add check for possible unsafe json parse #6589 @​maryliag
  • fix(otlp-transformer): add check for possible unsafe json parse #6588 @​maryliag

experimental/v0.214.0

0.214.0

💥 Breaking Changes

  • feat(configuration)!: rename OTEL_EXPERIMENTAL_CONFIG_FILE to OTEL_CONFIG_FILE #6486 @​maryliag
  • refactor!(otlp-grpc-exporter-base): remove headers from gRPC exporter config type, passing headers now results in a compile-time error instead of being silently ignored #6487

🚀 Features

🐛 Bug Fixes

  • fix(opentelemetry-instrumentation): access require via globalThis to avoid webpack analysis #6481 @​overbalance
  • fix(sdk-logs): fix inflated droppedAttributesCount when updating existing attribute keys #6479 @​overbalance
  • fix(instrumentation-fetch): do not modify the returned type of fetch #6521 @​dyladan
  • fix(opentelemetry-sdk-node): add missing @opentelemetry/otlp-exporter-base dependency #6520 @​gotgenes

🏠 Internal

... (truncated)

Commits
  • a0476ee chore: prepare next release (#6603)
  • 6bc69c7 fix(instr-fetch): avoid unwrap fetch API (#6575)
  • 840f3d4 chore: re-arrange misplaced changelog entries (#6604)
  • 2da8d39 feat(configuration): refactoring config loader to print warning message for b...
  • 401af13 fix(deps): update dependency protobufjs to v8 (#6602)
  • 36e2a9a fix(opentelemetry-core): add extra checks on internal merge function for safe...
  • 8ee2a8b fix(web-common): add check for possible unsafe json parse (#6589)
  • f40fd24 fix(otlp-transformer): add check for possible unsafe json parse (#6588)
  • 394eeb0 chore: update changelog script (#6586)
  • 36ce569 feat(sdk-metrics): adds the cardinalitySelector argument to PeriodicExporting...
  • Additional commits viewable in compare view

Updates keypal from 0.1.11 to 0.2.0

Release notes

Sourced from keypal's releases.

v0.2.0

Flatten ApiKeyRecord, unify scope API, fix types, move convex to optionalDependencies

Commits
Maintainer changes

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


Updates @cossistant/next from 0.0.29 to 0.2.0

Release notes

Sourced from @​cossistant/next's releases.

@​cossistant/next@​0.2.0

Minor Changes

  • big release coming with no breaking changes but big big refactor of the widget. Simpler code, more mudulable core and even more reusable logic for custom integrations. AI agent is more reliable. Widget is also more themeable and will detect by default your shadcn config and mimic it.

Patch Changes

  • Updated dependencies []:
    • @​cossistant/react@​0.2.0

@​cossistant/next@​0.1.2

Patch Changes

  • A lot of bug fixes, stable AI agent that performs much much better accross the board (better tool caling, better memory + Knowledge base). Widget more stable, AI tools better displayed in the widget too

  • Updated dependencies []:

    • @​cossistant/react@​0.1.2

@​cossistant/next@​0.1.1

Patch Changes

  • Bug fixes, removed two dependencies (so around 400kb removed) + better support for vite

  • Updated dependencies []:

    • @​cossistant/react@​0.1.1

@​cossistant/next@​0.1.0

Minor Changes

  • Huge refactor including fixes around 404 errors (race conditions between conversation creation and first message sent displaying 404 errors)

Patch Changes

  • Updated dependencies []:
    • @​cossistant/react@​0.1.0

@​cossistant/next@​0.0.33

Patch Changes

  • bug fixes + reduce lib size

  • Updated dependencies []:

    • @​cossistant/react@​0.0.33

@​cossistant/next@​0.0.32

Patch Changes

  • Updated dependencies []:
    • @​cossistant/react@​0.0.32

... (truncated)

Changelog

Sourced from @​cossistant/next's changelog.

0.2.0

Minor Changes

  • big release coming with no breaking changes but big big refactor of the widget. Simpler code, more mudulable core and even more reusable logic for custom integrations. AI agent is more reliable. Widget is also more themeable and will detect by default your shadcn config and mimic it.

Patch Changes

  • Updated dependencies []:
    • @​cossistant/react@​0.2.0

0.1.2

Patch Changes

  • A lot of bug fixes, stable AI agent that performs much much better accross the board (better tool caling, better memory + Knowledge base). Widget more stable, AI tools better displayed in the widget too

  • Updated dependencies []:

    • @​cossistant/react@​0.1.2

0.1.1

Patch Changes

  • Bug fixes, removed two dependencies (so around 400kb removed) + better support for vite

  • Updated dependencies []:

    • @​cossistant/react@​0.1.1

0.1.0

Minor Changes

  • Huge refactor including fixes around 404 errors (race conditions between conversation creation and first message sent displaying 404 errors)

Patch Changes

  • Updated dependencies []:
    • @​cossistant/react@​0.1.0

0.0.34

Patch Changes

  • Updated dependencies []:
    • @​cossistant/react@​0.0.34

0.0.33

Patch Changes

... (truncated)

Commits
  • de4ac97 chore(release): version packages
  • 28cbe5f Refine support timeline demos and translation flow
  • 0e1f669 feat: fixed clarification workflow
  • 3749d71 chore(release): version packages
  • e63f279 feat: added feedback widget components / primitives
  • 4cd55f5 chore: update build scripts to clean up previous artifacts and adjust tsdown ...
  • b1c0072 chore(release): version packages
  • d21cd80 chore(release): version packages
  • 4b008ab chore(release): facehash minor
  • 7e3202c Add example build to CI workflows
  • Additional commits viewable in compare view

Updates @cossistant/react from 0.0.29 to 0.2.0

Release notes

Sourced from @​cossistant/react's releases.

@​cossistant/react@​0.2.0

Minor Changes

  • big release coming with no breaking changes but big big refactor of the widget. Simpler code, more mudulable core and even more reusable logic for custom integrations. AI agent is more reliable. Widget is also more themeable and will detect by default your shadcn config and mimic it.

Patch Changes

  • Updated dependencies []:
    • @​cossistant/core@​0.2.0
    • @​cossistant/types@​0.2.0

@​cossistant/react@​0.1.2

Patch Changes

  • A lot of bug fixes, stable AI agent that performs much much better accross the board (better tool caling, better memory + Knowledge base). Widget more stable, AI tools better displayed in the widget too

  • Updated dependencies []:

    • @​cossistant/core@​0.1.2
    • @​cossistant/types@​0.1.2

@​cossistant/react@​0.1.1

Patch Changes

  • Bug fixes, removed two dependencies (so around 400kb removed) + better support for vite

  • Updated dependencies []:

    • @​cossistant/core@​0.1.1
    • @​cossistant/types@​0.1.1

@​cossistant/react@​0.1.0

Minor Changes

  • Huge refactor including fixes around 404 errors (race conditions between conversation creation and first message sent displaying 404 errors)

Patch Changes

  • Updated dependencies []:
    • @​cossistant/core@​0.1.0
    • @​cossistant/types@​0.1.0

@​cossistant/react@​0.0.33

Patch Changes

  • bug fixes + reduce lib size

  • Updated dependencies []:

    • @​cossistant/core@​0.0.33
    • @​cossistant/types@​0.0.33

@​cossistant/react@​0.0.32

... (truncated)

Changelog

Sourced from @​cossistant/react's changelog.

0.2.0

Minor Changes

  • big release coming with no breaking changes but big big refactor of the widget. Simpler code, more mudulable core and even more reusable logic for custom integrations. AI agent is more reliable. Widget is also more themeable and will detect by default your shadcn config and mimic it.

Patch Changes

  • Updated dependencies []:
    • @​cossistant/core@​0.2.0
    • @​cossistant/types@​0.2.0

0.1.2

Patch Changes

  • A lot of bug fixes, stable AI agent that performs much much better accross the board (better tool caling, better memory + Knowledge base). Widget more stable, AI tools better displayed in the widget too

  • Updated dependencies []:

    • @​cossistant/core@​0.1.2
    • @​cossistant/types@​0.1.2

0.1.1

Patch Changes

  • Bug fixes, removed two dependencies (so around 400kb removed) + better support for vite

  • Updated dependencies []:

    • @​cossistant/core@​0.1.1
    • @​cossistant/types@​0.1.1

0.1.0

Minor Changes

  • Huge refactor including fixes around 404 errors (race conditions between conversation creation and first message sent displaying 404 errors)

Patch Changes

  • Updated dependencies []:
    • @​cossistant/core@​0.1.0
    • @​cossistant/types@​0.1.0

0.0.34

Patch Changes

  • Updated dependencies []:
    • facehash@0.1.0

... (truncated)

Commits
  • de4ac97 chore(release): version packages
  • efd3c2b Clarify theme inheritance and token-based styling
  • 5d8574f Harden Facehash SVG against ancestor sizing rules
  • 033a7c7 Fix client script warning from theme provider
  • 6add4cb feat: better documentation
  • 28cbe5f Refine support timeline demos and translation flow
  • 51f2f82 feat: improved public API + documentation for self hosting
  • 211f4b2 feat: fix cors issues + updated packages to more recent version
  • 19070a7 feat: enhance knowledge clarification request handling with new parameters an...
  • 220a112 feat: better vite support
  • Additional commits viewable in compare view

Updates @json-render/react from 0.2.0 to 0.18.0

Release notes

Sourced from @​json-render/react's releases.

@​json-render/react-email@​0.16.0

Patch Changes

  • Updated dependencies [519a538]
    • @​json-render/core@​0.16.0

@​json-render/react-native@​0.16.0

Patch Changes

  • Updated dependencies [519a538]
    • @​json-render/core@​0.16.0

@​json-render/react-pdf@​0.16.0

Patch Changes

  • Updated dependencies [519a538]
    • @​json-render/core@​0.16.0

@​json-render/react-three-fiber@​0.16.0

Patch Changes

  • Updated dependencies [519a538]
    • @​json-render/core@​0.16.0
    • @​json-render/react@​0.16.0

@​json-render/react@​0.16.0

Patch Changes

  • Updated dependencies [519a538]
    • @​json-render/core@​0.16.0

@​json-render/react-email@​0.15.0

Patch Changes

  • Updated dependencies [bf3a7ec]
    • @​json-render/core@​0.15.0

@​json-render/react-native@​0.15.0

Patch Changes

  • Updated dependencies [bf3a7ec]
    • @​json-render/core@​0.15.0

@​json-render/react-pdf@​0.15.0

Patch Changes

  • Updated dependencies [bf3a7ec]
    • @​json-render/core@​0.15.0

@​json-render/react-three-fiber@​0.15.0

... (truncated)

Changelog

Sourced from @​json-render/react's changelog.

0.18.0

New Features

  • Devtools — Five new packages for inspecting json-render apps in the browser: @json-render/devtools (framework-agnostic core), plus @json-render/devtools-react, @json-render/devtools-vue, @json-render/devtools-svelte, and @json-render/devtools-solid adapters. Drop <JsonRenderDevtools /> into your app to get a shadow-DOM-isolated panel with six tabs (Spec, State, Actions, Stream, Catalog, Pick), a DOM picker that maps clicked elements back to spec keys via data-jr-key, a capped event store, and server-side stream tap utilities. Floating toggle or Cmd/Ctrl + Shift + J, tree-shakes to null in production (#273)
  • Devtools example — New examples/devtools Next.js demo showing the full devtools panel wired up to an AI chat endpoint and a component catalog (#273)
  • Action observer and devtools flag in core@json-render/core now exposes an action observer and a devtools enablement flag that adapters use to mirror actions and stream events into the panel (#273)

Bug Fixes

  • Zod 4 schema formattingformatZodType now correctly handles z.record(), z.default(), and z.literal() types from Zod 4, which previously produced incorrect or empty output in generated prompts and schemas (#239)

Improvements

  • Zod 4 test coverage — Added unit tests for formatZodType covering record, default, and literal types to guard against regressions (#272)

Contributors

0.17.0

New Features

  • Gaussian Splatting — Added GaussianSplat component to @json-render/react-three-fiber, bringing the component count to 20. Composable with all existing R3F components (lights, controls, post-processing) via drei's Splat loader (#259)
  • Standalone gsplat example — Experimental demo app showcasing Gaussian Splatting with gsplat.js (no Three.js dependency), featuring scene selector, live JSON spec viewer, and progress indicator (#259)
  • R3F gsplat example — Demo app with five scenes: splat showroom, splat with primitives, multi-splat, post-processing effects, and animated floating splat (#259)

Improved

  • AI output quality — Improved prompt output and schema generation for more reliable AI-generated specs (#268)

Contributors

0.16.0

Improved

  • Release process — Switched from Changesets to a manual single-PR release workflow with changelog markers and automatic npm publish on version bump
Commits
Maintainer changes

This version was pushed to npm by vercel-release-bot, a new releaser for @​json-render/react since your current version.


Updates @tanstack/react-pacer from 0.19.4 to 0.22.0

Release notes

Sourced from @​tanstack/react-pacer's releases.

@​tanstack/react-pacer@​0.22.0

Minor Changes

  • feat: upgrade to tanstack store with useSelector hook (c9f6385)

Patch Changes

  • Updated dependencies [c9f6385]:
    • @​tanstack/pacer@​0.21.0

@​tanstack/react-pacer@​0.21.1

Patch Changes

  • chore: bump tanstack store versions for better tree-shaking (4e74cb4)

  • Updated dependencies [4e74cb4]:

    • @​tanstack/pacer@​0.20.1

@​tanstack/react-pacer@​0.21.0

Minor Changes

  • feat: TanStack Store Upgrade to alien signals (#178)

Patch Changes

  • Updated dependencies [225381e]:
    • @​tanstack/pacer@​0.20.0
Changelog

Sourced from @​tanstack/react-pacer's changelog.

0.22.0

Minor Changes

  • feat: upgrade to tanstack store with useSelector hook (c9f6385)

Patch Changes

  • Updated dependencies [c9f6385]:
    • @​tanstack/pacer@​0.21.0

0.21.1

Patch Changes

  • chore: bump tanstack store versions for better tree-shaking (4e74cb4)

  • Updated dependencies [4e74cb4]:

    • @​tanstack/pacer@​0.20.1

0.21.0

Minor Changes

  • feat: TanStack Store Upgrade to alien signals (#178)

Patch Changes

  • Updated dependencies [225381e]:
    • @​tanstack/pacer@​0.20.0

0.20.0

Minor Changes

  • feat: Add optional onUnmount callback to Debouncer, Throttler, Batcher, Queuer and async variants for custom cleanup. (#158)

Patch Changes

  • Updated dependencies [54d2c21]:
    • @​tanstack/pacer@​0.19.0
Commits

Updates @anthropic-ai/sdk from 0.39.0 to 0.90.0

Release notes

Sourced from @​anthropic-ai/sdk's releases.

sdk: v0.90.0

0.90.0 (2026-04-16)

Full Changelog: sdk-v0.89.0...sdk-v0.90.0

Features

  • api: add claude-opus-4-7, token budgets and user_profiles (b26134b)

Chores

  • actually delete release-doctor.yml (0fe984d)
  • ci: remove release-doctor workflow (08e58bd)

sdk: v0.89.0

0.89.0 (2026-04-14)

Full Changelog: sdk-v0.88.0...sdk-v0.89.0

Features

  • api: manual updates (57c2a11)
  • api: mark Sonnet and Opus 4 as deprecated (eff41b7)

Bug Fixes

  • streaming: add missing events (4c52919)

sdk: v0.88.0

0.88.0 (2026-04-10)

Full Changelog: sdk-v0.87.0...sdk-v0.88.0

Features

Documentation

sdk: v0.87.0

0.87.0 (2026-04-09)

Full Changelog: sdk-v0.86.1...sdk-v0.87.0

... (truncated)

Changelog

Sourced from

… updates

Bumps the minor-and-patch group with 9 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.4.10` | `2.4.12` |
| [@json-render/core](https://github.com/vercel-labs/json-render/tree/HEAD/packages/core) | `0.2.0` | `0.18.0` |
| [@opentelemetry/sdk-node](https://github.com/open-telemetry/opentelemetry-js) | `0.210.0` | `0.215.0` |
| [keypal](https://github.com/izadoesdev/keypal) | `0.1.11` | `0.2.0` |
| [@cossistant/next](https://github.com/cossistantcom/cossistant/tree/HEAD/packages/next) | `0.0.29` | `0.2.0` |
| [@cossistant/react](https://github.com/cossistantcom/cossistant/tree/HEAD/packages/react) | `0.0.29` | `0.2.0` |
| [@json-render/react](https://github.com/vercel-labs/json-render/tree/HEAD/packages/react) | `0.2.0` | `0.18.0` |
| [@tanstack/react-pacer](https://github.com/TanStack/pacer/tree/HEAD/packages/react-pacer) | `0.19.4` | `0.22.0` |
| [@anthropic-ai/sdk](https://github.com/anthropics/anthropic-sdk-typescript) | `0.39.0` | `0.90.0` |



Updates `@biomejs/biome` from 2.4.10 to 2.4.12
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.4.12/packages/@biomejs/biome)

Updates `@json-render/core` from 0.2.0 to 0.18.0
- [Release notes](https://github.com/vercel-labs/json-render/releases)
- [Changelog](https://github.com/vercel-labs/json-render/blob/main/CHANGELOG.md)
- [Commits](https://github.com/vercel-labs/json-render/commits/v0.18.0/packages/core)

Updates `@opentelemetry/sdk-node` from 0.210.0 to 0.215.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-js@experimental/v0.210.0...experimental/v0.215.0)

Updates `keypal` from 0.1.11 to 0.2.0
- [Release notes](https://github.com/izadoesdev/keypal/releases)
- [Commits](https://github.com/izadoesdev/keypal/commits/v0.2.0)

Updates `@cossistant/next` from 0.0.29 to 0.2.0
- [Release notes](https://github.com/cossistantcom/cossistant/releases)
- [Changelog](https://github.com/cossistantcom/cossistant/blob/main/packages/next/CHANGELOG.md)
- [Commits](https://github.com/cossistantcom/cossistant/commits/@cossistant/next@0.2.0/packages/next)

Updates `@cossistant/react` from 0.0.29 to 0.2.0
- [Release notes](https://github.com/cossistantcom/cossistant/releases)
- [Changelog](https://github.com/cossistantcom/cossistant/blob/main/packages/react/CHANGELOG.md)
- [Commits](https://github.com/cossistantcom/cossistant/commits/@cossistant/react@0.2.0/packages/react)

Updates `@json-render/react` from 0.2.0 to 0.18.0
- [Release notes](https://github.com/vercel-labs/json-render/releases)
- [Changelog](https://github.com/vercel-labs/json-render/blob/main/CHANGELOG.md)
- [Commits](https://github.com/vercel-labs/json-render/commits/v0.18.0/packages/react)

Updates `@tanstack/react-pacer` from 0.19.4 to 0.22.0
- [Release notes](https://github.com/TanStack/pacer/releases)
- [Changelog](https://github.com/TanStack/pacer/blob/main/packages/react-pacer/CHANGELOG.md)
- [Commits](https://github.com/TanStack/pacer/commits/@tanstack/react-pacer@0.22.0/packages/react-pacer)

Updates `@anthropic-ai/sdk` from 0.39.0 to 0.90.0
- [Release notes](https://github.com/anthropics/anthropic-sdk-typescript/releases)
- [Changelog](https://github.com/anthropics/anthropic-sdk-typescript/blob/main/CHANGELOG.md)
- [Commits](anthropics/anthropic-sdk-typescript@sdk-v0.39.0...sdk-v0.90.0)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.4.12
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@json-render/core"
  dependency-version: 0.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@opentelemetry/sdk-node"
  dependency-version: 0.215.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: keypal
  dependency-version: 0.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@cossistant/next"
  dependency-version: 0.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@cossistant/react"
  dependency-version: 0.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@json-render/react"
  dependency-version: 0.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@tanstack/react-pacer"
  dependency-version: 0.22.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@anthropic-ai/sdk"
  dependency-version: 0.90.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-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 Apr 22, 2026
@vercel
Copy link
Copy Markdown

vercel Bot commented Apr 22, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
dashboard Ready Ready Preview, Comment Apr 22, 2026 9:56pm
documentation Ready Ready Preview, Comment Apr 22, 2026 9:56pm

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