Skip to content

chore: version packages - #1541

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

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

Conversation

@github-actions

@github-actionsgithub-actionsBot commented Jun 2, 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/service-ai@7.7.0

Minor Changes

  • b391955: feat(ai): blueprint app-building — propose/draft the navigation app, not just the data model

    The plan-first blueprint (ADR-0033 §4) now also designs the app (the navigation shell end users open in the App Launcher), so "build me a project-management application" yields an openable app — not just its objects, views, and dashboards.

    • SolutionBlueprintSchema (@objectstack/spec/ai) gains an optional app: { name, label?, icon?, nav? }, where each nav entry targets a created object or dashboard. nav may be omitted to auto-surface every object (then dashboard).
    • apply_blueprint expands the app into an AppSchema body (single-level navigation of object/dashboard items) and drafts it last — through the same draft-gated, per-type-validated stageDraft path as everything else. It never sets isDefault.
    • propose_blueprint now asks the agent to include the app and reports counts.app.

    Still draft-gated: nothing is live until the human publishes. Scope is basic app-building (one app, flat nav); areas/groups/mobile-nav remain author-it-later via update_metadata.

  • 984ddff: feat(service-ai): ADR-0033 Phase A — draft-gate AI metadata authoring

    AI metadata mutations no longer publish straight to the live schema. Every write now routes through the ADR-0027 draft workspace via protocol.saveMetaItem({ mode:'draft' }) — nothing an agent authors goes live until a human reviews the diff and publishes. The draft is the approval gate (the never-enforced requiresConfirmation flag is retired).

    Adds a type-agnostic apply surface — create_metadata / update_metadata / describe_metadata / list_metadata — that works for any metadata type (view, dashboard, flow, …), validated against each type's Zod schema with errors fed back to the agent for self-correction. The existing object/field tools become thin draft-writing wrappers. Tool results return { status:'drafted', type, name, summary, changedKeys }.

  • f06b64e: feat(ai): ADR-0033 Phase C — plan-first blueprint authoring

    For high-level goals ("build me a project-management system") the metadata assistant now designs before it builds. Adds a SolutionBlueprintSchema (@objectstack/spec/ai) describing proposed objects, fields, relationships, views, dashboards, and seed data with stated assumptions, plus two tools:

    • propose_blueprint(goal) — emits a structured blueprint via structured output. Nothing is persisted; the agent presents it for conversational confirmation and asks at most 1–2 structure-deciding questions.
    • apply_blueprint(blueprint) — only after the human approves, batch-drafts every artifact through the Phase A draft path (protocol.saveMetaItem({mode:'draft'})), validated per-type and partial-tolerant (a bad item is reported, the rest still draft). Seed data is reported as proposed, not auto-applied (no runtime dataset type).

    A new solution_design skill carries the plan-first instructions and is bound to metadata_assistant alongside metadata_authoring. The shared draft-write primitive is exported from the metadata tools as stageDraft and reused, keeping one draft-write path.

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [825ab06]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/formula@7.7.0
    • @objectstack/core@7.7.0
    • @objectstack/types@7.7.0

@objectstack/spec@7.7.0

