Skip to content

chore(deps): bump turso_core from 0.8.0-pre.2 to 0.8.0-pre.3 - #2289

Merged
chaliy merged 2 commits into
mainfrom
dependabot/cargo/turso_core-0.8.0-pre.3
Aug 10, 2026
Merged

chore(deps): bump turso_core from 0.8.0-pre.2 to 0.8.0-pre.3#2289
chaliy merged 2 commits into
mainfrom
dependabot/cargo/turso_core-0.8.0-pre.3

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 10, 2026

Copy link
Copy Markdown
Contributor

Bumps turso_core from 0.8.0-pre.2 to 0.8.0-pre.3.

Release notes

Sourced from turso_core's releases.

v0.8.0-pre.3

Install turso_cli 0.8.0-pre.3

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/tursodatabase/turso/releases/download/v0.8.0-pre.3/turso_cli-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -ExecutionPolicy Bypass -c "irm https://github.com/tursodatabase/turso/releases/download/v0.8.0-pre.3/turso_cli-installer.ps1 | iex"

Download turso_cli 0.8.0-pre.3

File Platform Checksum
turso_cli-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum
turso_cli-x86_64-apple-darwin.tar.xz Intel macOS checksum
turso_cli-aarch64-pc-windows-msvc.zip ARM64 Windows checksum
turso_cli-x86_64-pc-windows-msvc.zip x64 Windows checksum
turso_cli-aarch64-unknown-linux-gnu.tar.xz ARM64 Linux checksum
turso_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/turso

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>
Commits
  • ed15b13 Turso 0.8.0-pre.3
  • f5c823b Merge 'sqlite/parser: match SQLite error for ORDER BY before compound operato...
  • 8f1cfdd Merge 'core/vdbe: accept i64::MIN when applying numeric affinity to text' fro...
  • dc23cdd Merge 'core/mvcc: reclaim Passive checkpoint versions and empty SkipMap slots...
  • 4a506af Merge 'testing/differential: make differential fuzzer reliable enough to run ...
  • 7140860 Merge 'core/translate: route CREATE TEMP VIEW to the temp schema' from roboturso
  • 4a4b722 conformance: bless seven TCL test files that now fully pass
  • 8b729b4 conformance: run each TCL test file in its own process
  • 4b0a564 core/translate: route CREATE TEMP VIEW to the temp schema
  • 06e4482 Potential fix for pull request finding
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Aug 10, 2026
@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented Aug 10, 2026

Copy link
Copy Markdown

Deploying with  Cloudflare Workers  Cloudflare Workers

The latest updates on your project. Learn more about integrating Git with Workers.

Status Name Latest Commit Preview URL Updated (UTC)
✅ Deployment successful!
View logs
bashkit 5a5e916 Commit Preview URL

Branch Preview URL
Aug 10 2026, 10:09 AM

chaliy added 2 commits August 10, 2026 10:06
turso 0.8.0-pre.3 implements `WITH RECURSIVE`, which the differential
suite previously pinned as a documented divergence. The negative test now
fails because turso agrees with host sqlite3, so convert it to the plain
`assert_matches` parity check the divergence note called for and drop the
note from the sqlite knowledge doc.

Also repin the cargo-vet exemptions for the four turso_* crates, which
Dependabot cannot update itself.

Verified turso now emits 1..5 for the recursive CTE, byte-identical to
the host sqlite3 output the old test asserted.
Rebased onto main after the rust-dependencies group merge, so the
lockfile bump is reapplied cleanly on top of the current Cargo.lock.
@chaliy
chaliy force-pushed the dependabot/cargo/turso_core-0.8.0-pre.3 branch from 9a6889e to 5a5e916 Compare August 10, 2026 10:08

chaliy commented Aug 10, 2026

Copy link
Copy Markdown
Contributor

Rebased onto main (after #2287/#2288 merged) and pushed two fixes this bump needs:

1. cargo vet exemptions. Dependabot can't touch supply-chain/config.toml, so cargo vet --locked failed with the four turso_* crates unvetted. Repinned in place to 0.8.0-pre.3.

2. The Test / Generate Rust Coverage failures were a real behavior change, not a break. sqlite_differential_tests::recursive_cte_unsupported_in_turso was a negative-spec test pinning a documented divergence — turso rejected WITH RECURSIVE through 0.8.0-pre.2. 0.8.0-pre.3 implements it, so the test failed on its own assertion message:

turso unexpectedly accepted a recursive CTE — rotate this test into assert_matches and remove the divergence note in the spec

Did exactly that: the test is now recursive_cte_matches_host, a plain byte-equality check against the host sqlite3, and the divergence note is dropped from knowledge/runtimes/sqlite-builtin.md.

Verified turso's new output directly:

exit_code = 0
stdout = "1\n2\n3\n4\n5\n"
stderr = ""

Byte-identical to the host output the old test asserted, so this is upstream closing the gap rather than a regression.


Generated by Claude Code

@chaliy
chaliy merged commit d5d83d6 into main Aug 10, 2026
42 checks passed
@chaliy
chaliy deleted the dependabot/cargo/turso_core-0.8.0-pre.3 branch August 10, 2026 10:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant