4.0 KiB
Changelog
0.0.11 - 2024-12-31
Added
-
Add in-memory mode to Python bindings (Jean Arhancet)
-
Add json_array_length function (Peter Sooley)
-
Add support for the UUID extension (Preston Thorpe)
Changed
-
Enable sqpoll by default in io_uring (Preston Thorpe)
-
Simulator improvements (Alperen Keleş)
Fixed
-
Fix escaping issues with like and glob functions (Vrishabh)
-
Fix
sqlite_version()out of bound panics' (Diego Reis) -
Fix on-disk file format bugs (Jussi Saurio)
0.0.10 - 2024-12-18
Added
-
In-memory mode (Preston Thorpe)
-
More CLI improvements (Preston Thorpe)
-
Add support for replace() function (Alperen Keleş)
-
Unary operator improvements (Jean Arhancet)
-
Add support for unex(x, y) function (Kacper Kołodziej)
Fixed
- Fix primary key handling when there's rowid and PK is not alias (Jussi Saurio)
0.0.9 - 2024-12-12
Added
-
Improve CLI (Preston Thorpe)
-
Add support for iif() function (Alex Miller)
-
Add suport for last_insert_rowid() function (Krishna Vishal)
-
Add support JOIN USING and NATURAL JOIN (Jussi Saurio)
-
Add support for more scalar functions (Kacper Kołodziej)
-
Add support for
HAVINGclause (Jussi Saurio) -
Add
get()anditerate()to JavaScript/Wasm API (Jean Arhancet)
0.0.8 - 2024-11-20
Added
- Python package build and example usage (Pekka Enberg)
0.0.7 - 2024-11-20
Added
- Minor improvements to JavaScript API (Pekka Enberg)
CASTsupport (Jussi Saurio)
Fixed
- Fix issues found in-btree code with the DST (Pere Diaz Bou)
0.0.6 - 2024-11-18
Fixed
- Fix database truncation caused by
limbo-wasmopening file in wrong mode (Pere Diaz Bou)
0.0.5 - 2024-11-18
Added
-
CREATE TABLEsupport (Pere Diaz Bou) -
Add Add Database.prepare() and Statement.all() to Wasm bindings (Pekka Enberg)
-
WAL improvements (Pere Diaz Bou)
-
Primary key index scans and single-column secondary index scans (Jussi Saurio)
-
GROUP BYsupport (Jussi Saurio) -
Overflow page support (Pere Diaz Bou)
-
Improvements to Python bindings (Jean Arhancet and Lauri Virtanen)
-
Improve scalar function support (Lauri Virtanen)
Fixed
-
Panic in codegen with
COUNT(*)(Jussi Saurio) -
Fix
LIKEto be case insensitive (RJ Barman)
0.0.4 - 2024-08-22
-
Query planner rewrite (Jussi Saurio)
-
Initial pass on Python bindings (Jean Arhancet)
-
Improve scalar function support (Kim Seon Woo and Jean Arhancet)
Added
- Partial support for
json()function (Jean Arhancet)
0.0.3 - 2024-08-01
Added
-
Initial pass on the write path. Note that the write path is not transactional yet. (Pere Diaz Bou)
-
More scalar functions:
unicode()(Ethan Niser) -
Optimize point queries with integer keys (Jussi Saurio)
Fixed
-
ORDER BYsupport for nullable sorting columns and qualified identifiers (Jussi Saurio) -
Fix
.schemacommand crash in the CLI (#212 (Jussi Saurio)
0.0.2 - 2024-07-24
Added
-
Partial
LEFT JOINsupport. -
Partial
ORDER BYsupport. -
Partial scalar function support.
Fixed
- Lock database file with POSIX filesystem advisory lock when database is opened to prevent concurrent processes from corrupting a file. Please note that the locking scheme differs from SQLite, which uses POSIX advisory locks for every transaction. We're defaulting to locking on open because it's faster. (Issue #94)
Changed
- Install to
~/.limbo/instead ofCARGO_HOME.
0.0.1 - 2024-07-17
Added
-
Partial
SELECTstatement support, includingWHERE,LIKE,LIMIT,CROSS JOIN, andINNER JOIN. -
Aggregate function support.
-
EXPLAINstatement support. -
Partial
PRAGMAstatement support, includingcache_size. -
Asynchronous I/O support with Linux io_uring using direct I/O and Darwin kqueue.
-
Initial pass on command line shell with following commands:
.schemacommand that describes the database schema..opcodes <opcode>that describes what a VDBE opcode does.