Minor Changes

  • b391955: feat(ai): blueprint app-building — propose/draft the navigation app, not just the data model

    The plan-first blueprint (ADR-0033 §4) now also designs the app (the navigation shell end users open in the App Launcher), so "build me a project-management application" yields an openable app — not just its objects, views, and dashboards.

    • SolutionBlueprintSchema (@objectstack/spec/ai) gains an optional app: { name, label?, icon?, nav? }, where each nav entry targets a created object or dashboard. nav may be omitted to auto-surface every object (then dashboard).
    • apply_blueprint expands the app into an AppSchema body (single-level navigation of object/dashboard items) and drafts it last — through the same draft-gated, per-type-validated stageDraft path as everything else. It never sets isDefault.
    • propose_blueprint now asks the agent to include the app and reports counts.app.

    Still draft-gated: nothing is live until the human publishes. Scope is basic app-building (one app, flat nav); areas/groups/mobile-nav remain author-it-later via update_metadata.

  • f06b64e: feat(ai): ADR-0033 Phase C — plan-first blueprint authoring

    For high-level goals ("build me a project-management system") the metadata assistant now designs before it builds. Adds a SolutionBlueprintSchema (@objectstack/spec/ai) describing proposed objects, fields, relationships, views, dashboards, and seed data with stated assumptions, plus two tools:

    • propose_blueprint(goal) — emits a structured blueprint via structured output. Nothing is persisted; the agent presents it for conversational confirmation and asks at most 1–2 structure-deciding questions.
    • apply_blueprint(blueprint) — only after the human approves, batch-drafts every artifact through the Phase A draft path (protocol.saveMetaItem({mode:'draft'})), validated per-type and partial-tolerant (a bad item is reported, the rest still draft). Seed data is reported as proposed, not auto-applied (no runtime dataset type).

    A new solution_design skill carries the plan-first instructions and is bound to metadata_assistant alongside metadata_authoring. The shared draft-write primitive is exported from the metadata tools as stageDraft and reused, keeping one draft-write path.

  • 023bf93: fix(spec): reject unknown top-level keys on ObjectSchema.create() (Object-level workflows: [...] (and any unknown ObjectSchema key) is silently stripped at build — no error/warning (ADR-0032 'no silent failure', metadata layer) #1535)

    ObjectSchemaBase is a plain z.object({...}) (Zod default .strip()), so any
    unknown top-level key passed to ObjectSchema.create()workflows, a typo'd
    validation/indexs, etc. — was discarded silently: no error, no warning, and a
    green tsc. Declarative metadata an author believed they shipped (e.g. object-level
    workflows: [...]) vanished from every built artifact, dead from day one. This is the
    metadata-shape analogue of ADR-0032's "no silent failure" principle.

    create() now rejects unknown top-level keys with a precise, fixable build error that
    names the offending key(s), suggests the intended key on a likely typo
    (validationvalidations), and — for known-confusable keys like workflows
    points authors at the supported mechanism (a lifecycle hook src/objects/<name>.hook.ts
    or a top-level record_change flow; there is no object-level workflows[] field). The
    factory signature also constrains excess keys to never, so the mistake is caught at
    tsc time as well as at build.

    The non-strict ObjectSchema.parse() load path (registry/artifact validation) is
    unchanged.

    Also fixes two platform objects (sys_secret, sys_setting_audit) that carried
    silently-stripped views/scope/defaultViewName keys: their intended list views are
    migrated to the supported listViews field (type: 'list''grid') so they now
    render instead of being dropped. The objectstack-data skill's CRM blueprint no longer
    teaches the non-existent workflows[] shape.

@objectstack/express@7.7.0

Patch Changes

  • @objectstack/runtime@7.7.0

@objectstack/fastify@7.7.0

Patch Changes

  • @objectstack/runtime@7.7.0

@objectstack/hono@7.7.0

Patch Changes

  • @objectstack/plugin-hono-server@7.7.0
  • @objectstack/runtime@7.7.0
  • @objectstack/types@7.7.0

@objectstack/nestjs@7.7.0

Patch Changes

  • @objectstack/runtime@7.7.0

@objectstack/nextjs@7.7.0

Patch Changes

  • @objectstack/runtime@7.7.0

@objectstack/nuxt@7.7.0

Patch Changes

  • @objectstack/runtime@7.7.0

@objectstack/sveltekit@7.7.0

Patch Changes

  • @objectstack/runtime@7.7.0

@objectstack/cli@7.7.0

Patch Changes

  • 1e0b6d7: fix(cli): honor OS_LOG_LEVEL / --log-level instead of hardcoding the kernel logger to silent (cli: serve/start hardcodes logger level "silent" — flow & hook execution failures are invisible (defeats ADR-0032 "fail loudly") #1533)

    os serve / os start built the runtime kernel with a hardcoded { level: 'silent' } logger, suppressing every plugin logger.warn / logger.error. A record-change flow whose condition or node faulted (surfaced via logger.warn in plugin-trigger-record-change) produced zero operator-visible output — the flow simply had no effect — undercutting ADR-0032's "fail loudly" promise when run via the CLI.

    The kernel logger level is now resolved from --verbose (→ debug) → --log-level <level>$OS_LOG_LEVEL / $LOG_LEVEL → default warn. Defaulting to warn surfaces flow/hook execution-failure warnings and automation-engine errors out of the box, while the existing boot-quiet window still suppresses info-level startup chatter. Pass --log-level silent (or OS_LOG_LEVEL=silent) to restore the previous fully-quiet behavior. start and dev gain a matching --log-level flag and forward it (plus the existing --verbose) to the spawned serve.

  • Updated dependencies [b391955]

  • Updated dependencies [984ddff]

  • Updated dependencies [f06b64e]

  • Updated dependencies [825ab06]

  • Updated dependencies [023bf93]

    • @objectstack/spec@7.7.0
    • @objectstack/service-ai@7.7.0
    • @objectstack/formula@7.7.0
    • @objectstack/platform-objects@7.7.0
    • @objectstack/account@7.7.0
    • @objectstack/client@7.7.0
    • @objectstack/core@7.7.0
    • @objectstack/objectql@7.7.0
    • @objectstack/observability@7.7.0
    • @objectstack/driver-memory@7.7.0
    • @objectstack/driver-mongodb@7.7.0
    • @objectstack/driver-sql@7.7.0
    • @objectstack/driver-sqlite-wasm@7.7.0
    • @objectstack/plugin-approvals@7.7.0
    • @objectstack/plugin-audit@7.7.0
    • @objectstack/plugin-auth@7.7.0
    • @objectstack/plugin-email@7.7.0
    • @objectstack/plugin-hono-server@7.7.0
    • @objectstack/plugin-mcp-server@7.7.0
    • @objectstack/plugin-org-scoping@7.7.0
    • @objectstack/plugin-reports@7.7.0
    • @objectstack/plugin-security@7.7.0
    • @objectstack/plugin-sharing@7.7.0
    • @objectstack/plugin-trigger-record-change@7.7.0
    • @objectstack/plugin-trigger-schedule@7.7.0
    • @objectstack/plugin-webhooks@7.7.0
    • @objectstack/rest@7.7.0
    • @objectstack/runtime@7.7.0
    • @objectstack/service-analytics@7.7.0
    • @objectstack/service-automation@7.7.0
    • @objectstack/service-cache@7.7.0
    • @objectstack/service-datasource@7.7.0
    • @objectstack/service-feed@7.7.0
    • @objectstack/service-job@7.7.0
    • @objectstack/service-messaging@7.7.0
    • @objectstack/service-package@7.7.0
    • @objectstack/service-queue@7.7.0
    • @objectstack/service-realtime@7.7.0
    • @objectstack/service-settings@7.7.0
    • @objectstack/service-storage@7.7.0
    • @objectstack/types@7.7.0
    • @objectstack/console@7.7.0

@objectstack/client@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/core@7.7.0

@objectstack/client-react@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/client@7.7.0
    • @objectstack/core@7.7.0

@objectstack/connector-mcp@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/core@7.7.0

@objectstack/connector-openapi@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/core@7.7.0

@objectstack/connector-rest@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/core@7.7.0

@objectstack/connector-slack@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/core@7.7.0

@objectstack/core@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0

@objectstack/formula@7.7.0

Patch Changes

  • 825ab06: fix(formula): hydrate string-serialized numeric fields in CEL comparisons (automation: flow conditions on numeric string-serialized fields (rating/currency/percent) fault under strict CEL and silently dead-end the flow (sibling of #1530) #1534)

    Numeric fields that serialize as strings — Field.rating(allowHalf)"5.0", Field.currency(scale)"250000.00", Field.percent — made comparisons like record.rating >= 4 fault under strict CEL with no such overload: dyn >= int. In flow decision/edge conditions this silently dead-ended the run (no edge matched), and in objectql applyFormulaPlan it swallowed to null.

    The CEL engine now retries an evaluation once with purely-numeric strings hydrated to numbers, but only after a no such overload fault — so a comparison that already type-checks is never re-interpreted (a zip like "02134" stays a string in record.zip == "02134"). Because both the automation condition path (service-automationevaluateCondition) and the objectql formula path route through ExpressionEngine.evaluate, both are fixed consistently. A genuinely non-numeric operand (e.g. record.rating >= 4 where rating is "high") still faults loudly rather than being silently rescued.

  • Updated dependencies [b391955]

  • Updated dependencies [f06b64e]

  • Updated dependencies [023bf93]

    • @objectstack/spec@7.7.0

@objectstack/metadata@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/platform-objects@7.7.0
    • @objectstack/core@7.7.0
    • @objectstack/types@7.7.0
    • @objectstack/metadata-core@7.7.0
    • @objectstack/metadata-fs@7.7.0

@objectstack/metadata-fs@7.7.0

Patch Changes

  • @objectstack/metadata-core@7.7.0

@objectstack/objectql@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [825ab06]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/formula@7.7.0
    • @objectstack/core@7.7.0
    • @objectstack/types@7.7.0
    • @objectstack/metadata-core@7.7.0

@objectstack/observability@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0

@objectstack/platform-objects@7.7.0

Patch Changes

  • 023bf93: fix(spec): reject unknown top-level keys on ObjectSchema.create() (Object-level workflows: [...] (and any unknown ObjectSchema key) is silently stripped at build — no error/warning (ADR-0032 'no silent failure', metadata layer) #1535)

    ObjectSchemaBase is a plain z.object({...}) (Zod default .strip()), so any
    unknown top-level key passed to ObjectSchema.create()workflows, a typo'd
    validation/indexs, etc. — was discarded silently: no error, no warning, and a
    green tsc. Declarative metadata an author believed they shipped (e.g. object-level
    workflows: [...]) vanished from every built artifact, dead from day one. This is the
    metadata-shape analogue of ADR-0032's "no silent failure" principle.

    create() now rejects unknown top-level keys with a precise, fixable build error that
    names the offending key(s), suggests the intended key on a likely typo
    (validationvalidations), and — for known-confusable keys like workflows
    points authors at the supported mechanism (a lifecycle hook src/objects/<name>.hook.ts
    or a top-level record_change flow; there is no object-level workflows[] field). The
    factory signature also constrains excess keys to never, so the mistake is caught at
    tsc time as well as at build.

    The non-strict ObjectSchema.parse() load path (registry/artifact validation) is
    unchanged.

    Also fixes two platform objects (sys_secret, sys_setting_audit) that carried
    silently-stripped views/scope/defaultViewName keys: their intended list views are
    migrated to the supported listViews field (type: 'list''grid') so they now
    render instead of being dropped. The objectstack-data skill's CRM blueprint no longer
    teaches the non-existent workflows[] shape.

  • Updated dependencies [b391955]

  • Updated dependencies [f06b64e]

  • Updated dependencies [023bf93]

    • @objectstack/spec@7.7.0

@objectstack/driver-memory@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/core@7.7.0

@objectstack/driver-mongodb@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/core@7.7.0

@objectstack/driver-sql@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/core@7.7.0

@objectstack/driver-sqlite-wasm@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/core@7.7.0
    • @objectstack/driver-sql@7.7.0

@objectstack/embedder-openai@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0

@objectstack/knowledge-memory@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/core@7.7.0
    • @objectstack/service-knowledge@7.7.0

@objectstack/knowledge-ragflow@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/core@7.7.0
    • @objectstack/service-knowledge@7.7.0

@objectstack/plugin-approvals@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [825ab06]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/formula@7.7.0
    • @objectstack/platform-objects@7.7.0
    • @objectstack/core@7.7.0
    • @objectstack/metadata-core@7.7.0

@objectstack/plugin-audit@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/platform-objects@7.7.0
    • @objectstack/core@7.7.0

@objectstack/plugin-auth@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/platform-objects@7.7.0
    • @objectstack/core@7.7.0
    • @objectstack/types@7.7.0

@objectstack/plugin-dev@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/core@7.7.0
    • @objectstack/objectql@7.7.0
    • @objectstack/driver-memory@7.7.0
    • @objectstack/plugin-auth@7.7.0
    • @objectstack/plugin-hono-server@7.7.0
    • @objectstack/plugin-org-scoping@7.7.0
    • @objectstack/plugin-security@7.7.0
    • @objectstack/rest@7.7.0
    • @objectstack/runtime@7.7.0
    • @objectstack/service-i18n@7.7.0
    • @objectstack/types@7.7.0

@objectstack/plugin-email@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/platform-objects@7.7.0
    • @objectstack/core@7.7.0

@objectstack/plugin-hono-server@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/core@7.7.0
    • @objectstack/types@7.7.0

@objectstack/plugin-mcp-server@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/core@7.7.0
    • @objectstack/types@7.7.0

@objectstack/plugin-msw@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/core@7.7.0
    • @objectstack/objectql@7.7.0
    • @objectstack/runtime@7.7.0
    • @objectstack/types@7.7.0

@objectstack/plugin-org-scoping@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/platform-objects@7.7.0
    • @objectstack/core@7.7.0

@objectstack/plugin-reports@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/platform-objects@7.7.0
    • @objectstack/core@7.7.0

@objectstack/plugin-security@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/platform-objects@7.7.0
    • @objectstack/core@7.7.0

@objectstack/plugin-sharing@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/platform-objects@7.7.0
    • @objectstack/core@7.7.0
    • @objectstack/objectql@7.7.0

@objectstack/plugin-trigger-record-change@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/core@7.7.0

@objectstack/plugin-trigger-schedule@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/core@7.7.0

@objectstack/plugin-webhooks@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/core@7.7.0
    • @objectstack/service-messaging@7.7.0

@objectstack/rest@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/core@7.7.0
    • @objectstack/service-package@7.7.0

@objectstack/runtime@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [825ab06]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/formula@7.7.0
    • @objectstack/core@7.7.0
    • @objectstack/metadata@7.7.0
    • @objectstack/objectql@7.7.0
    • @objectstack/observability@7.7.0
    • @objectstack/driver-memory@7.7.0
    • @objectstack/driver-sql@7.7.0
    • @objectstack/driver-sqlite-wasm@7.7.0
    • @objectstack/plugin-auth@7.7.0
    • @objectstack/plugin-org-scoping@7.7.0
    • @objectstack/plugin-security@7.7.0
    • @objectstack/rest@7.7.0
    • @objectstack/service-cluster@7.7.0
    • @objectstack/service-i18n@7.7.0
    • @objectstack/types@7.7.0

@objectstack/service-analytics@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/core@7.7.0

@objectstack/service-automation@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [825ab06]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/formula@7.7.0
    • @objectstack/core@7.7.0

@objectstack/service-cache@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/core@7.7.0
    • @objectstack/observability@7.7.0

@objectstack/service-cluster@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/core@7.7.0

@objectstack/service-cluster-redis@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/service-cluster@7.7.0

@objectstack/service-datasource@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/core@7.7.0

@objectstack/service-feed@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/core@7.7.0

@objectstack/service-i18n@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/core@7.7.0

@objectstack/service-job@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/platform-objects@7.7.0
    • @objectstack/core@7.7.0

@objectstack/service-knowledge@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/core@7.7.0

@objectstack/service-messaging@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/core@7.7.0

@objectstack/service-package@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/core@7.7.0

@objectstack/service-queue@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/platform-objects@7.7.0
    • @objectstack/core@7.7.0

@objectstack/service-realtime@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/platform-objects@7.7.0
    • @objectstack/core@7.7.0

@objectstack/service-settings@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/platform-objects@7.7.0
    • @objectstack/core@7.7.0
    • @objectstack/types@7.7.0

@objectstack/service-storage@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/core@7.7.0
    • @objectstack/observability@7.7.0

@objectstack/types@7.7.0

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0

@objectstack/account@7.7.0

@objectstack/console@7.7.0

create-objectstack@7.7.0

@objectstack/metadata-core@7.7.0

objectstack-vscode@7.7.0

@objectstack/example-crm@4.0.35

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/runtime@7.7.0

@objectstack/example-showcase@0.1.5

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/connector-rest@7.7.0
    • @objectstack/connector-slack@7.7.0
    • @objectstack/runtime@7.7.0

@example/app-todo@4.0.35

Patch Changes

  • Updated dependencies [b391955]
  • Updated dependencies [984ddff]
  • Updated dependencies [f06b64e]
  • Updated dependencies [023bf93]
    • @objectstack/spec@7.7.0
    • @objectstack/service-ai@7.7.0
    • @objectstack/client@7.7.0
    • @objectstack/metadata@7.7.0
    • @objectstack/objectql@7.7.0
    • @objectstack/driver-sqlite-wasm@7.7.0
    • @objectstack/knowledge-memory@7.7.0
    • @objectstack/runtime@7.7.0
    • @objectstack/service-knowledge@7.7.0

@vercel

vercelBot commented Jun 2, 2026

Copy link
Copy Markdown

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

ProjectDeploymentActionsUpdated (UTC)
specReadyReadyPreview, CommentJun 2, 2026 12:10pm

Request Review

Sign up for freeto 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

@os-zhuang