Skip to content

Releases: tursodatabase/limbo

v0.0.19-pre.4

03 Apr 11:07
Compare
Choose a tag to compare
v0.0.19-pre.4 Pre-release
Pre-release

Install limbo_cli 0.0.19-pre.4

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/tursodatabase/limbo/releases/download/v0.0.19-pre.4/limbo_cli-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -c "irm https://github.com/tursodatabase/limbo/releases/download/v0.0.19-pre.4/limbo_cli-installer.ps1 | iex"

Download limbo_cli 0.0.19-pre.4

File Platform Checksum
limbo_cli-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
limbo_cli-x86_64-apple-darwin.tar.xz Intel macOS checksum
limbo_cli-x86_64-pc-windows-msvc.zip x64 Windows checksum
limbo_cli-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksum

Verifying GitHub Artifact Attestations

The artifacts in this release have attestations generated with GitHub Artifact Attestations. These can be verified by using the GitHub CLI:

gh attestation verify <file-path of downloaded artifact> --repo tursodatabase/limbo

You can also download the attestation from GitHub and verify against that directly:

gh attestation verify <file-path of downloaded artifact> --bundle <file-path of downloaded attestation>

v0.0.19-pre.3

03 Apr 10:00
Compare
Choose a tag to compare
v0.0.19-pre.3 Pre-release
Pre-release

Install limbo_cli 0.0.19-pre.3

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/tursodatabase/limbo/releases/download/v0.0.19-pre.3/limbo_cli-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -c "irm https://github.com/tursodatabase/limbo/releases/download/v0.0.19-pre.3/limbo_cli-installer.ps1 | iex"

Download limbo_cli 0.0.19-pre.3

File Platform Checksum
limbo_cli-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
limbo_cli-x86_64-apple-darwin.tar.xz Intel macOS checksum
limbo_cli-x86_64-pc-windows-msvc.zip x64 Windows checksum
limbo_cli-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksum

Verifying GitHub Artifact Attestations

The artifacts in this release have attestations generated with GitHub Artifact Attestations. These can be verified by using the GitHub CLI:

gh attestation verify <file-path of downloaded artifact> --repo tursodatabase/limbo

You can also download the attestation from GitHub and verify against that directly:

gh attestation verify <file-path of downloaded artifact> --bundle <file-path of downloaded attestation>

v0.0.19-pre.2

03 Apr 08:07
Compare
Choose a tag to compare
v0.0.19-pre.2 Pre-release
Pre-release

Install limbo_cli 0.0.19-pre.2

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/tursodatabase/limbo/releases/download/v0.0.19-pre.2/limbo_cli-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -c "irm https://github.com/tursodatabase/limbo/releases/download/v0.0.19-pre.2/limbo_cli-installer.ps1 | iex"

Download limbo_cli 0.0.19-pre.2

File Platform Checksum
limbo_cli-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
limbo_cli-x86_64-apple-darwin.tar.xz Intel macOS checksum
limbo_cli-x86_64-pc-windows-msvc.zip x64 Windows checksum
limbo_cli-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksum

Verifying GitHub Artifact Attestations

The artifacts in this release have attestations generated with GitHub Artifact Attestations. These can be verified by using the GitHub CLI:

gh attestation verify <file-path of downloaded artifact> --repo tursodatabase/limbo

You can also download the attestation from GitHub and verify against that directly:

gh attestation verify <file-path of downloaded artifact> --bundle <file-path of downloaded attestation>

0.0.18 - 2025-04-02

02 Apr 12:29
Compare
Choose a tag to compare

Release Notes

Added

  • Jsonb support update (Ihor Andrianov)
  • Add BTree balancing after delete (Krishna Vishal)
  • Introduce Register struct (Pere Diaz Bou)
  • Introduce immutable record (Pere Diaz Bou)
  • Introduce libFuzzer (Levy A.)
  • WAL frame checksum support (Daniel Boll)
  • Initial JavaScript bindings with napi-rs (Pekka Enberg)
  • Initial pass at UPDATE support (Preston Thorpe)
  • Add commit() and placeholding insert to Python binding (Diego Reis)

