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
110 changes: 110 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
# Release v0.2.0 - Initial Public Release

## 📦 Released Packages

All packages are ready for publishing to npm:

- **@objectstack/spec@0.2.0** - Core protocol definitions and TypeScript types
- **@objectstack/types@0.2.0** - Shared TypeScript type definitions
- **@objectstack/objectql@0.2.0** - ObjectQL query language and runtime
- **@objectstack/runtime@0.2.0** - Runtime execution environment
- **@objectstack/client@0.2.0** - Client library for ObjectStack
- **@objectstack/driver-memory@0.2.0** - In-memory data storage driver
- **@objectstack/plugin-hono-server@0.2.0** - Hono server plugin for REST API

## ✨ Features

This is the first public release of the ObjectStack ecosystem, providing:

### Core Capabilities
- **Data Protocol (ObjectQL)**: Complete schema definitions for Objects and Fields
- 23+ field types (text, number, select, lookup, formula, autonumber, etc.)
- Validation rules, workflows, and triggers
- Permission system and sharing rules
- Abstract query language for unified data access

### UI Protocol
- **App Configuration**: Navigation, branding, theming
- **View System**: ListView (grid, kanban, calendar, gantt), FormView
- **Analytics**: Dashboards and reports
- **Actions**: Custom buttons and interactions

### System Protocol
- **Manifest**: Package configuration
- **Datasources**: External data connections
- **API**: REST/GraphQL endpoint definitions
- **Translation**: i18n support

### Developer Experience
- **187 JSON Schemas** automatically generated from Zod definitions
- **Complete TypeScript types** with runtime validation
- **Comprehensive documentation** with examples
- **Monorepo structure** with pnpm workspaces

## 📝 Changelog

See individual CHANGELOG.md files in each package:
- [packages/spec/CHANGELOG.md](packages/spec/CHANGELOG.md)
- [packages/client/CHANGELOG.md](packages/client/CHANGELOG.md)
- [packages/objectql/CHANGELOG.md](packages/objectql/CHANGELOG.md)
- [packages/runtime/CHANGELOG.md](packages/runtime/CHANGELOG.md)
- [packages/driver-memory/CHANGELOG.md](packages/driver-memory/CHANGELOG.md)
- [packages/plugin-hono-server/CHANGELOG.md](packages/plugin-hono-server/CHANGELOG.md)
- [packages/types/CHANGELOG.md](packages/types/CHANGELOG.md)

## 🚀 Publishing

### Automated Publishing (Recommended)
This release is prepared and ready for automated publishing via GitHub Actions:

1. Merge this PR to `main` branch
2. GitHub Actions workflow will automatically:
- Detect the version bump
- Build all packages
- Publish to npm registry using NPM_TOKEN secret
- Create GitHub release with tags

### Manual Publishing (If needed)
If you need to publish manually:

```bash
# Ensure you're authenticated to npm
npm login

# Build and publish all packages
pnpm run build
pnpm run release
```

## 🏷️ Git Tags

Version tag `v0.2.0` has been created for this release.

## 📚 Documentation

Full documentation is available at:
- Development Roadmap: [DEVELOPMENT_ROADMAP.md](DEVELOPMENT_ROADMAP.md)
- Architecture: [ARCHITECTURE.md](ARCHITECTURE.md)
- Quick Start: [QUICK_START_IMPLEMENTATION.md](QUICK_START_IMPLEMENTATION.md)

## 🛠️ Build Status

✅ All packages built successfully
✅ All JSON schemas generated (187 schemas)
✅ All documentation generated (187 reference docs)
✅ TypeScript compilation passed
✅ Package versions bumped
✅ Changelogs updated

## 🔍 Pre-publish Verification

Dry-run output confirms all 7 packages are ready:
- ✅ @objectstack/client@0.2.0
- ✅ @objectstack/driver-memory@0.2.0
- ✅ @objectstack/objectql@0.2.0
- ✅ @objectstack/plugin-hono-server@0.2.0
- ✅ @objectstack/runtime@0.2.0
- ✅ @objectstack/spec@0.2.0
- ✅ @objectstack/types@0.2.0

All packages are new and have not been published to npm yet.
7 changes: 7 additions & 0 deletions examples/crm/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @objectstack/example-crm

## 1.0.2

### Patch Changes

- Updated dependencies
- @objectstack/spec@0.2.0

