Skip to content

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

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

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

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 11, 2026

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

Package From To
@biomejs/biome 2.4.10 2.4.11
ultracite 7.4.3 7.5.1
@json-render/core 0.2.0 0.17.0
@opentelemetry/sdk-node 0.210.0 0.214.0
@cossistant/next 0.0.29 0.1.2
@cossistant/react 0.0.29 0.1.2
@json-render/react 0.2.0 0.17.0
@tanstack/react-pacer 0.19.4 0.21.1
@anthropic-ai/sdk 0.39.0 0.88.0

Updates @biomejs/biome from 2.4.10 to 2.4.11

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.4.11

2.4.11

Patch Changes

  • #9350 4af4a3a Thanks @​dyc3! - Added the new nursery rule useConsistentTestIt in the test domain. The rule enforces consistent use of either it or test for test functions in Jest/Vitest suites, with separate control for top-level tests and tests inside describe blocks.

    Invalid:

    test("should fly", () => {}); // Top-level test using 'test' flagged, convert to 'it'
    describe("pig", () => {
    test("should fly", () => {}); // Test inside 'describe' using 'test' flagged, convert to 'it'
    });

  • #9429 a2f3f7e Thanks @​ematipico! - Added the new nursery lint rule useExplicitReturnType. It reports TypeScript functions and methods that omit an explicit return type.

    function toString(x: any) {
      // rule triggered, it doesn't declare a return type
      return x.toString();
    }
  • #9828 9e40844 Thanks @​ematipico! - Fixed #9484: the formatter no longer panics when formatting files that contain graphql tagged template literals combined with parenthesized expressions.

  • #9886 e7c681e Thanks @​ematipico! - Fixed an issue where, occasionally, some bindings and references were not properly tracked, causing false positives from noUnusedVariables and noUndeclaredVariables in Svelte, Vue, and Astro files.

  • #9760 5b16d18 Thanks @​myx0m0p! - Fixed #4093: the noDelete rule no longer triggers for delete process.env.FOO, since delete is the documented way to remove environment variables in Node.js.

  • #9799 2af8efd Thanks @​minseong0324! - Added the rule noMisleadingReturnType. The rule detects when a function's return type annotation is wider than what the implementation actually returns.

    // Flagged: `: string` is wider than `"loading" | "idle"`
    function getStatus(b: boolean): string {
      if (b) return "loading";
      return "idle";
    }
  • #9880 7f67749 Thanks @​dyc3! - Improved the diagnostics for useFind to better explain the problem, why it matters, and how to fix it.

  • #9755 bff7bdb Thanks @​ematipico! - Improved performance of fix-all operations (--write). Biome is now smarter when it runs lint rules and assist actions. First, it runs only rules that have code fixes, and then runs the rest of the rules.

  • #8651 aafca2d Thanks @​siketyan! - Add a new lint rule useDisposables for JavaScript, which detects disposable objects assigned to variables without using or await using syntax. Disposable objects that implement the Disposable or AsyncDisposable interface are intended to be disposed of after use. Not disposing them can lead to resource or memory leaks, depending on the implementation.

    Invalid:

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.4.11

