Skip to content

chore: version packages#2652

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

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

Conversation

@github-actions

@github-actions github-actions Bot commented Jul 6, 2026

Copy link
Copy Markdown
Contributor

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/metadata-core@12.4.0

Minor Changes

  • 60dc3ba: ADR-0087 P0 — enforce the protocol version handshake (make engines.protocol real).

    PluginEnginesSchema.protocol (ADR-0025 §3.2, protocol-first per §3.10 Implement ObjectStack protocol specification with Zod schemas and TypeScript interfaces #3) was declared, documented, and checked by no loader or installer — an ADR-0078 "declarable-but-inert" violation. A package built against an incompatible protocol major failed deep in a schema .parse() or a renderer contract instead of at the boundary.

    • @objectstack/spec: exports PROTOCOL_VERSION / PROTOCOL_MAJOR (kernel) — the single source of truth the handshake checks against. A drift test keeps it in lockstep with the package major.
    • @objectstack/metadata-core: adds checkProtocolCompat() (pure, major-grained range check), assertProtocolCompat(), and the structured ProtocolIncompatibleError (OS_PROTOCOL_INCOMPATIBLE, carrying both versions and the objectstack migrate meta --from N command). It refuses only on a positive mismatch determination; absent ranges are grandfathered (warn) and unrecognized ranges never cause a false rejection.
    • @objectstack/metadata-protocol: installPackage runs the handshake before writing to the registry — an incompatible package is refused with a machine-actionable diagnostic instead of crashing later.

    Additive and backward compatible: packages that declare no engines.protocol range keep loading (with a warning). Part of the ADR-0087 epic (Epic: implement ADR-0087 — metadata protocol upgrade contract (handshake · conversion · migration chain) #2643); resolves ADR-0087 P0: enforce the protocol handshake (make engines.protocol real) #2644.

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0

@objectstack/metadata-protocol@12.4.0

Minor Changes

  • 60dc3ba: ADR-0087 P0 — enforce the protocol version handshake (make engines.protocol real).

    PluginEnginesSchema.protocol (ADR-0025 §3.2, protocol-first per §3.10 Implement ObjectStack protocol specification with Zod schemas and TypeScript interfaces #3) was declared, documented, and checked by no loader or installer — an ADR-0078 "declarable-but-inert" violation. A package built against an incompatible protocol major failed deep in a schema .parse() or a renderer contract instead of at the boundary.

    • @objectstack/spec: exports PROTOCOL_VERSION / PROTOCOL_MAJOR (kernel) — the single source of truth the handshake checks against. A drift test keeps it in lockstep with the package major.
    • @objectstack/metadata-core: adds checkProtocolCompat() (pure, major-grained range check), assertProtocolCompat(), and the structured ProtocolIncompatibleError (OS_PROTOCOL_INCOMPATIBLE, carrying both versions and the objectstack migrate meta --from N command). It refuses only on a positive mismatch determination; absent ranges are grandfathered (warn) and unrecognized ranges never cause a false rejection.
    • @objectstack/metadata-protocol: installPackage runs the handshake before writing to the registry — an incompatible package is refused with a machine-actionable diagnostic instead of crashing later.

    Additive and backward compatible: packages that declare no engines.protocol range keep loading (with a warning). Part of the ADR-0087 epic (Epic: implement ADR-0087 — metadata protocol upgrade contract (handshake · conversion · migration chain) #2643); resolves ADR-0087 P0: enforce the protocol handshake (make engines.protocol real) #2644.

  • 1dd5dfd: feat(packages): edit a package manifest via PATCH /packages/:id

    Adds an editable path for a package's name / description / version after
    creation: SchemaRegistry.updatePackageManifest (merges in-memory, preserving
    lifecycle state), protocol.updatePackage (re-persists to sys_packages), and
    the PATCH /packages/:id route in the HTTP dispatcher. id / scope / type
    remain immutable.

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/metadata-core@12.4.0
    • @objectstack/core@12.4.0
    • @objectstack/formula@12.4.0
    • @objectstack/types@12.4.0

@objectstack/objectql@12.4.0

Minor Changes

  • 1dd5dfd: feat(packages): edit a package manifest via PATCH /packages/:id

    Adds an editable path for a package's name / description / version after
    creation: SchemaRegistry.updatePackageManifest (merges in-memory, preserving
    lifecycle state), protocol.updatePackage (re-persists to sys_packages), and
    the PATCH /packages/:id route in the HTTP dispatcher. id / scope / type
    remain immutable.

Patch Changes

  • Updated dependencies [60dc3ba]
  • Updated dependencies [1dd5dfd]
    • @objectstack/spec@12.4.0
    • @objectstack/metadata-core@12.4.0
    • @objectstack/metadata-protocol@12.4.0
    • @objectstack/core@12.4.0
    • @objectstack/formula@12.4.0
    • @objectstack/types@12.4.0

@objectstack/runtime@12.4.0

Minor Changes

  • 1dd5dfd: feat(packages): edit a package manifest via PATCH /packages/:id

    Adds an editable path for a package's name / description / version after
    creation: SchemaRegistry.updatePackageManifest (merges in-memory, preserving
    lifecycle state), protocol.updatePackage (re-persists to sys_packages), and
    the PATCH /packages/:id route in the HTTP dispatcher. id / scope / type
    remain immutable.

Patch Changes

  • Updated dependencies [60dc3ba]
  • Updated dependencies [1dd5dfd]
    • @objectstack/spec@12.4.0
    • @objectstack/objectql@12.4.0
    • @objectstack/core@12.4.0
    • @objectstack/formula@12.4.0
    • @objectstack/metadata@12.4.0
    • @objectstack/observability@12.4.0
    • @objectstack/driver-memory@12.4.0
    • @objectstack/driver-sql@12.4.0
    • @objectstack/driver-sqlite-wasm@12.4.0
    • @objectstack/plugin-auth@12.4.0
    • @objectstack/plugin-org-scoping@12.4.0
    • @objectstack/plugin-security@12.4.0
    • @objectstack/rest@12.4.0
    • @objectstack/service-cluster@12.4.0
    • @objectstack/service-datasource@12.4.0
    • @objectstack/service-i18n@12.4.0
    • @objectstack/types@12.4.0

@objectstack/spec@12.4.0

Minor Changes

  • 60dc3ba: ADR-0087 P0 — enforce the protocol version handshake (make engines.protocol real).

    PluginEnginesSchema.protocol (ADR-0025 §3.2, protocol-first per §3.10 Implement ObjectStack protocol specification with Zod schemas and TypeScript interfaces #3) was declared, documented, and checked by no loader or installer — an ADR-0078 "declarable-but-inert" violation. A package built against an incompatible protocol major failed deep in a schema .parse() or a renderer contract instead of at the boundary.

    • @objectstack/spec: exports PROTOCOL_VERSION / PROTOCOL_MAJOR (kernel) — the single source of truth the handshake checks against. A drift test keeps it in lockstep with the package major.
    • @objectstack/metadata-core: adds checkProtocolCompat() (pure, major-grained range check), assertProtocolCompat(), and the structured ProtocolIncompatibleError (OS_PROTOCOL_INCOMPATIBLE, carrying both versions and the objectstack migrate meta --from N command). It refuses only on a positive mismatch determination; absent ranges are grandfathered (warn) and unrecognized ranges never cause a false rejection.
    • @objectstack/metadata-protocol: installPackage runs the handshake before writing to the registry — an incompatible package is refused with a machine-actionable diagnostic instead of crashing later.

    Additive and backward compatible: packages that declare no engines.protocol range keep loading (with a warning). Part of the ADR-0087 epic (Epic: implement ADR-0087 — metadata protocol upgrade contract (handshake · conversion · migration chain) #2643); resolves ADR-0087 P0: enforce the protocol handshake (make engines.protocol real) #2644.

@objectstack/hono@12.4.0

Patch Changes

  • Updated dependencies [1dd5dfd]
    • @objectstack/runtime@12.4.0
    • @objectstack/plugin-hono-server@12.4.0
    • @objectstack/types@12.4.0

@objectstack/account@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/platform-objects@12.4.0

@objectstack/setup@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/platform-objects@12.4.0

@objectstack/studio@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/platform-objects@12.4.0

@objectstack/cli@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
  • Updated dependencies [1dd5dfd]
    • @objectstack/spec@12.4.0
    • @objectstack/objectql@12.4.0
    • @objectstack/runtime@12.4.0
    • @objectstack/account@12.4.0
    • @objectstack/setup@12.4.0
    • @objectstack/studio@12.4.0
    • @objectstack/client@12.4.0
    • @objectstack/cloud-connection@12.4.0
    • @objectstack/core@12.4.0
    • @objectstack/formula@12.4.0
    • @objectstack/lint@12.4.0
    • @objectstack/mcp@12.4.0
    • @objectstack/observability@12.4.0
    • @objectstack/platform-objects@12.4.0
    • @objectstack/driver-memory@12.4.0
    • @objectstack/driver-mongodb@12.4.0
    • @objectstack/driver-sql@12.4.0
    • @objectstack/driver-sqlite-wasm@12.4.0
    • @objectstack/plugin-approvals@12.4.0
    • @objectstack/plugin-audit@12.4.0
    • @objectstack/plugin-auth@12.4.0
    • @objectstack/plugin-email@12.4.0
    • @objectstack/plugin-hono-server@12.4.0
    • @objectstack/plugin-org-scoping@12.4.0
    • @objectstack/plugin-reports@12.4.0
    • @objectstack/plugin-security@12.4.0
    • @objectstack/plugin-sharing@12.4.0
    • @objectstack/plugin-webhooks@12.4.0
    • @objectstack/rest@12.4.0
    • @objectstack/service-analytics@12.4.0
    • @objectstack/service-automation@12.4.0
    • @objectstack/service-cache@12.4.0
    • @objectstack/service-datasource@12.4.0
    • @objectstack/service-job@12.4.0
    • @objectstack/service-messaging@12.4.0
    • @objectstack/service-package@12.4.0
    • @objectstack/service-queue@12.4.0
    • @objectstack/service-realtime@12.4.0
    • @objectstack/service-settings@12.4.0
    • @objectstack/service-storage@12.4.0
    • @objectstack/trigger-api@12.4.0
    • @objectstack/trigger-record-change@12.4.0
    • @objectstack/trigger-schedule@12.4.0
    • @objectstack/types@12.4.0
    • @objectstack/verify@12.4.0
    • @objectstack/console@12.4.0

@objectstack/client@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0

@objectstack/client-react@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/client@12.4.0
    • @objectstack/core@12.4.0

@objectstack/cloud-connection@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
  • Updated dependencies [1dd5dfd]
    • @objectstack/spec@12.4.0
    • @objectstack/runtime@12.4.0
    • @objectstack/core@12.4.0
    • @objectstack/types@12.4.0

@objectstack/connector-mcp@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0

@objectstack/connector-openapi@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0

@objectstack/connector-rest@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0

@objectstack/connector-slack@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0

@objectstack/core@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0

@objectstack/formula@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0

@objectstack/lint@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/formula@12.4.0
    • @objectstack/sdui-parser@12.4.0

@objectstack/mcp@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0
    • @objectstack/types@12.4.0

@objectstack/metadata@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/metadata-core@12.4.0
    • @objectstack/core@12.4.0
    • @objectstack/platform-objects@12.4.0
    • @objectstack/types@12.4.0
    • @objectstack/metadata-fs@12.4.0

@objectstack/metadata-fs@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/metadata-core@12.4.0

@objectstack/observability@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0

@objectstack/platform-objects@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/metadata-core@12.4.0

@objectstack/driver-memory@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0

@objectstack/driver-mongodb@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0

@objectstack/driver-sql@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0
    • @objectstack/types@12.4.0

@objectstack/driver-sqlite-wasm@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0
    • @objectstack/driver-sql@12.4.0

@objectstack/embedder-openai@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0

@objectstack/knowledge-memory@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0
    • @objectstack/service-knowledge@12.4.0

@objectstack/knowledge-ragflow@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0
    • @objectstack/service-knowledge@12.4.0

@objectstack/plugin-approvals@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/metadata-core@12.4.0
    • @objectstack/core@12.4.0
    • @objectstack/formula@12.4.0
    • @objectstack/platform-objects@12.4.0

@objectstack/plugin-audit@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0
    • @objectstack/platform-objects@12.4.0

@objectstack/plugin-auth@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0
    • @objectstack/platform-objects@12.4.0
    • @objectstack/types@12.4.0

@objectstack/plugin-dev@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
  • Updated dependencies [1dd5dfd]
    • @objectstack/spec@12.4.0
    • @objectstack/objectql@12.4.0
    • @objectstack/runtime@12.4.0
    • @objectstack/account@12.4.0
    • @objectstack/setup@12.4.0
    • @objectstack/studio@12.4.0
    • @objectstack/core@12.4.0
    • @objectstack/driver-memory@12.4.0
    • @objectstack/plugin-auth@12.4.0
    • @objectstack/plugin-hono-server@12.4.0
    • @objectstack/plugin-org-scoping@12.4.0
    • @objectstack/plugin-security@12.4.0
    • @objectstack/rest@12.4.0
    • @objectstack/service-i18n@12.4.0
    • @objectstack/types@12.4.0

@objectstack/plugin-email@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0
    • @objectstack/formula@12.4.0
    • @objectstack/platform-objects@12.4.0

@objectstack/plugin-hono-server@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0
    • @objectstack/observability@12.4.0
    • @objectstack/types@12.4.0

@objectstack/plugin-org-scoping@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0
    • @objectstack/platform-objects@12.4.0

@objectstack/plugin-reports@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0
    • @objectstack/platform-objects@12.4.0

@objectstack/plugin-security@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0
    • @objectstack/formula@12.4.0
    • @objectstack/platform-objects@12.4.0

@objectstack/plugin-sharing@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
  • Updated dependencies [1dd5dfd]
    • @objectstack/spec@12.4.0
    • @objectstack/objectql@12.4.0
    • @objectstack/core@12.4.0
    • @objectstack/formula@12.4.0
    • @objectstack/platform-objects@12.4.0

@objectstack/plugin-webhooks@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0
    • @objectstack/service-messaging@12.4.0

@objectstack/rest@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0
    • @objectstack/platform-objects@12.4.0
    • @objectstack/service-package@12.4.0

@objectstack/service-analytics@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0

@objectstack/service-automation@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0
    • @objectstack/formula@12.4.0

@objectstack/service-cache@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0
    • @objectstack/observability@12.4.0

@objectstack/service-cluster@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0

@objectstack/service-cluster-redis@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/service-cluster@12.4.0

@objectstack/service-datasource@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0

@objectstack/service-i18n@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0

@objectstack/service-job@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0
    • @objectstack/platform-objects@12.4.0

@objectstack/service-knowledge@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0

@objectstack/service-messaging@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0

@objectstack/service-package@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0

@objectstack/service-queue@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0
    • @objectstack/platform-objects@12.4.0

@objectstack/service-realtime@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0
    • @objectstack/platform-objects@12.4.0

@objectstack/service-settings@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0
    • @objectstack/platform-objects@12.4.0
    • @objectstack/types@12.4.0

@objectstack/service-storage@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0
    • @objectstack/observability@12.4.0
    • @objectstack/platform-objects@12.4.0

@objectstack/trigger-api@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0

@objectstack/trigger-record-change@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0

@objectstack/trigger-schedule@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0
    • @objectstack/core@12.4.0

@objectstack/types@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0

@objectstack/verify@12.4.0

Patch Changes

  • Updated dependencies [60dc3ba]
  • Updated dependencies [1dd5dfd]
    • @objectstack/spec@12.4.0
    • @objectstack/objectql@12.4.0
    • @objectstack/runtime@12.4.0
    • @objectstack/core@12.4.0
    • @objectstack/driver-sqlite-wasm@12.4.0
    • @objectstack/plugin-auth@12.4.0
    • @objectstack/plugin-hono-server@12.4.0
    • @objectstack/plugin-org-scoping@12.4.0
    • @objectstack/plugin-security@12.4.0
    • @objectstack/plugin-sharing@12.4.0
    • @objectstack/rest@12.4.0
    • @objectstack/service-analytics@12.4.0
    • @objectstack/service-automation@12.4.0
    • @objectstack/service-datasource@12.4.0
    • @objectstack/service-settings@12.4.0

@objectstack/console@12.4.0

create-objectstack@12.4.0

@objectstack/sdui-parser@12.4.0

objectstack-vscode@12.4.0

@objectstack/example-crm@4.0.74

Patch Changes

  • Updated dependencies [60dc3ba]
  • Updated dependencies [1dd5dfd]
    • @objectstack/spec@12.4.0
    • @objectstack/runtime@12.4.0

@objectstack/example-showcase@0.2.20

Patch Changes

  • Updated dependencies [60dc3ba]
  • Updated dependencies [1dd5dfd]
    • @objectstack/spec@12.4.0
    • @objectstack/runtime@12.4.0
    • @objectstack/cloud-connection@12.4.0
    • @objectstack/connector-rest@12.4.0
    • @objectstack/connector-slack@12.4.0
    • @objectstack/driver-sql@12.4.0

@objectstack/example-todo@4.0.74

Patch Changes

  • Updated dependencies [60dc3ba]
  • Updated dependencies [1dd5dfd]
    • @objectstack/spec@12.4.0
    • @objectstack/objectql@12.4.0
    • @objectstack/runtime@12.4.0
    • @objectstack/client@12.4.0
    • @objectstack/mcp@12.4.0
    • @objectstack/metadata@12.4.0
    • @objectstack/driver-sqlite-wasm@12.4.0
    • @objectstack/knowledge-memory@12.4.0
    • @objectstack/service-knowledge@12.4.0

@objectstack/example-embed-objectql@0.0.14

Patch Changes

  • Updated dependencies [60dc3ba]
  • Updated dependencies [1dd5dfd]
    • @objectstack/spec@12.4.0
    • @objectstack/objectql@12.4.0
    • @objectstack/driver-memory@12.4.0

@objectstack/dogfood@0.0.22

Patch Changes

  • Updated dependencies [60dc3ba]
  • Updated dependencies [1dd5dfd]
    • @objectstack/spec@12.4.0
    • @objectstack/objectql@12.4.0
    • @objectstack/example-crm@4.0.74
    • @objectstack/example-showcase@0.2.20
    • @objectstack/plugin-security@12.4.0
    • @objectstack/verify@12.4.0

@objectstack/downstream-contract@0.0.20

Patch Changes

  • Updated dependencies [60dc3ba]
    • @objectstack/spec@12.4.0

@vercel

vercel Bot commented Jul 6, 2026

Copy link
Copy Markdown

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

Project Deployment Actions Updated (UTC)
spec Ready Ready Preview, Comment Jul 6, 2026 1:29am

Request Review

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.

ADR-0087 P0: enforce the protocol handshake (make engines.protocol real)

1 participant