-
-
Notifications
You must be signed in to change notification settings - Fork 144
merge dev to main (v3.6.0) #2593
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
685b3e5
chore(deps): bump kysely from ~0.28.8 to ~0.28.15
ymc9 3dc922d
[CI] Bump version 3.6.0 (#2571)
github-actions[bot] f654b84
chore: merge dev branch and resolve pnpm-lock.yaml conflict
Copilot dc26257
feat(server): add OpenAPI spec generation for RPC API (#2574)
ymc9 d6b860d
chore(better-auth): add kysely devDependency to fix duplicate @better…
ymc9 85da913
chore(deps): bump kysely from ~0.28.8 to ~0.28.15 (#2548)
ymc9 3393e4c
`@computed` fields from mixin types (`with`) cause `column does not e…
lsmith77 ffa9a80
chore: bump pnpm to 10.33.0
ymc9 ad8d5fb
chore: bump pnpm to 10.33.0 (#2577)
ymc9 b8209d7
chore: migrate from tsup to tsdown (#2580)
ymc9 44a6f9e
feat(zod): enforce literal true for select/include/omit options + exc…
marcsigmund 36da18a
perf(orm): use EXISTS instead of COUNT subquery for to-one relation f…
evgenovalov 4dd4951
Add missing AllWriteOperations export in ORM (#2582)
17 c9b5c53
chore: never proactively commit or push without explicit request (#2584)
ymc9 c858bbd
feat(language): allow relation fields in type declarations for mixin …
ymc9 2b88b52
docs: add @zenstackhq/schema to manual install command in README (#2586)
ymc9 09b96e4
fix(orm): make JsonArray mutable to fix Zod schema type incompatibili…
ymc9 4e35bc1
fix(orm): resolve delegate-inherited fields in cursor pagination (#2591)
genu cce978f
chore: add build script to tsdown config (#2592)
ymc9 3398c87
fix(orm): return @db.Time fields as Date instead of raw string (#2589…
erwan-joly 064ce4a
fix(orm,server): fix procedure slicing in toJSONSchema and RPC OpenAP…
ymc9 e784b67
chore(server): regenerate rpc OpenAPI baseline
ymc9 31f4c49
fix(orm,server): fix procedure slicing in toJSONSchema and RPC OpenAP…
ymc9 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,4 @@ | ||
| { | ||
| "vitest.maximumConfigs": 20 | ||
| "vitest.maximumConfigs": 20, | ||
| "js/ts.tsdk.path": "node_modules/typescript/lib" | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| import { createConfig } from '@zenstackhq/tsdown-config'; | ||
|
|
||
| export default createConfig({ entry: { index: 'src/index.ts' } }); |
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| #!/usr/bin/env node | ||
|
|
||
| import '../dist/index.js'; | ||
| import '../dist/index.mjs'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| import { createConfig } from '@zenstackhq/tsdown-config'; | ||
|
|
||
| export default createConfig({ entry: { index: 'src/index.ts' } }); |
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,7 @@ | ||
| { | ||
| "extends": "@zenstackhq/typescript-config/base.json", | ||
| "compilerOptions": { | ||
| "lib": ["ESNext", "DOM"] | ||
| }, | ||
| "include": ["src/**/*.ts"] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| import { createConfig } from '@zenstackhq/tsdown-config'; | ||
|
|
||
| export default createConfig({ | ||
| entry: { | ||
| index: 'src/index.ts', | ||
| fetch: 'src/fetch.ts', | ||
| }, | ||
| format: ['esm'], | ||
| }); |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.