Patch Changes

  • #9350 4af4a3a Thanks @​dyc3! - Added the new nursery rule useConsistentTestIt in the test domain. The rule enforces consistent use of either it or test for test functions in Jest/Vitest suites, with separate control for top-level tests and tests inside describe blocks.

    Invalid:

    test("should fly", () => {}); // Top-level test using 'test' flagged, convert to 'it'
    describe("pig", () => {
    test("should fly", () => {}); // Test inside 'describe' using 'test' flagged, convert to 'it'
    });

  • #9429 a2f3f7e Thanks @​ematipico! - Added the new nursery lint rule useExplicitReturnType. It reports TypeScript functions and methods that omit an explicit return type.

    function toString(x: any) {
      // rule triggered, it doesn't declare a return type
      return x.toString();
    }
  • #9828 9e40844 Thanks @​ematipico! - Fixed #9484: the formatter no longer panics when formatting files that contain graphql tagged template literals combined with parenthesized expressions.

  • #9886 e7c681e Thanks @​ematipico! - Fixed an issue where, occasionally, some bindings and references were not properly tracked, causing false positives from noUnusedVariables and noUndeclaredVariables in Svelte, Vue, and Astro files.

  • #9760 5b16d18 Thanks @​myx0m0p! - Fixed #4093: the noDelete rule no longer triggers for delete process.env.FOO, since delete is the documented way to remove environment variables in Node.js.

  • #9799 2af8efd Thanks @​minseong0324! - Added the rule noMisleadingReturnType. The rule detects when a function's return type annotation is wider than what the implementation actually returns.

    // Flagged: `: string` is wider than `"loading" | "idle"`
    function getStatus(b: boolean): string {
      if (b) return "loading";
      return "idle";
    }
  • #9880 7f67749 Thanks @​dyc3! - Improved the diagnostics for useFind to better explain the problem, why it matters, and how to fix it.

  • #9755 bff7bdb Thanks @​ematipico! - Improved performance of fix-all operations (--write). Biome is now smarter when it runs lint rules and assist actions. First, it runs only rules that have code fixes, and then runs the rest of the rules.

  • #8651 aafca2d Thanks @​siketyan! - Add a new lint rule useDisposables for JavaScript, which detects disposable objects assigned to variables without using or await using syntax. Disposable objects that implement the Disposable or AsyncDisposable interface are intended to be disposed of after use. Not disposing them can lead to resource or memory leaks, depending on the implementation.

    Invalid:

... (truncated)

Commits

Updates ultracite from 7.4.3 to 7.5.1

Release notes

Sourced from ultracite's releases.

ultracite@7.5.1

Patch Changes

  • e96c55a: Switch oxlint.config.ts to js imports

ultracite@7.5.0

Minor Changes

  • 7861cf7: Migrate oxlint and oxfmt configurations from JSON to TypeScript using defineConfig. The CLI now generates oxlint.config.ts and oxfmt.config.ts instead of .oxlintrc.json and .oxfmtrc.jsonc, and all internal framework presets have been converted to TypeScript.

Patch Changes

  • fdb1493: Exclude package manager lock files (bun.lock, bun.lockb, package-lock.json, yarn.lock, pnpm-lock.yaml) from Biome linting and formatting

ultracite@7.4.4

Patch Changes

  • e9db6f1: Add IBM Bob agent, editor, and logo
  • 5341bcc: Disable vitest/prefer-strict-boolean-matchers to resolve conflict with prefer-to-be-truthy and prefer-to-be-falsy
Commits

Updates @json-render/core from 0.2.0 to 0.17.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.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.214.0

Release notes

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

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

experimental/v0.213.0

0.213.0

💥 Breaking Changes

  • fix(api-logs)!: drop lingering includeTraceContext from LoggerOptions type #6451 @​trentm

🚀 Features

  • feat(instrumentation-http): provide http.request.header.<key> at server span creation time #6396 @​vitorvasc

🐛 Bug Fixes

  • fix(instrumentation-http): guard against double-instrumentation if loaded with require('http') and import 'http' #6428 @​trentm
  • fix(otlp-exporter-base): handle response error #6412 @​pichlermarc
    • Fixes a bug where when the response header was received, but the connection was reset by the server, an unhandled error would be thrown.
  • fix(otlp-exporter-base): remove sendBeacon in favor of fetch with keepalive #6391 @​overbalance
    • (user-facing) createOtlpSendBeaconExportDelegate will be removed in a future version
  • fix(otlp-transformer): downgrade protobufjs to version ^7.0.0 #6418 @​vitorvasc
  • fix(instrumentation-fetch): handle HeadersInit tuple arrays in _addHeaders #6341 @​overbalance @​imadha

... (truncated)

