Skip to content

Commit 3291c6e

Browse files
authored
merge dev to main (v2.0.1) (#1384)
2 parents 2d4f330 + 7a15948 commit 3291c6e

File tree

33 files changed

+225
-158
lines changed

33 files changed

+225
-158
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ If applicable, add screenshots to help explain your problem.
1414

1515
**Environment (please complete the following information):**
1616

17-
- ZenStack version: [e.g., 1.0.0-alpha.50]
18-
- Prisma version: [e.g., 4.10.0]
17+
- ZenStack version: [e.g., 2.0.0]
18+
- Prisma version: [e.g., 5.7.0]
1919
- Database type: [e.g. Postgresql]
2020

2121
**Additional context**

.github/workflows/build-test.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,11 @@ env:
88
DO_NOT_TRACK: '1'
99

1010
on:
11-
merge_group:
12-
push:
13-
branches:
14-
- main
15-
- dev
16-
- release/*
17-
- v2
1811
pull_request:
1912
branches:
2013
- main
2114
- dev
2215
- release/*
23-
- v2
2416

2517
permissions:
2618
contents: read

.github/workflows/codeql.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,11 @@
11
name: Security - CodeQL
22

33
on:
4-
merge_group:
5-
push:
6-
branches:
7-
- main
8-
- dev
9-
- release/*
10-
- v2
114
pull_request:
125
branches:
136
- main
147
- dev
158
- release/*
16-
- v2
179
schedule:
1810
- cron: '0 0 * * 1'
1911

.github/workflows/integration-test.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,11 @@ env:
88
DO_NOT_TRACK: '1'
99

1010
on:
11-
merge_group:
12-
push:
13-
branches:
14-
- main
15-
- dev
16-
- release/*
17-
- v2
1811
pull_request:
1912
branches:
2013
- main
2114
- dev
2215
- release/*
23-
- v2
2416

2517
permissions:
2618
contents: read

.github/workflows/regression-test.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,11 @@ env:
88
DO_NOT_TRACK: '1'
99

1010
on:
11-
merge_group:
12-
push:
13-
branches:
14-
- main
15-
- dev
16-
- release/*
17-
- v2
1811
pull_request:
1912
branches:
2013
- main
2114
- dev
2215
- release/*
23-
- v2
2416

2517
permissions:
2618
contents: read

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,8 @@ The following diagram gives a high-level architecture overview of ZenStack.
177177

178178
- [Custom attributes and functions](https://zenstack.dev/docs/reference/zmodel-language#custom-attributes-and-functions)
179179
- [Multi-file schema and model inheritance](https://zenstack.dev/docs/guides/multiple-schema)
180+
- [Polymorphic Relations](https://zenstack.dev/docs/guides/polymorphism)
180181
- Strong-typed JSON field (coming soon)
181-
- Polymorphism (future)
182182
- 🙋🏻 [Request for an extension](https://discord.gg/Ykhr738dUe)
183183

184184
## Examples
@@ -213,6 +213,7 @@ Check out the [Multi-tenant Todo App](https://zenstack-todo.vercel.app/) for a r
213213
- [Nuxt V3 + TanStack Query](https://github.com/zenstackhq/docs-tutorial-nuxt)
214214
- [SvelteKit](https://github.com/zenstackhq/docs-tutorial-sveltekit)
215215
- [Remix](https://github.com/zenstackhq/docs-tutorial-remix)
216+
- [NestJS Backend API](https://github.com/zenstackhq/docs-tutorial-nestjs)
216217
- [Express Backend API](https://github.com/zenstackhq/docs-tutorial-express)
217218
- [Clerk Integration](https://github.com/zenstackhq/docs-tutorial-clerk)
218219

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "zenstack-monorepo",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "",
55
"scripts": {
66
"build": "pnpm -r build",

packages/ide/jetbrains/CHANGELOG.md

Lines changed: 4 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,14 @@
11
# Changelog
22

3-
## [2.0.0-alpha.2](https://github.com/zenstackhq/zenstack/compare/v2.0.0-alpha.1...v2.0.0-alpha.2) (2024-02-21)
4-
5-
6-
### Miscellaneous Chores
7-
8-
* release 2.0.0-alpha.2 ([f40d7e3](https://github.com/zenstackhq/zenstack/commit/f40d7e3718d4210137a2e131d28b5491d065b914))
9-
103
## [Unreleased]
114
### Added
12-
- Added support to complex usage of `@@index` attribute like `@@index([content(ops: raw("gin_trgm_ops"))], type: Gin)`.
13-
### Fixed
14-
- Fixed several ZModel validation issues related to model inheritance.
5+
- ZenStack V2 release!
156

16-
## 1.7.0
7+
## 1.11.0
178
### Added
18-
19-
- Added support to complex usage of `@@index` attribute like `@@index([content(ops: raw("gin_trgm_ops"))], type: Gin)`.
20-
9+
- Added support to complex usage of `@@index` attribute like `@@index([content(ops: raw("gin_trgm_ops"))], type: Gin)`.
2110
### Fixed
22-
23-
- Fixed several ZModel validation issues related to model inheritance.
11+
- Fixed several ZModel validation issues related to model inheritance.
2412

2513
## 1.7.0
2614

packages/ide/jetbrains/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
}
1010

1111
group = "dev.zenstack"
12-
version = "2.0.0"
12+
version = "2.0.1"
1313

1414
repositories {
1515
mavenCentral()

packages/ide/jetbrains/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jetbrains",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"displayName": "ZenStack JetBrains IDE Plugin",
55
"description": "ZenStack JetBrains IDE plugin",
66
"homepage": "https://zenstack.dev",

0 commit comments

Comments
 (0)