Updated

  • Create plan for Update queries (Preston Thorpe)
  • Validate cells inside a page after each operation (Pere Diaz Bou)
  • Refactor Cli Repl Commands to use clap (Pedro Muniz)
  • Allow balance_root to balance with interior pages (Pere Diaz Bou)
  • Let remainder (%) accept textual arguments (Anton Harniakou)
  • JSON code cleanups (Pekka Enberg)
  • Allocation improvements with ImmutableRecord, OwnedRecord and read_record (Pere Diaz Bou)
  • JavaScript binding improvements (Pekka Enberg)
  • Kill test environment (Pekka Enberg)
  • Remove public unlock method from SpinLock to prevent unsafe aliasing (Krishna Vishal)
  • Handle limit zero case in query plan emitter (Preston Thorpe)
  • Reduce MVCC cursor memory consumption (Ihor Andrianov)
  • Unary + is a noop (Levy A.)
  • JSON cache (Ihor Andrianov)
  • Bump rusqlite to 0.34 (Pere Diaz Bou)
  • core: Rename FileStorage to DatabaseFile (Pekka Enberg)
  • Improve Python bindings (Diego Reis)
  • Schema translation cleanups (Pekka Enberg)
  • Various JSON improvements (Ihor Andrianov)
  • Enable pretty mode in shell by default (Pekka Enberg)
  • Improve CLI color scheme (Pekka Enberg)
  • Impl Copy on some types in the pager to prevent explicit clones (Preston Thorpe)
  • Syntax highlighting and hinting (Pedro Muniz)
  • chore: gitignore files with an extension *.db (Anton Harniakou)
  • Organize extension library and feature gate VFS (Preston Thorpe)
  • fragment bench functions (Pere Diaz Bou)

Fixed

  • Remove unnecessary balance code that crashes (Pere Diaz Bou)
  • Fix propagation of divider cell balancing interior page (Pere Diaz Bou)
  • Fuzz test btree fix seeking. (Pere Diaz Bou)
  • Fix IdxCmp insn comparisons (Jussi Saurio)
  • Fixes probably all floating point math issues and floating point display issues. (Ihor Andrianov)
  • Make BTreeCell/read_payload not allocate any data + overflow fixes (Pere Diaz Bou)
  • Fix compute_shl negate with overflow (Krishna Vishal)
  • Fix a typo in README.md (Tshepang Mbambo)
  • Fix platform specific FFI C pointer type casts (Preston Thorpe)
  • core: Fix Destroy opcode root page handling (Pekka Enberg)
  • Fix SELECT 0.0 = 0 returning false (lgualtieri75)
  • bindings/python: Fix flaky tests (Diego Reis)
  • Fix io_uring WAL write corruption by ensuring buffer lifetime (Daniel Boll)

Install limbo_cli 0.0.18

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/tursodatabase/limbo/releases/download/v0.0.18/limbo_cli-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -c "irm https://github.com/tursodatabase/limbo/releases/download/v0.0.18/limbo_cli-installer.ps1 | iex"

Download limbo_cli 0.0.18

File Platform Checksum
limbo_cli-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
limbo_cli-x86_64-apple-darwin.tar.xz Intel macOS checksum
limbo_cli-x86_64-pc-windows-msvc.zip x64 Windows checksum
limbo_cli-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksum

Verifying GitHub Artifact Attestations

The artifacts in this release have attestations generated with GitHub Artifact Attestations. These can be verified by using the GitHub CLI:

gh attestation verify <file-path of downloaded artifact> --repo tursodatabase/limbo

You can also download the attestation from GitHub and verify against that directly:

gh attestation verify <file-path of downloaded artifact> --bundle <file-path of downloaded attestation>

v0.0.18-pre.5

02 Apr 11:03
Compare
Choose a tag to compare
v0.0.18-pre.5 Pre-release
Pre-release

