Skip to content

dolt 1.82.4#268664

Merged
BrewTestBot merged 2 commits intomainfrom
bump-dolt-1.82.4
Feb 21, 2026
Merged

dolt 1.82.4#268664
BrewTestBot merged 2 commits intomainfrom
bump-dolt-1.82.4

Conversation

@BrewTestBot
Copy link
Copy Markdown
Contributor

Created by brew bump


Created with brew bump-formula-pr.

Details

release notes
# Merged PRs

dolt

  • 10538: fix git remote performance on dolt push
    Prior to this change pushes that would take ~6s to DoltHub took ~70s to a Git remote. This pr removes fetch for non-manifest keys that are already in the cache on the read path which brings a push to a git remote down to around ~17s. One the write path, tablefiles are now only written to the remote at the same time the manifest is written, in a single commit and push call. This change brings the performance down to about ~8s in my testing. This optimization doesn't change the Blobstore interface, but does introduce a risk for a caller-side bug, by incorrectly calling Put(tf1), CheckAndPut(manifest_referencing_tf1_and_tf2), Put(tf2). This changes the visibility contract that a Put is already on the remote.
    Also, fixes git fetch failures caused by stale remote-tracking refs: add --refmap="" so fetch only processes our explicit refspec and ignores the remote's default fetch refspecs, which can fail with ref directory/file conflicts unrelated to our ref.
  • 10532: Adding --continue flag to cherry-pick
    Currently our workflow for dealing with conflicts in cherry-pick is to dolt_add then dolt_commit which ends up losing commit data like the author and commit message.
    This PR adds the --continue flag to cherry-pick (both stored procedure and CLI), which will preserve the commit metadata.
    This flag exists on git cherry-pick
  • 10529: Filter ignored tables from dolt_status and dolt_diff
    Fixes DOLT_DIFF and DOLT_STATUS should omit newly created tables that match DOLT_IGNORE patterns dolthub/dolt#10524
    Ignored tables (tables matching patterns in the dolt_ignore system table) are tables that aren't intended to be staged. We should exclude them from dolt status and dolt diff output unless specifically requested with flags.
    There's one questionable part of this PR: how the system tables handle tables that match multiple conflicting patterns. The dolt status and dolt diff CLI commands detect this and display a warning, but there's not currently a way for the dolt_status and dolt_diff system tables to signal these conflicts. So with this PR:
    • System tables treat tables that match conflicting patterns as not ignored
    • CLI commands do an additional check in order to detect conflicts
      This PR also removes most of the duplicate logic out of the dolt status command in favor of the dolt_status_ignored system table. We can't remove all the logic because of the aforemenentioned check.

go-mysql-server

  • 3441: bug fix: allow ALTER TABLE DROP CONSTRAINT to remove unique indexes
    When adding a unique constraint to a table, it wasn't possible to remove it using ALTER TABLE DROP CONSTRAINT. This change allows unique indexes to be removed with this syntax.
    Related to: Fix ALTER TABLE ... DROP CONSTRAINT for UNIQUE constraints dolthub/doltgresql#2359
  • 3438: Implement sql.StringType interface for systemStringType
    fixes dolthub/dolt#10534
    part of dolthub/dolt#10535

Closed Issues

  • 10524: DOLT_DIFF and DOLT_STATUS should omit newly created tables that match DOLT_IGNORE patterns

View the full release notes at https://github.com/dolthub/dolt/releases/tag/v1.82.4.


@github-actions github-actions bot added go Go use is a significant feature of the PR or issue bump-formula-pr PR was created using `brew bump-formula-pr` icu4c ICU use is a significant feature of the PR or issue labels Feb 21, 2026
@github-actions
Copy link
Copy Markdown
Contributor

🤖 An automated task has requested bottles to be published to this PR.

Caution

Please do not push to this PR branch before the bottle commits have been pushed, as this results in a state that is difficult to recover from. If you need to resolve a merge conflict, please use a merge commit. Do not force-push to this PR branch.

@github-actions github-actions bot added the CI-published-bottle-commits The commits for the built bottles have been pushed to the PR branch. label Feb 21, 2026
@BrewTestBot BrewTestBot added this pull request to the merge queue Feb 21, 2026
Merged via the queue into main with commit 667016f Feb 21, 2026
22 checks passed
@BrewTestBot BrewTestBot deleted the bump-dolt-1.82.4 branch February 21, 2026 03:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

bump-formula-pr PR was created using `brew bump-formula-pr` CI-published-bottle-commits The commits for the built bottles have been pushed to the PR branch. go Go use is a significant feature of the PR or issue icu4c ICU use is a significant feature of the PR or issue

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants