Skip to content

chore: version packages#982

Closed
github-actions[bot] wants to merge 1 commit intomainfrom
changeset-release/main
Closed

chore: version packages#982
github-actions[bot] wants to merge 1 commit intomainfrom
changeset-release/main

Conversation

@github-actions
Copy link
Copy Markdown
Contributor

@github-actions github-actions bot commented Mar 25, 2026

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@objectstack/client@3.4.0

Minor Changes

  • f08ffc3: Fix discovery API endpoint routing and protocol consistency.

    Discovery route standardization:

    • All adapters (Express, Fastify, Hono, NestJS, Next.js, Nuxt, SvelteKit) now mount the discovery endpoint at {prefix}/discovery instead of {prefix} root.
    • .well-known/objectstack redirects now point to {prefix}/discovery.
    • Client connect() fallback URL changed from /api/v1 to /api/v1/discovery.
    • Runtime dispatcher handles both /discovery (standard) and / (legacy) for backward compatibility.

    Schema & route alignment:

    • Added storage (service: file-storage) and feed (service: data) routes to DEFAULT_DISPATCHER_ROUTES.
    • Added feed and discovery fields to ApiRoutesSchema.
    • Unified GetDiscoveryResponseSchema with DiscoverySchema as single source of truth.
    • Client getRoute('feed') fallback updated from /api/v1/data to /api/v1/feed.

    Type safety:

    • Extracted ApiRouteType from ApiRoutes keys for type-safe client route resolution.
    • Removed as any type casting in client route access.
  • e0b0a78: Deprecate DataEngineQueryOptions in favor of QueryAST-aligned EngineQueryOptions.

    Engine, Protocol, and Client now use standard QueryAST parameter names:

    • filterwhere
    • selectfields
    • sortorderBy
    • skipoffset
    • populateexpand
    • toplimit

    The old DataEngine* schemas and types are preserved with @deprecated markers for backward compatibility.

Patch Changes

  • Updated dependencies [f08ffc3]
  • Updated dependencies [e0b0a78]
    • @objectstack/spec@3.4.0
    • @objectstack/core@3.4.0

@objectstack/core@3.4.0

Minor Changes

  • e0b0a78: Deprecate DataEngineQueryOptions in favor of QueryAST-aligned EngineQueryOptions.

    Engine, Protocol, and Client now use standard QueryAST parameter names:

    • filterwhere
    • selectfields
    • sortorderBy
    • skipoffset
    • populateexpand
    • toplimit

    The old DataEngine* schemas and types are preserved with @deprecated markers for backward compatibility.

Patch Changes

  • Updated dependencies [f08ffc3]
  • Updated dependencies [e0b0a78]
    • @objectstack/spec@3.4.0

@objectstack/objectql@3.4.0

Minor Changes

  • e0b0a78: Deprecate DataEngineQueryOptions in favor of QueryAST-aligned EngineQueryOptions.

    Engine, Protocol, and Client now use standard QueryAST parameter names:

    • filterwhere
    • selectfields
    • sortorderBy
    • skipoffset
    • populateexpand
    • toplimit

    The old DataEngine* schemas and types are preserved with @deprecated markers for backward compatibility.

Patch Changes

  • Updated dependencies [f08ffc3]
  • Updated dependencies [e0b0a78]
    • @objectstack/spec@3.4.0
    • @objectstack/core@3.4.0
    • @objectstack/types@3.4.0

@objectstack/spec@3.4.0