Install limbo_cli 0.0.18-pre.5

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/tursodatabase/limbo/releases/download/v0.0.18-pre.5/limbo_cli-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -c "irm https://github.com/tursodatabase/limbo/releases/download/v0.0.18-pre.5/limbo_cli-installer.ps1 | iex"

Download limbo_cli 0.0.18-pre.5

File Platform Checksum
limbo_cli-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
limbo_cli-x86_64-apple-darwin.tar.xz Intel macOS checksum
limbo_cli-x86_64-pc-windows-msvc.zip x64 Windows checksum
limbo_cli-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksum

Verifying GitHub Artifact Attestations

The artifacts in this release have attestations generated with GitHub Artifact Attestations. These can be verified by using the GitHub CLI:

gh attestation verify <file-path of downloaded artifact> --repo tursodatabase/limbo

You can also download the attestation from GitHub and verify against that directly:

gh attestation verify <file-path of downloaded artifact> --bundle <file-path of downloaded attestation>

v0.0.18-pre.4

02 Apr 06:58
Compare
Choose a tag to compare
v0.0.18-pre.4 Pre-release
Pre-release

Install limbo_cli 0.0.18-pre.4

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/tursodatabase/limbo/releases/download/v0.0.18-pre.4/limbo_cli-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -c "irm https://github.com/tursodatabase/limbo/releases/download/v0.0.18-pre.4/limbo_cli-installer.ps1 | iex"

Download limbo_cli 0.0.18-pre.4

File Platform Checksum
limbo_cli-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
limbo_cli-x86_64-apple-darwin.tar.xz Intel macOS checksum
limbo_cli-x86_64-pc-windows-msvc.zip x64 Windows checksum
limbo_cli-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksum

Verifying GitHub Artifact Attestations

The artifacts in this release have attestations generated with GitHub Artifact Attestations. These can be verified by using the GitHub CLI:

gh attestation verify <file-path of downloaded artifact> --repo tursodatabase/limbo

You can also download the attestation from GitHub and verify against that directly:

gh attestation verify <file-path of downloaded artifact> --bundle <file-path of downloaded attestation>

v0.0.18-pre.2

20 Mar 07:01
Compare
Choose a tag to compare
v0.0.18-pre.2 Pre-release
Pre-release

Install limbo_cli 0.0.18-pre.2

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/tursodatabase/limbo/releases/download/v0.0.18-pre.2/limbo_cli-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -c "irm https://github.com/tursodatabase/limbo/releases/download/v0.0.18-pre.2/limbo_cli-installer.ps1 | iex"

Download limbo_cli 0.0.18-pre.2

File Platform Checksum
limbo_cli-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
limbo_cli-x86_64-apple-darwin.tar.xz Intel macOS checksum
limbo_cli-x86_64-pc-windows-msvc.zip x64 Windows checksum
limbo_cli-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksum

Verifying GitHub Artifact Attestations

The artifacts in this release have attestations generated with GitHub Artifact Attestations. These can be verified by using the GitHub CLI:

gh attestation verify <file-path of downloaded artifact> --repo tursodatabase/limbo

You can also download the attestation from GitHub and verify against that directly:

gh attestation verify <file-path of downloaded artifact> --bundle <file-path of downloaded attestation>

v0.0.18-pre.1

19 Mar 18:55
Compare
Choose a tag to compare
v0.0.18-pre.1 Pre-release
Pre-release

Install limbo_cli 0.0.18-pre.1

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/tursodatabase/limbo/releases/download/v0.0.18-pre.1/limbo_cli-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -c "irm https://github.com/tursodatabase/limbo/releases/download/v0.0.18-pre.1/limbo_cli-installer.ps1 | iex"

Download limbo_cli 0.0.18-pre.1

File Platform Checksum
limbo_cli-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
limbo_cli-x86_64-apple-darwin.tar.xz Intel macOS checksum
limbo_cli-x86_64-pc-windows-msvc.zip x64 Windows checksum
limbo_cli-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksum

Verifying GitHub Artifact Attestations

The artifacts in this release have attestations generated with GitHub Artifact Attestations. These can be verified by using the GitHub CLI:

gh attestation verify <file-path of downloaded artifact> --repo tursodatabase/limbo

