Skip to content

Commit db4ab46

Browse files
authored
Merge pull request #87 from objectstack-ai/copilot/release-new-version
2 parents 2b244b0 + 4682160 commit db4ab46

File tree

35 files changed

+149
-32
lines changed

35 files changed

+149
-32
lines changed

.changeset/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
"fixed": [
66
[
77
"@objectql/cli",
8-
"@objectql/studio",
98
"@objectql/core",
109
"@objectql/driver-sql",
1110
"@objectql/driver-mongo",
11+
"@objectql/driver-redis",
1212
"@objectql/sdk",
1313
"@objectql/server",
1414
"@objectql/types",

PROGRESS.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ObjectQL Implementation Progress Report
22

3-
**Last Updated:** January 14, 2026
4-
**Version:** 1.8.3
3+
**Last Updated:** January 15, 2026
4+
**Version:** 1.8.4
55
**Total Lines of Code:** ~26,000 TypeScript LOC
66

77
---
@@ -59,7 +59,7 @@ Drivers (SQL/Mongo/SDK)
5959
## 2. Foundation Layer - Type Definitions (`@objectql/types`)
6060

6161
**Package:** `packages/foundation/types`
62-
**Version:** 1.8.3
62+
**Version:** 1.8.4
6363
**Status:****Production Ready**
6464
**Implementation:** **85%**
6565

@@ -107,7 +107,7 @@ Drivers (SQL/Mongo/SDK)
107107
## 3. Core Runtime Engine (`@objectql/core`)
108108

109109
**Package:** `packages/foundation/core`
110-
**Version:** 1.8.3
110+
**Version:** 1.8.4
111111
**Status:****Production Ready**
112112
**Implementation:** **80%**
113113

@@ -142,7 +142,7 @@ Drivers (SQL/Mongo/SDK)
142142
### 4.1 Node.js Platform (`@objectql/platform-node`)
143143

144144
**Package:** `packages/foundation/platform-node`
145-
**Version:** 1.8.3
145+
**Version:** 1.8.4
146146
**Status:****Production Ready**
147147
**Implementation:** **90%**
148148

@@ -161,7 +161,7 @@ Drivers (SQL/Mongo/SDK)
161161
### 5.1 SQL Driver (`@objectql/driver-sql`)
162162

163163
**Package:** `packages/drivers/sql`
164-
**Version:** 1.8.3
164+
**Version:** 1.8.4
165165
**Status:****Production Ready**
166166
**Implementation:** **85%**
167167

@@ -183,7 +183,7 @@ Drivers (SQL/Mongo/SDK)
183183
### 5.2 MongoDB Driver (`@objectql/driver-mongo`)
184184

185185
**Package:** `packages/drivers/mongo`
186-
**Version:** 1.8.3
186+
**Version:** 1.8.4
187187
**Status:****Production Ready**
188188
**Implementation:** **75%**
189189

@@ -198,7 +198,7 @@ Drivers (SQL/Mongo/SDK)
198198
### 5.3 SDK / Remote Driver (`@objectql/sdk`)
199199

200200
**Package:** `packages/drivers/sdk`
201-
**Version:** 1.8.3
201+
**Version:** 1.8.4
202202
**Status:****Production Ready**
203203
**Implementation:** **70%**
204204

@@ -218,7 +218,7 @@ Drivers (SQL/Mongo/SDK)
218218
## 6. Server Runtime (`@objectql/server`)
219219

220220
**Package:** `packages/runtime/server`
221-
**Version:** 1.8.3
221+
**Version:** 1.8.4
222222
**Status:****Production Ready**
223223
**Implementation:** **75%**
224224

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ This validation logic runs:
189189

190190
For a complete status report on ObjectQL's implementation against the documented standard protocol, see **[PROGRESS.md](./PROGRESS.md)**.
191191

192-
**Current Status:** 70% Complete (v1.8.3)
192+
**Current Status:** 70% Complete (v1.8.4)
193193
- ✅ Core Protocol & Runtime: 85%
194194
- ✅ Data Drivers (SQL/Mongo): 75%
195195
- ⚠️ UI Metadata Layer: 40%

docs/METADATA_TYPES_IMPLEMENTATION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -454,4 +454,4 @@ The type system is designed to be extensible. Potential additions:
454454

455455
**Implementation Date**: January 14-15, 2026
456456
**Author**: ObjectQL Lead Architect
457-
**Package**: `@objectql/[email protected].3`
457+
**Package**: `@objectql/[email protected].4`

docs/spec/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This section contains the complete metadata specifications for the ObjectQL plat
44

55
📖 **[Read the Complete Metadata Standard Guide](./metadata-standard.md)** - A comprehensive overview of the entire metadata system and how all pieces fit together.
66

7-
📊 **[Implementation Progress Report](../../PROGRESS.md)** - Current implementation status of all specifications (v1.8.3 - 70% complete)
7+
📊 **[Implementation Progress Report](../../PROGRESS.md)** - Current implementation status of all specifications (v1.8.4 - 70% complete)
88

99
## Core Data Layer
1010

examples/starters/hello-world/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @example/hello-world
22

3+
## 1.0.4
4+
5+
### Patch Changes
6+
7+
- Updated dependencies
8+
- @objectql/core@1.8.4
9+
- @objectql/driver-sql@1.8.4
10+
311
## 1.0.3
412

513
### Patch Changes

examples/starters/hello-world/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@example/hello-world",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"private": true,
55
"description": "Zero-config ObjectQL starter",
66
"scripts": {

examples/tutorials/tutorial-ai-agent/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@example/tutorial-ai-agent",
3-
"version": "1.0.7",
3+
"version": "1.0.8",
44
"private": true,
55
"scripts": {
66
"start": "tsx agent.ts"

examples/tutorials/tutorial-crm-system/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@example/tutorial-crm-system",
3-
"version": "1.0.7",
3+
"version": "1.0.8",
44
"private": true,
55
"scripts": {
66
"start": "tsx index.ts"

examples/tutorials/tutorial-federation/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@example/tutorial-federation",
3-
"version": "1.0.7",
3+
"version": "1.0.8",
44
"private": true,
55
"scripts": {
66
"start": "tsx index.ts"

0 commit comments

Comments
 (0)