Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .changeset/patch-release.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
"@objectstack/spec": patch
"@objectstack/core": patch
"@objectstack/types": patch
"@objectstack/objectql": patch
"@objectstack/runtime": patch
"@objectstack/client": patch
Comment on lines +1 to +7
Copy link

Copilot AI Jan 31, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PR description says “All packages bump to 0.7.2 via changeset”, but this changeset does not include @objectstack/metadata (which still exists as a package). Either include it here or adjust the PR description/release plan so versions stay consistent across packages.

Copilot uses AI. Check for mistakes.
"@objectstack/client-react": patch
"@objectstack/driver-memory": patch
"@objectstack/plugin-hono-server": patch
"@objectstack/plugin-msw": patch
"@objectstack/cli": patch
"@objectstack/ai-bridge": patch
---

Patch release: Updated documentation and JSON schemas
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Security

## [0.7.2] - 2026-01-31

### Changed
- Updated system protocol JSON schemas (events, worker, metadata-loader)
- Enhanced documentation structure for system protocols
- Generated comprehensive JSON schema documentation

## [0.7.1] - 2026-01-31

### Changed
Expand Down Expand Up @@ -185,7 +192,8 @@ Mark breaking changes clearly:

---

[Unreleased]: https://github.com/objectstack-ai/spec/compare/v0.7.1...HEAD
[Unreleased]: https://github.com/objectstack-ai/spec/compare/v0.7.2...HEAD
[0.7.2]: https://github.com/objectstack-ai/spec/compare/v0.7.1...v0.7.2
[0.7.1]: https://github.com/objectstack-ai/spec/compare/v0.6.1...v0.7.1
[0.6.1]: https://github.com/objectstack-ai/spec/compare/v0.4.1...v0.6.1
[0.4.1]: https://github.com/objectstack-ai/spec/compare/v0.4.0...v0.4.1
Expand Down
6 changes: 3 additions & 3 deletions content/docs/references/automation/connector.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ description: Connector protocol schemas
# Connector

<Callout type="info">
**Source:** `packages/spec/src/integration/connector.zod.ts`
**Source:** `packages/spec/src/automation/connector.zod.ts`
</Callout>

## TypeScript Usage

```typescript
import { AuthenticationSchema, ConflictResolutionSchema, ConnectorSchema, DataSyncConfigSchema } from '@objectstack/spec/integration';
import type { Authentication, ConflictResolution, Connector, DataSyncConfig } from '@objectstack/spec/integration';
import { AuthenticationSchema, ConflictResolutionSchema, ConnectorSchema, DataSyncConfigSchema } from '@objectstack/spec/automation';
import type { Authentication, ConflictResolution, Connector, DataSyncConfig } from '@objectstack/spec/automation';
Comment on lines 8 to +16
Copy link

Copilot AI Jan 31, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This reference page points to packages/spec/src/automation/connector.zod.ts and imports from @objectstack/spec/automation, but there is no src/automation/connector.zod.ts and automation/index.ts does not export a Connector protocol. The Connector protocol currently lives in packages/spec/src/integration/connector.zod.ts and should be referenced/imported from @objectstack/spec/integration instead (or add the missing automation schema + exports if the move was intended).

Copilot uses AI. Check for mistakes.

// Validate data
const result = AuthenticationSchema.parse(data);
Expand Down
147 changes: 0 additions & 147 deletions content/docs/references/data/driver-mongo.mdx

This file was deleted.

133 changes: 0 additions & 133 deletions content/docs/references/data/driver-postgres.mdx

This file was deleted.

2 changes: 0 additions & 2 deletions content/docs/references/data/meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@
"dataset",
"document",
"driver",
"driver-mongo",
"driver-nosql",
"driver-postgres",
"driver-sql",
"external-lookup",
"field",
Expand Down
Loading
Loading