Skip to content
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

sync cr-sqlite to ext/crr #151

Merged
merged 4 commits into from
Apr 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.libs/
.target_source
.vscode/
Makefile
/Makefile
autom4te.cache/
config.h
config.log
Expand Down
8 changes: 8 additions & 0 deletions ext/crr/.clang-format
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Use the Google style in this project.
BasedOnStyle: Google

# Some folks prefer to write "int& foo" while others prefer "int &foo". The
# Google Style Guide only asks for consistency within a project, we chose
# "int &foo" for this project:
DerivePointerAlignment: false
PointerAlignment: Right
4 changes: 4 additions & 0 deletions ext/crr/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
node_modules/
target/
dist/
dbg/
198 changes: 198 additions & 0 deletions ext/crr/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,198 @@
# @vlcn.io/crsqlite

## 0.9.1

### Patch Changes

- 419ee8f: include makefile in pkg
- aad733d: --

## 0.9.1-next.1

### Patch Changes

- include makefile in pkg

## 0.9.1-next.0

### Patch Changes

---

## 0.9.0

### Minor Changes

- 14c9f4e: useQuery perf updates, primary key only table fixes, sync in a background worker

## 0.9.0-next.0

### Minor Changes

- useQuery perf updates, primary key only table fixes, sync in a background worker

## 0.8.0

### Minor Changes

- 6316ec315: update to support prebuild binaries, include primary key only table fixes

### Patch Changes

- b7e0b21df: create dist dir on install
- 606060dbe: include install script

## 0.8.0-next.2

### Patch Changes

- create dist dir on install

## 0.8.0-next.1

### Patch Changes

- include install script

## 0.8.0-next.0

### Minor Changes

- update to support prebuild binaries, include primary key only table fixes

## 0.7.2

### Patch Changes

- 3d09cd595: preview all the hook improvements and multi db open fixes
- 567d8acba: auto-release prepared statements
- 54666261b: fractional indexing inclusion
- fractional indexing, better react hooks, many dbs opened concurrently
- fd9094220: fixup what is packed

## 0.7.2-next.3

### Patch Changes

- preview all the hook improvements and multi db open fixes

## 0.7.2-next.2

### Patch Changes

- auto-release prepared statements

## 0.7.2-next.1

### Patch Changes

- fixup what is packed

## 0.7.2-next.0

### Patch Changes

- fractional indexing inclusion

## 0.7.1

### Patch Changes

- 519bcfc2a: hooks, fixes to support examples, auto-determine tables queried
- hooks package, used_tables query, web only target for wa-sqlite

## 0.7.1-next.0

### Patch Changes

- hooks, fixes to support examples, auto-determine tables queried

## 0.7.0

### Minor Changes

- seen peers, binary encoding for network layer, retry on disconnect for server, auto-track peers

## 0.6.3

### Patch Changes

- deploy table validation fix

## 0.6.2

### Patch Changes

- cid winner selection bugfix

## 0.6.1

### Patch Changes

- rebuild all

## 0.6.0

### Minor Changes

- breaking change -- fix version recording problem that prevented convergence in p2p cases

## 0.5.2

### Patch Changes

- fix gh #108

## 0.5.1

### Patch Changes

- fix mem leak and cid win value selection bug

## 0.5.0

### Minor Changes

- fix tie breaking for merge, add example client-server sync

## 0.4.2

### Patch Changes

- fix bigint overflow in wasm, fix site_id not being returned with changesets

## 0.4.1

### Patch Changes

- fix memory leak when applying changesets

## 0.4.0

### Minor Changes

- fix multi-way merge

## 0.3.0

### Minor Changes

- incorporate schema fitness checks

## 0.2.0

### Minor Changes

- update to use `wa-sqlite`, fix site id forwarding, fix scientific notation replication, etc.

## 0.1.8

### Patch Changes

- fix linking issues on linux distros

## 0.1.7

### Patch Changes

- fixes site id not being passed during replication
Loading