Skip to content

Commit 04323de

Browse files
authored
Merge pull request #82 from zenstackhq/dev
merge dev to main
2 parents d3e56be + 5a746d9 commit 04323de

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+1552
-860
lines changed

.coderabbit.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@ early_access: false
44
reviews:
55
auto_review:
66
enabled: true
7+
sequence_diagrams: false
78
chat:
89
auto_reply: true

TODO.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,10 @@
5151
- [x] Count
5252
- [x] Aggregate
5353
- [x] Group by
54-
- [ ] Raw queries
54+
- [x] Raw queries
55+
- [ ] Transactions
56+
- [x] Interactive transaction
57+
- [x] Sequential transaction
5558
- [ ] Extensions
5659
- [x] Query builder API
5760
- [x] Computed fields
@@ -69,6 +72,8 @@
6972
- [x] Custom field name
7073
- [ ] Strict undefined checks
7174
- [ ] Benchmark
75+
- [ ] Plugin
76+
- [ ] Post-mutation hooks should be called after transaction is committed
7277
- [ ] Polymorphism
7378
- [ ] Validation
7479
- [ ] Access Policy

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "zenstack-v3",
3-
"version": "3.0.0-alpha.8",
3+
"version": "3.0.0-alpha.9",
44
"description": "ZenStack",
55
"packageManager": "[email protected]",
66
"scripts": {

packages/cli/bin/cli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
#!/usr/bin/env node --no-warnings
1+
#!/usr/bin/env node
22

33
import '../dist/index.js';

packages/cli/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"publisher": "zenstack",
44
"displayName": "ZenStack CLI",
55
"description": "FullStack database toolkit with built-in access control and automatic API generation.",
6-
"version": "3.0.0-alpha.8",
6+
"version": "3.0.0-alpha.9",
77
"type": "module",
88
"author": {
99
"name": "ZenStack Team"
@@ -18,6 +18,7 @@
1818
"data modeling"
1919
],
2020
"bin": {
21+
"zen": "bin/cli",
2122
"zenstack": "bin/cli"
2223
},
2324
"scripts": {

packages/common-helpers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@zenstackhq/common-helpers",
3-
"version": "3.0.0-alpha.8",
3+
"version": "3.0.0-alpha.9",
44
"description": "ZenStack Common Helpers",
55
"type": "module",
66
"scripts": {

packages/create-zenstack/bin/cli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
#!/usr/bin/env node --no-warnings
1+
#!/usr/bin/env node
22

33
import '../dist/index.js';

packages/create-zenstack/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-zenstack",
3-
"version": "3.0.0-alpha.8",
3+
"version": "3.0.0-alpha.9",
44
"description": "Create a new ZenStack project",
55
"type": "module",
66
"scripts": {

packages/eslint-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@zenstackhq/eslint-config",
3-
"version": "3.0.0-alpha.8",
3+
"version": "3.0.0-alpha.9",
44
"type": "module",
55
"private": true,
66
"license": "MIT"

packages/ide/vscode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "zenstack",
33
"publisher": "zenstack",
4-
"version": "3.0.0-alpha.8",
4+
"version": "3.0.0-alpha.9",
55
"displayName": "ZenStack Language Tools",
66
"description": "VSCode extension for ZenStack ZModel language",
77
"private": true,

0 commit comments

Comments
 (0)