Commits
  • 7e74509 chore: prepare next release (#6510)
  • c846919 fix(instrumentation-fetch): do not modify the returned type of fetch (#6521)
  • 99fb3fb fix(api): re-introduce fallback chain for global utils (#6523)
  • b842717 test(bundlers): add node webpack tests, expand edge coverage, assert known pr...
  • b5a6b12 fix(opentelemetry-sdk-node): add missing @​opentelemetry/otlp-exporter-base de...
  • dc93ed4 perf(sdk-trace-base): optimize Span.{addEvent,addLink} performance (#6516)
  • e9831e7 perf(sdk-trace-base): avoid Object.entries in Span.setAttributes (#6514)
  • d56af69 chore(deps): lock file maintenance (#6517)
  • f3a10ab chore(deps): update github/codeql-action digest to 3869755 (#6513)
  • 2f73776 chore(deps): update github/codeql-action digest to c6f9311 (#6511)
  • Additional commits viewable in compare view

Updates @cossistant/next from 0.0.29 to 0.1.2

Release notes

Sourced from @​cossistant/next's releases.

@​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

@​cossistant/next@​0.0.31

Patch Changes

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

@​cossistant/next@​0.0.30

Patch Changes

  • Better design, bug fixes, better support for AI agent auto reply and better performances

... (truncated)

Changelog

Sourced from @​cossistant/next's changelog.

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

  • bug fixes + reduce lib size

  • Updated dependencies []:

    • @​cossistant/react@​0.0.33

0.0.32

Patch Changes

  • Updated dependencies []:

... (truncated)

Commits
  • 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
  • 33f44fd feat: introduced tinybird
  • 1f79578 chore(release): version packages
  • 943134c feat: lighter react / next libs, remove react markdown + better display codeb...
  • Additional commits viewable in compare view

Updates @cossistant/react from 0.0.29 to 0.1.2

Release notes

Sourced from @​cossistant/react's releases.

@​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

Patch Changes

  • Updated dependencies []:
    • facehash@0.0.7
    • @​cossistant/core@​0.0.32
    • @​cossistant/types@​0.0.32

@​cossistant/react@​0.0.31

Patch Changes

  • Updated dependencies []:

... (truncated)

Changelog

Sourced from @​cossistant/react's changelog.

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
    • @​cossistant/core@​0.0.34
    • @​cossistant/types@​0.0.34

0.0.33

Patch Changes

  • bug fixes + reduce lib size

  • Updated dependencies []:

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

... (truncated)

Commits
  • 3749d71 chore(release): version packages
  • e63f279 feat: added feedback widget components / primitives
  • 479a2d3 feat: better tool calling display + conversation title / background pipeline
  • 93d324b feat: superior tool calling display
  • a5e7bbd Implement search activity signals
  • 03f9d25 feat: better facehash
  • 58b70e9 feat: better facehash, more 3d effect on nextjs route + better api
  • 3f1cc06 feat: better looking widget
  • 85b6c0c feat: AI agent message cleanup
  • bb089fc fix: typing issue
  • Additional commits viewable in compare view

Updates @json-render/react from 0.2.0 to 0.17.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.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.21.1

Release notes

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

@​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.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.88.0

Release notes

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

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

Features

  • api: Add beta advisor tool (1e99a8d)

sdk: v0.86.1

0.86.1 (2026-04-08)

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

Chores

  • update @​anthropic-ai/sdk dependency version (#870) (036342b)

sdk: v0.86.0

0.86.0 (2026-04-08)

Full Changelog: sdk-v0.85.0...sdk-v0.86.0

Features

  • api: add support for Claude Managed Agents (2ef732a)

Chores

  • internal: codegen related update (d644830)

sdk: v0.85.0

0.85.0 (2026-04-07)

... (truncated)

Changelog

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

0.88.0 (2026-04-10)

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

Features

Documentation

0.87.0 (2026-04-09)

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

Features

  • api: Add beta advisor tool (1e99a8d)

0.86.1 (2026-04-08)

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

Chores

  • update @​anthropic-ai/sdk dependency version (#870) (036342b)

0.86.0 (2026-04-08)

Full Changelog: sdk-v0.85.0...sdk-v0.86.0

Features

  • api: add support for Claude Managed Agents (2ef732a)

Chores

  • internal: codegen related update (d644830)

0.85.0 (2026-04-07)

Full Changelog: sdk-v0.84.0...sdk-v0.85.0

Features

  • client: Create Bedrock Mantle client (#810) (2f1f4a1)

... (truncated)

Commits

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Apr 11, 2026
@vercel
Copy link
Copy Markdown

vercel bot commented Apr 11, 2026

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

Project Deployment Actions Updated (UTC)
dashboard Ready Ready Preview, Comment Apr 13, 2026 5:01pm
documentation Ready Ready Preview, Comment Apr 13, 2026 5:01pm

@CLAassistant
Copy link
Copy Markdown

CLA assistant check
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.
You have signed the CLA already but the status is still pending? Let us recheck it.

… 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.11` |
| [ultracite](https://github.com/haydenbleasel/ultracite) | `7.4.3` | `7.5.1` |
| [@json-render/core](https://github.com/vercel-labs/json-render/tree/HEAD/packages/core) | `0.2.0` | `0.17.0` |
| [@opentelemetry/sdk-node](https://github.com/open-telemetry/opentelemetry-js) | `0.210.0` | `0.214.0` |
| [@cossistant/next](https://github.com/cossistantcom/cossistant/tree/HEAD/packages/next) | `0.0.29` | `0.1.2` |
| [@cossistant/react](https://github.com/cossistantcom/cossistant/tree/HEAD/packages/react) | `0.0.29` | `0.1.2` |
| [@json-render/react](https://github.com/vercel-labs/json-render/tree/HEAD/packages/react) | `0.2.0` | `0.17.0` |
| [@tanstack/react-pacer](https://github.com/TanStack/pacer/tree/HEAD/packages/react-pacer) | `0.19.4` | `0.21.1` |
| [@anthropic-ai/sdk](https://github.com/anthropics/anthropic-sdk-typescript) | `0.39.0` | `0.88.0` |



Updates `@biomejs/biome` from 2.4.10 to 2.4.11
- [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.11/packages/@biomejs/biome)

Updates `ultracite` from 7.4.3 to 7.5.1
- [Release notes](https://github.com/haydenbleasel/ultracite/releases)
- [Commits](https://github.com/haydenbleasel/ultracite/compare/ultracite@7.4.3...ultracite@7.5.1)

Updates `@json-render/core` from 0.2.0 to 0.17.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.17.0/packages/core)

Updates `@opentelemetry/sdk-node` from 0.210.0 to 0.214.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.214.0)

Updates `@cossistant/next` from 0.0.29 to 0.1.2
- [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.1.2/packages/next)

Updates `@cossistant/react` from 0.0.29 to 0.1.2
- [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.1.2/packages/react)

Updates `@json-render/react` from 0.2.0 to 0.17.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.17.0/packages/react)

Updates `@tanstack/react-pacer` from 0.19.4 to 0.21.1
- [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.21.1/packages/react-pacer)

Updates `@anthropic-ai/sdk` from 0.39.0 to 0.88.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.88.0)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.4.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: ultracite
  dependency-version: 7.5.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@json-render/core"
  dependency-version: 0.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@opentelemetry/sdk-node"
  dependency-version: 0.214.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@cossistant/next"
  dependency-version: 0.1.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@cossistant/react"
  dependency-version: 0.1.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@json-render/react"
  dependency-version: 0.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@tanstack/react-pacer"
  dependency-version: 0.21.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@anthropic-ai/sdk"
  dependency-version: 0.88.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 force-pushed the dependabot/npm_and_yarn/staging/minor-and-patch-f918b2728d branch from 0551fed to 346a094 Compare April 13, 2026 16:59
@unkey-deploy
Copy link
Copy Markdown

unkey-deploy bot commented Apr 13, 2026

The latest updates on your projects. Learn more about Unkey Deploy

Name Status Preview Inspect Updated (UTC)
links (preview) Ready Visit Preview Inspect Apr 13, 2026 5:01pm

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.

1 participant