Minor Changes

  • f08ffc3: Fix discovery API endpoint routing and protocol consistency.

    Discovery route standardization:

    • All adapters (Express, Fastify, Hono, NestJS, Next.js, Nuxt, SvelteKit) now mount the discovery endpoint at {prefix}/discovery instead of {prefix} root.
    • .well-known/objectstack redirects now point to {prefix}/discovery.
    • Client connect() fallback URL changed from /api/v1 to /api/v1/discovery.
    • Runtime dispatcher handles both /discovery (standard) and / (legacy) for backward compatibility.

    Schema & route alignment:

    • Added storage (service: file-storage) and feed (service: data) routes to DEFAULT_DISPATCHER_ROUTES.
    • Added feed and discovery fields to ApiRoutesSchema.
    • Unified GetDiscoveryResponseSchema with DiscoverySchema as single source of truth.
    • Client getRoute('feed') fallback updated from /api/v1/data to /api/v1/feed.

    Type safety:

    • Extracted ApiRouteType from ApiRoutes keys for type-safe client route resolution.
    • Removed as any type casting in client route access.
  • e0b0a78: Deprecate DataEngineQueryOptions in favor of QueryAST-aligned EngineQueryOptions.

    Engine, Protocol, and Client now use standard QueryAST parameter names:

    • filterwhere
    • selectfields
    • sortorderBy
    • skipoffset
    • populateexpand
    • toplimit

    The old DataEngine* schemas and types are preserved with @deprecated markers for backward compatibility.

@objectstack/studio@3.4.0