You can also download the attestation from GitHub and verify against that directly:

gh attestation verify <file-path of downloaded artifact> --bundle <file-path of downloaded attestation>

0.0.17 - 2025-03-19

19 Mar 15:53
Compare
Choose a tag to compare

Release Notes

Added

  • BEGIN DEFERRED support (Diego Reis)
  • Experimental MVCC integration (Pekka Enberg)
  • DROP TABLE support (Zaid Humayun)
  • Initial pass on Virtual FileSystem extension module (Preston Thorpe)
  • JSONB support (Ihor Andrianov)
  • Shell command completion (Pedro Muniz)

Updated

Fixed

  • Fixes and improvements to Rust bindings (yirt grek and 南宫茜)
  • Transaction management fixes (Pere Diaz Bou and Diego Reis)
  • JSON function fixes (Ihor Andrianov)

Install limbo_cli 0.0.17

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/tursodatabase/limbo/releases/download/v0.0.17/limbo_cli-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -c "irm https://github.com/tursodatabase/limbo/releases/download/v0.0.17/limbo_cli-installer.ps1 | iex"

Download limbo_cli 0.0.17

File Platform Checksum
limbo_cli-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
limbo_cli-x86_64-apple-darwin.tar.xz Intel macOS checksum
limbo_cli-x86_64-pc-windows-msvc.zip x64 Windows checksum
limbo_cli-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksum

Verifying GitHub Artifact Attestations

The artifacts in this release have attestations generated with GitHub Artifact Attestations. These can be verified by using the GitHub CLI:

gh attestation verify <file-path of downloaded artifact> --repo tursodatabase/limbo

You can also download the attestation from GitHub and verify against that directly:

gh attestation verify <file-path of downloaded artifact> --bundle <file-path of downloaded attestation>

0.0.16 - 2025-03-05

05 Mar 12:07
Compare
Choose a tag to compare

Release Notes

Added

  • Virtual table support (Preston Thorpe)
  • Improvements to Java bindings (Kim Seon Woo)
  • Improvements to Rust bindings (Pekka Enberg)
  • Add sqlean ipaddr extension (EmNudge)
  • Add "dump" and "load" to the help menu (EmNudge)
  • Initial Antithesis testing tool (Pekka Enberg)

Fixed

  • SQLite B-Tree balancing algorithm (Pere Diaz Bou)
  • B-Tree improves and fixes (Pere Diaz Bou and Perston Thorpe)
  • Display blobs as blob literals in .dump (from Mohamed Hossam)
  • Fix wrong count() result if the column specified contains a NULL (lgualtieri75)
  • Fix casting text to integer to match SQLite' (Preston Thorpe)
  • Improve SELECT 1 performance to be on par with SQLite (Pekka Enberg)
  • Fix offset_sec normalization in extensions/time (meteorgan)
  • Handle parsing URI according to SQLite specification (Preston Thorpe)
  • Escape character is ignored in LIKE function (lgualtieri75)
  • Fix cast_text_to_number compatibility (Pedro Muniz)
  • Modify the LIKE function to work with all types (Mohamed Hossam)

Install limbo_cli 0.0.16

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/tursodatabase/limbo/releases/download/v0.0.16/limbo_cli-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -c "irm https://github.com/tursodatabase/limbo/releases/download/v0.0.16/limbo_cli-installer.ps1 | iex"

Download limbo_cli 0.0.16

File Platform Checksum
limbo_cli-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
limbo_cli-x86_64-apple-darwin.tar.xz Intel macOS checksum
limbo_cli-x86_64-pc-windows-msvc.zip x64 Windows checksum
limbo_cli-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksum

Verifying GitHub Artifact Attestations

The artifacts in this release have attestations generated with GitHub Artifact Attestations. These can be verified by using the GitHub CLI:

gh attestation verify <file-path of downloaded artifact> --repo tursodatabase/limbo

You can also download the attestation from GitHub and verify against that directly:

gh attestation verify <file-path of downloaded artifact> --bundle <file-path of downloaded attestation>