Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
dolt-windows-amd64.msi | 2025-07-16 | 40.6 MB | |
install.sh | 2025-07-16 | 3.2 kB | |
dolt-windows-amd64.7z | 2025-07-16 | 19.7 MB | |
dolt-windows-amd64.zip | 2025-07-16 | 35.1 MB | |
dolt-darwin-arm64.tar.gz | 2025-07-16 | 37.4 MB | |
dolt-darwin-amd64.tar.gz | 2025-07-16 | 39.0 MB | |
dolt-linux-arm64.tar.gz | 2025-07-16 | 36.7 MB | |
dolt-linux-amd64.tar.gz | 2025-07-16 | 39.1 MB | |
1.57.0 source code.tar.gz | 2025-07-16 | 12.3 MB | |
1.57.0 source code.zip | 2025-07-16 | 14.0 MB | |
README.md | 2025-07-16 | 2.7 kB | |
Totals: 11 Items | 274.1 MB | 1 |
Backwards Incompatible Changes
This version introduces a change to the dolt ci
system tables that breaks import
and export
. Run the following command to update your tables:
dolt sql -q "alter table dolt_ci_workflow_saved_query_step_expected_row_column_results rename column expected_column_row_comparison_type to expected_row_count_comparison_type;"
Per Dolt’s versioning policy, this is a minor version bump because these changes may impact existing applications. Please reach out to us on GitHub or Discord if you have questions or need help with any of these changes.
Merged PRs
dolt
- 9527: dolt_commit and dolt_add to target branch
Fixes: https://github.com/dolthub/dolt/issues/9524
* 9526: Update GC docs to have correct max for archive level
Documentation bug. We have tests to ensure you can't specify --archive-level 2
Fixes: https://github.com/dolthub/dolt/issues/9521
* 9525: return io.EOF
for empty strict lookups
When there is no lookup key/value, we should return io.EOF
for strict lookups.
Tests: https://github.com/dolthub/go-mysql-server/pull/3097
Fixes: https://github.com/dolthub/dolt/issues/9523
* 9517: Migrate dolt CI commands to query database
This PR migrates the dolt CI
subcommands to use SQL queries instead of directly modifying the database.
It also fixes an existing panic when you try to run the commands while a server is running.
There are several other small changes, fixing some typos and cleaning up functions.
go-mysql-server
- 3097: test aggregates over indexes with false filter
- 3095: Convert SetType to strings Fixes most of the broken tests in [#9469] (skipping tests related to [#9510] and [#9511]) also fixes [#9473]
- 3091: sql/types: JSONWrapper: Thread Context on some methods on JSON-related types, such as ToInterface and Compare.