## 1.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/crm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@objectstack/example-crm",
"version": "1.0.1",
"version": "1.0.2",
"description": "Example CRM implementation using ObjectStack Protocol",
"private": true,
"scripts": {
Expand Down
13 changes: 13 additions & 0 deletions examples/host/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @objectstack/example-host

## 0.1.2

### Patch Changes

- Updated dependencies
- @objectstack/objectql@0.2.0
- @objectstack/runtime@0.2.0
- @objectstack/driver-memory@0.2.0
- @objectstack/plugin-hono-server@1.0.0
Copy link

Copilot AI Jan 21, 2026

Choose a reason for hiding this comment

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

The dependency version for @objectstack/plugin-hono-server is incorrect. According to the release, this package should be updated to version 0.2.0, not 1.0.0. Please update this line to match the correct version: @objectstack/plugin-hono-server@0.2.0

Suggested change
- @objectstack/plugin-hono-server@1.0.0
- @objectstack/plugin-hono-server@0.2.0

Copilot uses AI. Check for mistakes.
- @objectstack/example-crm@1.0.2
- @objectstack/plugin-bi@1.0.2
- @objectstack/example-todo@1.0.2

## 0.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/host/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@objectstack/example-host",
"version": "0.1.1",
"version": "0.1.2",
"private": true,
"scripts": {
"dev": "ts-node src/index.ts",
Expand Down
7 changes: 7 additions & 0 deletions examples/plugin-bi/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @objectstack/plugin-bi

## 1.0.2

### Patch Changes

- Updated dependencies
- @objectstack/spec@0.2.0

## 1.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/plugin-bi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@objectstack/plugin-bi",
"version": "1.0.1",
"version": "1.0.2",
"main": "src/index.ts",
"license": "MIT",
"private": true,
Expand Down
8 changes: 8 additions & 0 deletions examples/todo/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @objectstack/example-todo

## 1.0.2

### Patch Changes

- Updated dependencies
- @objectstack/spec@0.2.0
- @objectstack/client@0.2.0

## 1.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/todo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@objectstack/example-todo",
"version": "1.0.1",
"version": "1.0.2",
"description": "Example Todo App using ObjectStack Protocol",
"private": true,
"scripts": {
Expand Down
20 changes: 20 additions & 0 deletions packages/client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# @objectstack/client

## 0.2.0

### Minor Changes

- Initial release of ObjectStack Protocol & Specification packages

This is the first public release of the ObjectStack ecosystem, providing:

- Core protocol definitions and TypeScript types
- ObjectQL query language and runtime
- Memory driver for in-memory data storage
- Client library for interacting with ObjectStack
- Hono server plugin for REST API endpoints
- Complete JSON schema generation for all specifications

### Patch Changes

- Updated dependencies
- @objectstack/spec@0.2.0

## 0.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@objectstack/client",
"version": "0.1.1",
"version": "0.2.0",
"description": "Official Client SDK for ObjectStack Protocol",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
20 changes: 20 additions & 0 deletions packages/driver-memory/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# @objectstack/driver-memory

## 0.2.0

### Minor Changes

- Initial release of ObjectStack Protocol & Specification packages

This is the first public release of the ObjectStack ecosystem, providing:

- Core protocol definitions and TypeScript types
- ObjectQL query language and runtime
- Memory driver for in-memory data storage
- Client library for interacting with ObjectStack
- Hono server plugin for REST API endpoints
- Complete JSON schema generation for all specifications

### Patch Changes

- Updated dependencies
- @objectstack/spec@0.2.0

## 0.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/driver-memory/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@objectstack/driver-memory",
"version": "0.1.1",
"version": "0.2.0",
"description": "In-Memory Driver for ObjectStack (Reference Implementation)",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
Expand Down
20 changes: 20 additions & 0 deletions packages/objectql/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# @objectstack/objectql

## 0.2.0

### Minor Changes

- Initial release of ObjectStack Protocol & Specification packages

This is the first public release of the ObjectStack ecosystem, providing:

- Core protocol definitions and TypeScript types
- ObjectQL query language and runtime
- Memory driver for in-memory data storage
- Client library for interacting with ObjectStack
- Hono server plugin for REST API endpoints
- Complete JSON schema generation for all specifications

### Patch Changes

- Updated dependencies
- @objectstack/spec@0.2.0

## 0.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/objectql/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@objectstack/objectql",
"version": "0.1.1",
"version": "0.2.0",
"description": "Isomorphic ObjectQL Engine for ObjectStack",
"main": "src/index.ts",
"types": "src/index.ts",
Expand Down
22 changes: 22 additions & 0 deletions packages/plugin-hono-server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# @objectstack/plugin-hono-server

## 0.2.0

### Minor Changes

- Initial release of ObjectStack Protocol & Specification packages

This is the first public release of the ObjectStack ecosystem, providing:

- Core protocol definitions and TypeScript types
- ObjectQL query language and runtime
- Memory driver for in-memory data storage
- Client library for interacting with ObjectStack
- Hono server plugin for REST API endpoints
- Complete JSON schema generation for all specifications

### Patch Changes

- Updated dependencies
- @objectstack/spec@0.2.0
- @objectstack/types@0.2.0
- @objectstack/runtime@0.2.0

## 0.1.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin-hono-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@objectstack/plugin-hono-server",
"version": "0.1.1",
"version": "0.2.0",
"description": "Standard Hono Server Adapter for ObjectStack Runtime",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -19,6 +19,6 @@
"typescript": "^5.0.0"
},
"peerDependencies": {
"@objectstack/runtime": "^0.1.1"
"@objectstack/runtime": "^0.2.0"
}
}
22 changes: 22 additions & 0 deletions packages/runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# @objectstack/runtime

## 0.2.0

### Minor Changes

- Initial release of ObjectStack Protocol & Specification packages

This is the first public release of the ObjectStack ecosystem, providing:

- Core protocol definitions and TypeScript types
- ObjectQL query language and runtime
- Memory driver for in-memory data storage
- Client library for interacting with ObjectStack
- Hono server plugin for REST API endpoints
- Complete JSON schema generation for all specifications

### Patch Changes

- Updated dependencies
- @objectstack/spec@0.2.0
- @objectstack/types@0.2.0
- @objectstack/objectql@0.2.0

## 0.1.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/runtime/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@objectstack/runtime",
"version": "0.1.1",
"version": "0.2.0",
"description": "ObjectStack Core Runtime & Query Engine",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
Loading
Loading