| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| dolt-windows-amd64.msi | 2025-08-06 | 44.0 MB | |
| install.sh | 2025-08-06 | 3.2 kB | |
| dolt-windows-amd64.7z | 2025-08-06 | 21.9 MB | |
| dolt-windows-amd64.zip | 2025-08-06 | 38.3 MB | |
| dolt-darwin-arm64.tar.gz | 2025-08-06 | 40.4 MB | |
| dolt-darwin-amd64.tar.gz | 2025-08-06 | 42.2 MB | |
| dolt-linux-arm64.tar.gz | 2025-08-06 | 39.7 MB | |
| dolt-linux-amd64.tar.gz | 2025-08-06 | 42.3 MB | |
| 1.58.0 source code.tar.gz | 2025-08-06 | 12.3 MB | |
| 1.58.0 source code.zip | 2025-08-06 | 14.0 MB | |
| README.md | 2025-08-06 | 2.7 kB | |
| Totals: 11 Items | 295.2 MB | 0 | |
Backwards Incompatible Changes
Cherry-pick now preserves original commit author: The dolt cherry-pick command now correctly preserves the author of the original commit, including during rebase operations. Previously, the cherry-pick operation would change the author to the user performing the cherry-pick. Note: This change may affect existing workflows that depend on the previous behavior where cherry-pick would update the author.
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
- 9632: [#9582] - Fix cherry-pick not preserving original commit author
Fixes [#9582]
Cherry-pick was using current user as author instead of preserving the original commit's author like Git does. Modified
CreateCommitStagedPropsFromCherryPickOptionsto extract and use original commit metadata (name/email) rather than current session user. Updated cherryPick function signature to return original commit object and fixed all callers including rebase integration. MaderesolveRefSpecpublic asResolveRefSpecfor reuse. - 9629: A more comprehensive default AGENT.md This change implements a much more comprehensive AGENT.md that covers a number of topics that may not be obvious or known to an agent using Dolt.
go-mysql-server
- 3138: [#9624] - Fix wildcard user authentication for IP patterns Fixes [#9624] Fixed wildcard user authentication that was failing with "No authentication methods available for authentication" error for patterns like 'user'@'127.0.0.%'.
- 3137: Bug fix: ordered aggregates in triggers
Fixes a customer-reported issue using
group_concat()in a trigger (https://github.com/dolthub/dolt/issues/9616). Also changes OrderedAggregation logic to account for one output scope field per-OrderedAggregation expression.