Skip to content

Commit 460be5b

Browse files
authored
Merge pull request #146 from objectstack-ai/copilot/release-new-version-bc852898-239f-4d9b-aab2-df6a211ff2f3
2 parents 262e76d + 59d3885 commit 460be5b

File tree

38 files changed

+330
-22
lines changed

38 files changed

+330
-22
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1919

2020
### Security
2121

22+
## [0.3.3] - 2026-01-25
23+
24+
### Changed
25+
- Enhanced GitHub workflows for CI, release, and PR automation
26+
- Added comprehensive prompt templates for different protocol areas
27+
- Improved project documentation and automation guides
28+
- Updated changeset configuration
29+
- Added cursor rules for better development experience
30+
- Updated all packages to version 0.3.3
31+
2232
## [0.3.2] - 2026-01-24
2333

2434
### Changed
@@ -151,7 +161,9 @@ Mark breaking changes clearly:
151161

152162
---
153163

154-
[Unreleased]: https://github.com/objectstack-ai/spec/compare/v0.3.1...HEAD
164+
[Unreleased]: https://github.com/objectstack-ai/spec/compare/v0.3.3...HEAD
165+
[0.3.3]: https://github.com/objectstack-ai/spec/compare/v0.3.2...v0.3.3
166+
[0.3.2]: https://github.com/objectstack-ai/spec/compare/v0.3.1...v0.3.2
155167
[0.3.1]: https://github.com/objectstack-ai/spec/compare/v0.3.0...v0.3.1
156168
[0.3.0]: https://github.com/objectstack-ai/spec/compare/v0.1.1...v0.3.0
157169
[0.1.1]: https://github.com/objectstack-ai/spec/releases/tag/v0.1.1

RELEASE_NOTES.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,39 @@
11
# Release Notes
22

3+
## v0.3.3 - Workflow and Configuration Improvements (2026-01-25)
4+
5+
### 📦 Released Packages
6+
7+
All packages have been updated to version **0.3.3**:
8+
9+
- **@objectstack/spec@0.3.3** - Core protocol definitions and TypeScript types
10+
- **@objectstack/types@0.3.3** - Shared TypeScript type definitions
11+
- **@objectstack/objectql@0.3.3** - ObjectQL query language and runtime
12+
- **@objectstack/runtime@0.3.3** - Runtime execution environment
13+
- **@objectstack/client@0.3.3** - Client library for ObjectStack
14+
- **@objectstack/driver-memory@0.3.3** - In-memory data storage driver
15+
- **@objectstack/plugin-hono-server@0.3.3** - Hono server plugin for REST API
16+
- **@objectstack/plugin-msw@0.3.3** - MSW (Mock Service Worker) plugin
17+
18+
### 📝 Changes
19+
20+
This patch release includes:
21+
- Enhanced GitHub workflows for CI, release, and PR automation
22+
- Added comprehensive prompt templates for different protocol areas
23+
- Improved project documentation and automation guides
24+
- Updated changeset configuration for better version management
25+
- Added cursor rules for better development experience
26+
27+
### 🚀 Publishing
28+
29+
This release is ready for publishing to npm. When this PR is merged to `main`:
30+
1. The GitHub Actions release workflow will automatically detect the version bump
31+
2. Build all packages
32+
3. Publish to npm registry using NPM_TOKEN secret
33+
4. Create GitHub release with appropriate tags
34+
35+
---
36+
337
## v0.3.2 - Maintenance Release (2026-01-24)
438

539
### 📦 Released Packages
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
title: Tenant
3+
description: Tenant Schema Reference
4+
---
5+
6+
## Properties
7+
8+
| Property | Type | Required | Description |
9+
| :--- | :--- | :--- | :--- |
10+
| **id** | `string` || Unique tenant identifier |
11+
| **name** | `string` || Tenant display name |
12+
| **isolationLevel** | `Enum<'shared_schema' \| 'isolated_schema' \| 'isolated_db'>` || |
13+
| **customizations** | `Record<string, any>` | optional | Custom configuration values |
14+
| **quotas** | `object` | optional | |

examples/ai-analyst/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @objectstack/example-ai-analyst
22

3+
## 1.0.5
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- @objectstack/spec@0.3.3
9+
310
## 1.0.4
411

512
### Patch Changes

examples/ai-analyst/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@objectstack/example-ai-analyst",
3-
"version": "1.0.4",
3+
"version": "1.0.5",
44
"description": "AI-powered data analyst with natural language query capabilities",
55
"private": true,
66
"main": "objectstack.config.ts",

examples/ai-codegen/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @objectstack/example-ai-codegen
22

3+
## 1.0.5
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- @objectstack/spec@0.3.3
9+
310
## 1.0.4
411

512
### Patch Changes

examples/ai-codegen/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@objectstack/example-ai-codegen",
3-
"version": "1.0.4",
3+
"version": "1.0.5",
44
"description": "AI code generator - Generate ObjectStack apps from natural language",
55
"private": true,
66
"main": "objectstack.config.ts",

examples/ai-sales/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @objectstack/example-ai-sales
22

3+
## 1.0.5
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- @objectstack/spec@0.3.3
9+
310
## 1.0.4
411

512
### Patch Changes

examples/ai-sales/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@objectstack/example-ai-sales",
3-
"version": "1.0.4",
3+
"version": "1.0.5",
44
"description": "AI-powered sales assistant with intelligent automation",
55
"private": true,
66
"main": "objectstack.config.ts",

examples/ai-support/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @objectstack/example-ai-support
22

3+
## 1.0.5
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- @objectstack/spec@0.3.3
9+
310
## 1.0.4
411

512
### Patch Changes

0 commit comments

Comments
 (0)