-
Notifications
You must be signed in to change notification settings - Fork 0
PR: Cherry-pick common-v8 from upstream #22
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
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
13fab62
Clarify ESLint 'Unsafe...' troubleshooting
steida 046d374
Migrate to monorepo Vitest config
steida 9e442be
Expand TDD guidance and add Vitest examples
steida 60ac61b
Update TreeShaking.test.ts
steida dd0b8a6
Use 'observability' term in error comment
steida 205bc8c
Rename vitest config to .mts and add scripts tests
steida c02e13d
Add createQueryBuilder, replace createQuery usage
steida 969a82d
chore: format
miccy f6ed047
update: minors
miccy 5445ac2
fix: missing dependencies and verified build
miccy 1fe6836
chore: Update Biome to version 2.3.14 and reflect this change in docu…
miccy 07f0836
Update packages/common/src/local-first/Evolu.ts
miccy f05c64a
Update packages/common/src/local-first/Evolu.ts
miccy 815c80e
Revert EvoluMinimalExample.tsx to working implementation (#24)
Copilot d952c70
Fix CI: generate docs before typedoc-plugin tests (#23)
Copilot 923ab54
Merge branch 'main' into merge/common-v8-04-02-2026
miccy dcec9a6
Fix CI: Exclude typedoc test from regular test run (#27)
Copilot 3e8c0db
fix: Correct `Uint8Array` type signature in `exportDatabase` and rela…
miccy 12427a0
chore: Update Angular and Svelte dependencies and enable documentatio…
miccy e78be8c
refactor: improve schema difference calculation for columns and use a…
miccy 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
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,16 @@ | ||
| --- | ||
| "@evolu/common": major | ||
| --- | ||
|
|
||
| Replaced `evolu.createQuery` with standalone `createQueryBuilder` function | ||
|
|
||
| Queries are now created using a standalone `createQueryBuilder` function instead of `evolu.createQuery` method. This enables query creation without an Evolu instance, improving code organization and enabling schema-first development. | ||
|
|
||
| ```ts | ||
| // Before | ||
| const todosQuery = evolu.createQuery((db) => db.selectFrom("todo").selectAll()); | ||
|
|
||
| // After | ||
| const createQuery = createQueryBuilder(Schema); | ||
| const todosQuery = createQuery((db) => db.selectFrom("todo").selectAll()); | ||
| ``` | ||
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
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.