Skip to content

chore: version packages - #1964

Merged
os-zhuang merged 1 commit into
mainfrom
changeset-release/main
Jun 16, 2026
Merged

chore: version packages#1964
os-zhuang merged 1 commit into
mainfrom
changeset-release/main

Conversation

@github-actions

@github-actionsgithub-actionsBot commented Jun 16, 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/cli@9.8.0

Minor Changes

Patch Changes

  • fcd3471: fix(build): collect per-doc order: and group: frontmatter so book sorting/placement works

    The doc collector (collectDocsFromSrc) parsed only title:/description: from
    each src/docs/*.md frontmatter, so the order and group fields defined on the
    Doc schema (ADR-0046 §6) were never populated on the compiled doc item. The
    book resolver (resolveBookTree) already sorts group members by doc.order then
    label and honors explicit doc.group placement — but with the collection half
    silently dropping both fields, frontmatter-driven sorting/placement never reached
    the artifact.

    parseFrontmatter now also reads order: (parsed to a number; ignored when
    non-numeric) and group: (string), threading them onto the collected doc when
    present. Absent leaves both undefined so the schema/resolver defaults apply. Also
    corrects the order JSDoc in doc.zod.ts to match the resolver, which treats an
    absent order as 0 (not "after ordered siblings").

  • Updated dependencies [c17d2c8]

  • Updated dependencies [7fe0b91]

  • Updated dependencies [76ac582]

  • Updated dependencies [97c55b3]

  • Updated dependencies [1b1f490]

  • Updated dependencies [884bf2f]

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

@objectstack/formula@9.8.0

Minor Changes

  • c17d2c8: feat(formula): register the CEL functions the authoring catalog advertises (daysBetween, abs, round, min, max, upper, lower, contains, startsWith, endsWith, matches, len, isEmpty, date, datetime)

    introspectScope / CEL_STDLIB_FUNCTIONS advertised 25 functions to authors
    (incl. AI), but only 8 were registered — 14 faulted at runtime (daysBetween,
    abs, round, min, max, upper, lower, len, isEmpty, contains,
    startsWith, endsWith, matches, plus date/datetime). Authors were told
    to call functions that don't exist (e.g. daysBetween for "days remaining").

    Register the genuinely-useful set in registerStdLib with dyn-lenient signatures
    (so a Field.date arriving as a string still works) and internal coercion, and
    reconcile the catalog so every advertised entry resolves — guarded by a test that
    evaluates every CEL_STDLIB_FUNCTIONS entry. Pure additions; no behavior change
    to existing expressions.

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0

@objectstack/objectql@9.8.0

Minor Changes

  • 76ac582: engine: accept execution context via the trailing options argument on the read
    methods (find / findOne / count / aggregate), aligning them with the
    write methods (insert / update).

    Previously reads took context only inside the query (query.context) while
    writes took it in a trailing options.context. The same { context } object was
    therefore correct as the 3rd argument to insert but silently dropped as the
    3rd argument to find — a recurring footgun where an intended isSystem bypass
    just vanished (e.g. control-plane reads returning empty once org-scoping hooks
    were added). Now "execution context goes in the trailing options argument" is a
    single rule across reads and writes. query.context remains fully supported; when
    both are supplied, options.context wins.

  • 884bf2f: feat: record clone — wire the object.enable.clone capability to a real runtime (previously a parsed-but-dead flag).

    • objectql: new protocol.cloneData({ object, id, overrides?, context? }) — reads the source record, drops engine-owned columns (id + audit created_at/created_by/updated_at/updated_by, plus system-flagged, autonumber, formula and summary fields) so the insert path re-derives them, applies caller overrides last, and inserts the copy. Shallow by design (duplicates the record's own fields, not its child records). Gated by schema.enable.clone: default-on, an explicit enable.clone === false throws 403 CLONE_DISABLED.
    • rest: new POST /api/v1/data/:object/:id/clone (201 → { object, id, sourceId, record }). Optional body { overrides } (or a bare field map) overrides copied values, e.g. a new name or a cleared unique field. Honors the same auth + enable.apiEnabled/apiMethods gates as the rest of the data surface; enable.clone === false → 403.

    Reclassifies object.enable.clonedead → live in the spec liveness ledger.

Patch Changes

  • Updated dependencies [c17d2c8]
  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/formula@9.8.0
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0
    • @objectstack/metadata-core@9.8.0
    • @objectstack/types@9.8.0

@objectstack/rest@9.8.0

Minor Changes

  • 7fe0b91: feat(rest): enforce object-level API exposure (enable.apiEnabled / enable.apiMethods) on the REST data surface (ADR-0049 [P0][security] Object apiEnabled/apiMethods not enforced by REST #1889). Previously these flags were parsed but unenforced — an object could not be hidden from the automatic API, a false sense of security. Now: apiEnabled: false → the object's /api/v1/data/{object} routes return 404 (existence not revealed); a non-empty apiMethods whitelist → operations outside it return 405. Enforced across list/get/create/query/update/delete/import/export/batch/createMany/updateMany/deleteMany. Default-allow (objects with no enable block, or apiEnabled unset/true and no apiMethods) behave exactly as before — no regression. This is the external API boundary only; internal callers (hooks, flows, objectql) are unaffected.

  • 884bf2f: feat: record clone — wire the object.enable.clone capability to a real runtime (previously a parsed-but-dead flag).

    • objectql: new protocol.cloneData({ object, id, overrides?, context? }) — reads the source record, drops engine-owned columns (id + audit created_at/created_by/updated_at/updated_by, plus system-flagged, autonumber, formula and summary fields) so the insert path re-derives them, applies caller overrides last, and inserts the copy. Shallow by design (duplicates the record's own fields, not its child records). Gated by schema.enable.clone: default-on, an explicit enable.clone === false throws 403 CLONE_DISABLED.
    • rest: new POST /api/v1/data/:object/:id/clone (201 → { object, id, sourceId, record }). Optional body { overrides } (or a bare field map) overrides copied values, e.g. a new name or a cleared unique field. Honors the same auth + enable.apiEnabled/apiMethods gates as the rest of the data surface; enable.clone === false → 403.

    Reclassifies object.enable.clonedead → live in the spec liveness ledger.

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0
    • @objectstack/service-package@9.8.0

@objectstack/spec@9.8.0

Minor Changes

  • 97c55b3: chore(spec): prune 15 dead field display-config properties (ADR-0049 / dead-surface plan). Removes FieldSchema enhanced-type display knobs that had no runtime reader and no renderer consumer (dead in both layers per the field liveness audit): code theme/lineNumbers, rating allowHalf, location displayMap/allowGeocoding, address addressFormat, color colorFormat/allowAlpha/presetColors, slider showValue/marks, barcode/qr barcodeFormat/qrErrorCorrection/displayValue/allowScanning. The wired knobs (language, maxRating, step) and the functional nested configs (currencyConfig/vectorConfig/fileAttachmentConfig) are kept. Field types are unchanged; only unused optional config props are removed. Narrows the false spec surface (narrow-and-true).
  • 1b1f490: chore(spec): prune 7 dead field governance/compliance properties (dead-surface plan, P0/P2). Removes FieldSchema props that implied data-protection/governance behavior but had no runtime consumer — false promises (the real at-rest channel is type: 'secret'): encryptionConfig, maskingRule, auditTrail, cached, dataQuality, writeRequiresMasterRead, trackFeedHistory. Also drops the now-unused EncryptionConfigSchema/MaskingRuleSchema imports. Kept caseSensitive and dependencies (potentially functional — conservative). Field types unchanged.

@objectstack/express@9.8.0

Patch Changes

  • @objectstack/runtime@9.8.0

@objectstack/fastify@9.8.0

Patch Changes

  • @objectstack/runtime@9.8.0

@objectstack/hono@9.8.0

Patch Changes

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

@objectstack/nestjs@9.8.0

Patch Changes

  • @objectstack/runtime@9.8.0

@objectstack/nextjs@9.8.0

Patch Changes

  • @objectstack/runtime@9.8.0

@objectstack/nuxt@9.8.0

Patch Changes

  • @objectstack/runtime@9.8.0

@objectstack/sveltekit@9.8.0

Patch Changes

  • @objectstack/runtime@9.8.0

@objectstack/account@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/platform-objects@9.8.0

@objectstack/setup@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/platform-objects@9.8.0

@objectstack/studio@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/platform-objects@9.8.0

@objectstack/client@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0

@objectstack/client-react@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/client@9.8.0
    • @objectstack/core@9.8.0

@objectstack/cloud-connection@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/runtime@9.8.0
    • @objectstack/core@9.8.0
    • @objectstack/types@9.8.0

@objectstack/connector-mcp@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0

@objectstack/connector-openapi@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0

@objectstack/connector-rest@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0

@objectstack/connector-slack@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0

@objectstack/core@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0

@objectstack/mcp@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0
    • @objectstack/types@9.8.0

@objectstack/metadata@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0
    • @objectstack/metadata-core@9.8.0
    • @objectstack/platform-objects@9.8.0
    • @objectstack/types@9.8.0
    • @objectstack/metadata-fs@9.8.0

@objectstack/metadata-core@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0

@objectstack/metadata-fs@9.8.0

Patch Changes

  • @objectstack/metadata-core@9.8.0

@objectstack/observability@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0

@objectstack/platform-objects@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/metadata-core@9.8.0

@objectstack/driver-memory@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0

@objectstack/driver-mongodb@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0

@objectstack/driver-sql@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0

@objectstack/driver-sqlite-wasm@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0
    • @objectstack/driver-sql@9.8.0

@objectstack/embedder-openai@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0

@objectstack/knowledge-memory@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0
    • @objectstack/service-knowledge@9.8.0

@objectstack/knowledge-ragflow@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0
    • @objectstack/service-knowledge@9.8.0

@objectstack/plugin-approvals@9.8.0

Patch Changes

  • Updated dependencies [c17d2c8]
  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/formula@9.8.0
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0
    • @objectstack/metadata-core@9.8.0
    • @objectstack/platform-objects@9.8.0

@objectstack/plugin-audit@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0
    • @objectstack/platform-objects@9.8.0

@objectstack/plugin-auth@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0
    • @objectstack/platform-objects@9.8.0
    • @objectstack/types@9.8.0

@objectstack/plugin-dev@9.8.0

Patch Changes

  • Updated dependencies [7fe0b91]
  • Updated dependencies [76ac582]
  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
  • Updated dependencies [884bf2f]
    • @objectstack/rest@9.8.0
    • @objectstack/objectql@9.8.0
    • @objectstack/spec@9.8.0
    • @objectstack/runtime@9.8.0
    • @objectstack/account@9.8.0
    • @objectstack/setup@9.8.0
    • @objectstack/studio@9.8.0
    • @objectstack/core@9.8.0
    • @objectstack/driver-memory@9.8.0
    • @objectstack/plugin-auth@9.8.0
    • @objectstack/plugin-hono-server@9.8.0
    • @objectstack/plugin-org-scoping@9.8.0
    • @objectstack/plugin-security@9.8.0
    • @objectstack/service-i18n@9.8.0
    • @objectstack/types@9.8.0

@objectstack/plugin-email@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0
    • @objectstack/platform-objects@9.8.0

@objectstack/plugin-hono-server@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0
    • @objectstack/types@9.8.0

@objectstack/plugin-msw@9.8.0

Patch Changes

  • Updated dependencies [76ac582]
  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
  • Updated dependencies [884bf2f]
    • @objectstack/objectql@9.8.0
    • @objectstack/spec@9.8.0
    • @objectstack/runtime@9.8.0
    • @objectstack/core@9.8.0
    • @objectstack/types@9.8.0

@objectstack/plugin-org-scoping@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0
    • @objectstack/platform-objects@9.8.0

@objectstack/plugin-reports@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0
    • @objectstack/platform-objects@9.8.0

@objectstack/plugin-security@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0
    • @objectstack/platform-objects@9.8.0

@objectstack/plugin-sharing@9.8.0

Patch Changes

  • Updated dependencies [76ac582]
  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
  • Updated dependencies [884bf2f]
    • @objectstack/objectql@9.8.0
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0
    • @objectstack/platform-objects@9.8.0

@objectstack/plugin-webhooks@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0
    • @objectstack/service-messaging@9.8.0

@objectstack/runtime@9.8.0

Patch Changes

  • Updated dependencies [c17d2c8]
  • Updated dependencies [7fe0b91]
  • Updated dependencies [76ac582]
  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
  • Updated dependencies [884bf2f]
    • @objectstack/formula@9.8.0
    • @objectstack/rest@9.8.0
    • @objectstack/objectql@9.8.0
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0
    • @objectstack/metadata@9.8.0
    • @objectstack/observability@9.8.0
    • @objectstack/driver-memory@9.8.0
    • @objectstack/driver-sql@9.8.0
    • @objectstack/driver-sqlite-wasm@9.8.0
    • @objectstack/plugin-auth@9.8.0
    • @objectstack/plugin-org-scoping@9.8.0
    • @objectstack/plugin-security@9.8.0
    • @objectstack/service-cluster@9.8.0
    • @objectstack/service-i18n@9.8.0
    • @objectstack/types@9.8.0

@objectstack/service-ai@9.8.0

Patch Changes

  • Updated dependencies [c17d2c8]
  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/formula@9.8.0
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0
    • @objectstack/types@9.8.0

@objectstack/service-analytics@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0

@objectstack/service-automation@9.8.0

Patch Changes

  • Updated dependencies [c17d2c8]
  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/formula@9.8.0
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0

@objectstack/service-cache@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0
    • @objectstack/observability@9.8.0

@objectstack/service-cluster@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0

@objectstack/service-cluster-redis@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/service-cluster@9.8.0

@objectstack/service-datasource@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0

@objectstack/service-i18n@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0

@objectstack/service-job@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0
    • @objectstack/platform-objects@9.8.0

@objectstack/service-knowledge@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0

@objectstack/service-messaging@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0

@objectstack/service-package@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0

@objectstack/service-queue@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0
    • @objectstack/platform-objects@9.8.0

@objectstack/service-realtime@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0
    • @objectstack/platform-objects@9.8.0

@objectstack/service-settings@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0
    • @objectstack/platform-objects@9.8.0
    • @objectstack/types@9.8.0

@objectstack/service-storage@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0
    • @objectstack/observability@9.8.0
    • @objectstack/platform-objects@9.8.0

@objectstack/trigger-api@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0

@objectstack/trigger-record-change@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0

@objectstack/trigger-schedule@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/core@9.8.0

@objectstack/types@9.8.0

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0

@objectstack/console@9.8.0

create-objectstack@9.8.0

objectstack-vscode@9.8.0

@objectstack/example-crm@4.0.50

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/runtime@9.8.0

@objectstack/example-showcase@0.1.20

Patch Changes

  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
    • @objectstack/spec@9.8.0
    • @objectstack/runtime@9.8.0
    • @objectstack/cloud-connection@9.8.0
    • @objectstack/connector-rest@9.8.0
    • @objectstack/connector-slack@9.8.0

@example/app-todo@4.0.50

Patch Changes

  • Updated dependencies [76ac582]
  • Updated dependencies [97c55b3]
  • Updated dependencies [1b1f490]
  • Updated dependencies [884bf2f]
    • @objectstack/objectql@9.8.0
    • @objectstack/spec@9.8.0
    • @objectstack/runtime@9.8.0
    • @objectstack/service-ai@9.8.0
    • @objectstack/client@9.8.0
    • @objectstack/metadata@9.8.0
    • @objectstack/driver-sqlite-wasm@9.8.0
    • @objectstack/knowledge-memory@9.8.0
    • @objectstack/service-knowledge@9.8.0

@vercel

vercelBot commented Jun 16, 2026

Copy link
Copy Markdown

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

ProjectDeploymentActionsUpdated (UTC)
specReadyReadyPreview, CommentJun 16, 2026 12:04pm

Request Review

@github-actions
github-actionsBotforce-pushed the changeset-release/main branch from 08deaf8 to 363d30bCompareJune 16, 2026 12:00
@os-zhuang
os-zhuang merged commit 13a1f97 into mainJun 16, 2026
2 checks passed
@os-zhuang
os-zhuang deleted the changeset-release/main branch June 16, 2026 12:18
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