Patch Changes

  • 1624851: Fix Vercel deployment API endpoints returning HTML instead of JSON.

    The bundle-api.mjs script was emitting the serverless function to api/index.js
    at the project root, but vercel.json sets outputDirectory: "dist" — causing
    Vercel to never find the function entrypoint and fall back to the SPA HTML route
    for all /api/* requests.

    • Change esbuild outfile from api/index.js to dist/api/index.js so the
      bundled serverless function lands inside the Vercel output directory.
    • Add explicit functions config in vercel.json pointing to api/index.js
      (relative to outputDirectory) with @vercel/node@3 runtime.
    • Remove obsolete .gitignore entries for api/index.js and api/index.js.map
      (now emitted under dist/ which is already git-ignored).
  • Updated dependencies [f08ffc3]

  • Updated dependencies [e0b0a78]

    • @objectstack/spec@3.4.0
    • @objectstack/client@3.4.0
    • @objectstack/runtime@3.4.0
    • @objectstack/hono@3.4.0
    • @objectstack/objectql@3.4.0
    • @objectstack/plugin-auth@3.4.0
    • @objectstack/client-react@3.4.0
    • @objectstack/metadata@3.4.0
    • @objectstack/driver-memory@3.4.0
    • @objectstack/driver-turso@3.3.2
    • @objectstack/plugin-audit@3.4.0
    • @objectstack/plugin-msw@3.4.0
    • @objectstack/plugin-security@3.4.0
    • @objectstack/service-feed@3.4.0

@objectstack/express@3.4.0

Patch Changes

  • f08ffc3: Fix discovery API endpoint routing and protocol consistency.

    Discovery route standardization:

    • All adapters (Express, Fastify, Hono, NestJS, Next.js, Nuxt, SvelteKit) now mount the discovery endpoint at {prefix}/discovery instead of {prefix} root.
    • .well-known/objectstack redirects now point to {prefix}/discovery.
    • Client connect() fallback URL changed from /api/v1 to /api/v1/discovery.
    • Runtime dispatcher handles both /discovery (standard) and / (legacy) for backward compatibility.

    Schema & route alignment:

    • Added storage (service: file-storage) and feed (service: data) routes to DEFAULT_DISPATCHER_ROUTES.
    • Added feed and discovery fields to ApiRoutesSchema.
    • Unified GetDiscoveryResponseSchema with DiscoverySchema as single source of truth.
    • Client getRoute('feed') fallback updated from /api/v1/data to /api/v1/feed.

    Type safety:

    • Extracted ApiRouteType from ApiRoutes keys for type-safe client route resolution.
    • Removed as any type casting in client route access.
  • Updated dependencies [f08ffc3]

  • Updated dependencies [e0b0a78]

    • @objectstack/runtime@3.4.0

@objectstack/fastify@3.4.0

Patch Changes

  • f08ffc3: Fix discovery API endpoint routing and protocol consistency.

    Discovery route standardization:

    • All adapters (Express, Fastify, Hono, NestJS, Next.js, Nuxt, SvelteKit) now mount the discovery endpoint at {prefix}/discovery instead of {prefix} root.
    • .well-known/objectstack redirects now point to {prefix}/discovery.
    • Client connect() fallback URL changed from /api/v1 to /api/v1/discovery.
    • Runtime dispatcher handles both /discovery (standard) and / (legacy) for backward compatibility.

    Schema & route alignment:

    • Added storage (service: file-storage) and feed (service: data) routes to DEFAULT_DISPATCHER_ROUTES.
    • Added feed and discovery fields to ApiRoutesSchema.
    • Unified GetDiscoveryResponseSchema with DiscoverySchema as single source of truth.
    • Client getRoute('feed') fallback updated from /api/v1/data to /api/v1/feed.

    Type safety:

    • Extracted ApiRouteType from ApiRoutes keys for type-safe client route resolution.
    • Removed as any type casting in client route access.
  • Updated dependencies [f08ffc3]

  • Updated dependencies [e0b0a78]

    • @objectstack/runtime@3.4.0

@objectstack/hono@3.4.0

Patch Changes

  • f08ffc3: Fix discovery API endpoint routing and protocol consistency.

    Discovery route standardization:

    • All adapters (Express, Fastify, Hono, NestJS, Next.js, Nuxt, SvelteKit) now mount the discovery endpoint at {prefix}/discovery instead of {prefix} root.
    • .well-known/objectstack redirects now point to {prefix}/discovery.
    • Client connect() fallback URL changed from /api/v1 to /api/v1/discovery.
    • Runtime dispatcher handles both /discovery (standard) and / (legacy) for backward compatibility.

    Schema & route alignment:

    • Added storage (service: file-storage) and feed (service: data) routes to DEFAULT_DISPATCHER_ROUTES.
    • Added feed and discovery fields to ApiRoutesSchema.
    • Unified GetDiscoveryResponseSchema with DiscoverySchema as single source of truth.
    • Client getRoute('feed') fallback updated from /api/v1/data to /api/v1/feed.

    Type safety:

    • Extracted ApiRouteType from ApiRoutes keys for type-safe client route resolution.
    • Removed as any type casting in client route access.
  • Updated dependencies [f08ffc3]

  • Updated dependencies [e0b0a78]

    • @objectstack/runtime@3.4.0

@objectstack/nestjs@3.4.0

Patch Changes

  • f08ffc3: Fix discovery API endpoint routing and protocol consistency.

    Discovery route standardization:

    • All adapters (Express, Fastify, Hono, NestJS, Next.js, Nuxt, SvelteKit) now mount the discovery endpoint at {prefix}/discovery instead of {prefix} root.
    • .well-known/objectstack redirects now point to {prefix}/discovery.
    • Client connect() fallback URL changed from /api/v1 to /api/v1/discovery.
    • Runtime dispatcher handles both /discovery (standard) and / (legacy) for backward compatibility.

    Schema & route alignment:

    • Added storage (service: file-storage) and feed (service: data) routes to DEFAULT_DISPATCHER_ROUTES.
    • Added feed and discovery fields to ApiRoutesSchema.
    • Unified GetDiscoveryResponseSchema with DiscoverySchema as single source of truth.
    • Client getRoute('feed') fallback updated from /api/v1/data to /api/v1/feed.

    Type safety:

    • Extracted ApiRouteType from ApiRoutes keys for type-safe client route resolution.
    • Removed as any type casting in client route access.
  • Updated dependencies [f08ffc3]

  • Updated dependencies [e0b0a78]

    • @objectstack/runtime@3.4.0

@objectstack/nextjs@3.4.0

Patch Changes

  • f08ffc3: Fix discovery API endpoint routing and protocol consistency.

    Discovery route standardization:

    • All adapters (Express, Fastify, Hono, NestJS, Next.js, Nuxt, SvelteKit) now mount the discovery endpoint at {prefix}/discovery instead of {prefix} root.
    • .well-known/objectstack redirects now point to {prefix}/discovery.
    • Client connect() fallback URL changed from /api/v1 to /api/v1/discovery.
    • Runtime dispatcher handles both /discovery (standard) and / (legacy) for backward compatibility.

    Schema & route alignment:

    • Added storage (service: file-storage) and feed (service: data) routes to DEFAULT_DISPATCHER_ROUTES.
    • Added feed and discovery fields to ApiRoutesSchema.
    • Unified GetDiscoveryResponseSchema with DiscoverySchema as single source of truth.
    • Client getRoute('feed') fallback updated from /api/v1/data to /api/v1/feed.

    Type safety:

    • Extracted ApiRouteType from ApiRoutes keys for type-safe client route resolution.
    • Removed as any type casting in client route access.
  • Updated dependencies [f08ffc3]

  • Updated dependencies [e0b0a78]

    • @objectstack/runtime@3.4.0

@objectstack/nuxt@3.4.0

Patch Changes

  • f08ffc3: Fix discovery API endpoint routing and protocol consistency.

    Discovery route standardization:

    • All adapters (Express, Fastify, Hono, NestJS, Next.js, Nuxt, SvelteKit) now mount the discovery endpoint at {prefix}/discovery instead of {prefix} root.
    • .well-known/objectstack redirects now point to {prefix}/discovery.
    • Client connect() fallback URL changed from /api/v1 to /api/v1/discovery.
    • Runtime dispatcher handles both /discovery (standard) and / (legacy) for backward compatibility.

    Schema & route alignment:

    • Added storage (service: file-storage) and feed (service: data) routes to DEFAULT_DISPATCHER_ROUTES.
    • Added feed and discovery fields to ApiRoutesSchema.
    • Unified GetDiscoveryResponseSchema with DiscoverySchema as single source of truth.
    • Client getRoute('feed') fallback updated from /api/v1/data to /api/v1/feed.

    Type safety:

    • Extracted ApiRouteType from ApiRoutes keys for type-safe client route resolution.
    • Removed as any type casting in client route access.
  • Updated dependencies [f08ffc3]

  • Updated dependencies [e0b0a78]

    • @objectstack/runtime@3.4.0

@objectstack/sveltekit@3.4.0

Patch Changes

  • f08ffc3: Fix discovery API endpoint routing and protocol consistency.

    Discovery route standardization:

    • All adapters (Express, Fastify, Hono, NestJS, Next.js, Nuxt, SvelteKit) now mount the discovery endpoint at {prefix}/discovery instead of {prefix} root.
    • .well-known/objectstack redirects now point to {prefix}/discovery.
    • Client connect() fallback URL changed from /api/v1 to /api/v1/discovery.
    • Runtime dispatcher handles both /discovery (standard) and / (legacy) for backward compatibility.

    Schema & route alignment:

    • Added storage (service: file-storage) and feed (service: data) routes to DEFAULT_DISPATCHER_ROUTES.
    • Added feed and discovery fields to ApiRoutesSchema.
    • Unified GetDiscoveryResponseSchema with DiscoverySchema as single source of truth.
    • Client getRoute('feed') fallback updated from /api/v1/data to /api/v1/feed.

    Type safety:

    • Extracted ApiRouteType from ApiRoutes keys for type-safe client route resolution.
    • Removed as any type casting in client route access.
  • Updated dependencies [f08ffc3]

  • Updated dependencies [e0b0a78]

    • @objectstack/runtime@3.4.0

@objectstack/cli@3.4.0

Patch Changes

  • Updated dependencies [f08ffc3]
  • Updated dependencies [e0b0a78]
    • @objectstack/spec@3.4.0
    • @objectstack/runtime@3.4.0
    • @objectstack/core@3.4.0
    • @objectstack/objectql@3.4.0
    • @objectstack/driver-memory@3.4.0
    • @objectstack/plugin-hono-server@3.4.0
    • @objectstack/rest@3.4.0

@objectstack/client-react@3.4.0

Patch Changes

  • Updated dependencies [f08ffc3]
  • Updated dependencies [e0b0a78]
    • @objectstack/spec@3.4.0
    • @objectstack/client@3.4.0
    • @objectstack/core@3.4.0

@objectstack/metadata@3.4.0

Patch Changes

  • Updated dependencies [f08ffc3]
  • Updated dependencies [e0b0a78]
    • @objectstack/spec@3.4.0
    • @objectstack/core@3.4.0
    • @objectstack/types@3.4.0

@objectstack/driver-memory@3.4.0

Patch Changes

  • Updated dependencies [f08ffc3]
  • Updated dependencies [e0b0a78]
    • @objectstack/spec@3.4.0
    • @objectstack/core@3.4.0

@objectstack/driver-sql@3.3.2

Patch Changes

  • Updated dependencies [f08ffc3]
  • Updated dependencies [e0b0a78]
    • @objectstack/spec@3.4.0
    • @objectstack/core@3.4.0

@objectstack/driver-turso@3.3.2

Patch Changes

  • Updated dependencies [f08ffc3]
  • Updated dependencies [e0b0a78]
    • @objectstack/spec@3.4.0
    • @objectstack/core@3.4.0
    • @objectstack/driver-sql@3.3.2

@objectstack/plugin-audit@3.4.0

Patch Changes

  • Updated dependencies [f08ffc3]
  • Updated dependencies [e0b0a78]
    • @objectstack/spec@3.4.0
    • @objectstack/core@3.4.0

@objectstack/plugin-auth@3.4.0

Patch Changes

  • e0b0a78: Deprecate DataEngineQueryOptions in favor of QueryAST-aligned EngineQueryOptions.

    Engine, Protocol, and Client now use standard QueryAST parameter names:

    • filterwhere
    • selectfields
    • sortorderBy
    • skipoffset
    • populateexpand
    • toplimit

    The old DataEngine* schemas and types are preserved with @deprecated markers for backward compatibility.

  • Updated dependencies [f08ffc3]

  • Updated dependencies [e0b0a78]

    • @objectstack/spec@3.4.0
    • @objectstack/core@3.4.0

@objectstack/plugin-dev@3.4.0

Patch Changes

  • Updated dependencies [f08ffc3]
  • Updated dependencies [e0b0a78]
    • @objectstack/spec@3.4.0
    • @objectstack/runtime@3.4.0
    • @objectstack/core@3.4.0
    • @objectstack/objectql@3.4.0
    • @objectstack/plugin-auth@3.4.0
    • @objectstack/driver-memory@3.4.0
    • @objectstack/plugin-hono-server@3.4.0
    • @objectstack/plugin-security@3.4.0
    • @objectstack/plugin-setup@3.4.0
    • @objectstack/rest@3.4.0
    • @objectstack/service-i18n@3.4.0

@objectstack/plugin-hono-server@3.4.0

Patch Changes

  • Updated dependencies [f08ffc3]
  • Updated dependencies [e0b0a78]
    • @objectstack/spec@3.4.0
    • @objectstack/core@3.4.0

@objectstack/plugin-msw@3.4.0

Patch Changes

  • Updated dependencies [f08ffc3]
  • Updated dependencies [e0b0a78]
    • @objectstack/spec@3.4.0
    • @objectstack/runtime@3.4.0
    • @objectstack/core@3.4.0
    • @objectstack/objectql@3.4.0
    • @objectstack/types@3.4.0

@objectstack/plugin-security@3.4.0

Patch Changes

  • Updated dependencies [f08ffc3]
  • Updated dependencies [e0b0a78]
    • @objectstack/spec@3.4.0
    • @objectstack/core@3.4.0

@objectstack/plugin-setup@3.4.0

Patch Changes

  • Updated dependencies [f08ffc3]
  • Updated dependencies [e0b0a78]
    • @objectstack/spec@3.4.0
    • @objectstack/core@3.4.0

@objectstack/rest@3.4.0

Patch Changes

  • Updated dependencies [f08ffc3]
  • Updated dependencies [e0b0a78]
    • @objectstack/spec@3.4.0
    • @objectstack/core@3.4.0

@objectstack/runtime@3.4.0

Patch Changes

  • f08ffc3: Fix discovery API endpoint routing and protocol consistency.

    Discovery route standardization:

    • All adapters (Express, Fastify, Hono, NestJS, Next.js, Nuxt, SvelteKit) now mount the discovery endpoint at {prefix}/discovery instead of {prefix} root.
    • .well-known/objectstack redirects now point to {prefix}/discovery.
    • Client connect() fallback URL changed from /api/v1 to /api/v1/discovery.
    • Runtime dispatcher handles both /discovery (standard) and / (legacy) for backward compatibility.

    Schema & route alignment:

    • Added storage (service: file-storage) and feed (service: data) routes to DEFAULT_DISPATCHER_ROUTES.
    • Added feed and discovery fields to ApiRoutesSchema.
    • Unified GetDiscoveryResponseSchema with DiscoverySchema as single source of truth.
    • Client getRoute('feed') fallback updated from /api/v1/data to /api/v1/feed.

    Type safety:

    • Extracted ApiRouteType from ApiRoutes keys for type-safe client route resolution.
    • Removed as any type casting in client route access.
  • e0b0a78: Deprecate DataEngineQueryOptions in favor of QueryAST-aligned EngineQueryOptions.

    Engine, Protocol, and Client now use standard QueryAST parameter names:

    • filterwhere
    • selectfields
    • sortorderBy
    • skipoffset
    • populateexpand
    • toplimit

    The old DataEngine* schemas and types are preserved with @deprecated markers for backward compatibility.

  • Updated dependencies [f08ffc3]

  • Updated dependencies [e0b0a78]

    • @objectstack/spec@3.4.0
    • @objectstack/core@3.4.0
    • @objectstack/rest@3.4.0
    • @objectstack/types@3.4.0

@objectstack/service-ai@3.4.0

Patch Changes

  • Updated dependencies [f08ffc3]
  • Updated dependencies [e0b0a78]
    • @objectstack/spec@3.4.0
    • @objectstack/core@3.4.0

@objectstack/service-analytics@3.4.0

Patch Changes

  • Updated dependencies [f08ffc3]
  • Updated dependencies [e0b0a78]
    • @objectstack/spec@3.4.0
    • @objectstack/core@3.4.0

@objectstack/service-automation@3.4.0

Patch Changes

  • Updated dependencies [f08ffc3]
  • Updated dependencies [e0b0a78]
    • @objectstack/spec@3.4.0
    • @objectstack/core@3.4.0

@objectstack/service-cache@3.4.0

Patch Changes

  • Updated dependencies [f08ffc3]
  • Updated dependencies [e0b0a78]
    • @objectstack/spec@3.4.0
    • @objectstack/core@3.4.0

@objectstack/service-feed@3.4.0

Patch Changes

  • Updated dependencies [f08ffc3]
  • Updated dependencies [e0b0a78]
    • @objectstack/spec@3.4.0
    • @objectstack/core@3.4.0

@objectstack/service-i18n@3.4.0

Patch Changes

  • Updated dependencies [f08ffc3]
  • Updated dependencies [e0b0a78]
    • @objectstack/spec@3.4.0
    • @objectstack/core@3.4.0

@objectstack/service-job@3.4.0

Patch Changes

  • Updated dependencies [f08ffc3]
  • Updated dependencies [e0b0a78]
    • @objectstack/spec@3.4.0
    • @objectstack/core@3.4.0

@objectstack/service-queue@3.4.0

Patch Changes

  • Updated dependencies [f08ffc3]
  • Updated dependencies [e0b0a78]
    • @objectstack/spec@3.4.0
    • @objectstack/core@3.4.0

@objectstack/service-realtime@3.4.0

Patch Changes

  • Updated dependencies [f08ffc3]
  • Updated dependencies [e0b0a78]
    • @objectstack/spec@3.4.0
    • @objectstack/core@3.4.0

@objectstack/service-storage@3.4.0

Patch Changes

  • Updated dependencies [f08ffc3]
  • Updated dependencies [e0b0a78]
    • @objectstack/spec@3.4.0
    • @objectstack/core@3.4.0

@objectstack/types@3.4.0

Patch Changes

  • Updated dependencies [f08ffc3]
  • Updated dependencies [e0b0a78]
    • @objectstack/spec@3.4.0

create-objectstack@3.4.0

objectstack-vscode@3.4.0

@example/app-crm@3.0.26

Patch Changes

  • Updated dependencies [f08ffc3]
  • Updated dependencies [e0b0a78]
    • @objectstack/spec@3.4.0

@example/app-host@3.0.26

Patch Changes

  • Updated dependencies [f08ffc3]
  • Updated dependencies [e0b0a78]
    • @objectstack/spec@3.4.0
    • @objectstack/runtime@3.4.0
    • @objectstack/objectql@3.4.0
    • @objectstack/plugin-auth@3.4.0
    • @example/app-crm@3.0.26
    • @example/app-todo@3.0.26
    • @example/plugin-bi@3.0.26
    • @objectstack/metadata@3.4.0
    • @objectstack/driver-memory@3.4.0
    • @objectstack/plugin-hono-server@3.4.0

@example/app-todo@3.0.26

Patch Changes

  • Updated dependencies [f08ffc3]
  • Updated dependencies [e0b0a78]
    • @objectstack/spec@3.4.0
    • @objectstack/client@3.4.0
    • @objectstack/runtime@3.4.0
    • @objectstack/objectql@3.4.0
    • @objectstack/driver-memory@3.4.0

@example/plugin-bi@3.0.26

Patch Changes

  • Updated dependencies [f08ffc3]
  • Updated dependencies [e0b0a78]
    • @objectstack/spec@3.4.0

@objectstack/docs@3.4.0

@vercel
Copy link
Copy Markdown

vercel bot commented Mar 25, 2026

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

Project Deployment Actions Updated (UTC)
objectstack-play Ready Ready Preview, Comment Mar 31, 2026 4:04am
spec Canceled Canceled Mar 31, 2026 4:04am

Request Review

@vercel
Copy link
Copy Markdown

vercel bot commented Mar 25, 2026

Deployment failed with the following error:

Invalid vercel.json file provided

@github-actions github-actions bot force-pushed the changeset-release/main branch from a160547 to 217a67e Compare March 25, 2026 12:51
@github-actions github-actions bot force-pushed the changeset-release/main branch from 217a67e to 71263c3 Compare March 27, 2026 01:42
@github-actions github-actions bot force-pushed the changeset-release/main branch from 71263c3 to bd993c4 Compare March 27, 2026 01:49
@github-actions github-actions bot force-pushed the changeset-release/main branch from bd993c4 to ca73979 Compare March 30, 2026 02:17
@github-actions github-actions bot force-pushed the changeset-release/main branch 2 times, most recently from 3a16f0c to 188dae4 Compare March 30, 2026 02:55
@github-actions github-actions bot force-pushed the changeset-release/main branch from 188dae4 to d7cc922 Compare March 30, 2026 04:02
@github-actions github-actions bot force-pushed the changeset-release/main branch from d7cc922 to eac1951 Compare March 30, 2026 06:03
@github-actions github-actions bot force-pushed the changeset-release/main branch from eac1951 to 80a6e0a Compare March 31, 2026 03:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant