chore(release): bump versions and update changelogs#201
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 22, 2026 12:31
2f1e166 to
dc1d335
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 23, 2026 14:10
dc1d335 to
645abee
Compare
designcode
approved these changes
Jul 23, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@tigrisdata/cli@3.5.0
Minor Changes
#203
fa9292cThanks @designcode! - Addtigris initto connect Tigris to AI coding agents. The interactive wizarddetects installed editors, installs/updates the CLI, writes the Tigris remote
MCP server config for 10 editors (Claude Code, Cursor, VS Code, Windsurf, Codex,
Antigravity CLI, Cline, Zed, Roo Code, opencode), and installs the Tigris agent
skills.
tigris init --agentinstead prints a plain-text setup recipe for acoding agent to run itself.
#200
e64d887Thanks @designcode! - Add Sentry error telemetry to the CLI. Crashes (uncaught exceptions andunhandled rejections) are reported and flushed reliably; unexpected "general"
and network errors on the handled path are captured best-effort. Events are
enriched with the command, error category, exit code, CLI version, and platform.
Secrets (access keys, tokens, credential flags) and the machine hostname are
scrubbed before any event is sent. Telemetry is off in dev/test and when no DSN
is configured, and can be disabled with
TIGRIS_NO_TELEMETRY=1or the standardDO_NOT_TRACK=1.Patch Changes
#202
af315f4Thanks @designcode! - Fix a deadlock intigris buckets migratethat stalled large migrations, andoverhaul how migrations are paced and displayed.
a slow object at the head hid the completed objects behind it — their bytes
were never freed, the in-flight budget stayed pinned at its cap, and the
migration wedged (progress frozen with in-flight stuck at ~10 GB). It now
polls a rotating window across the whole in-flight set, so completions are
observed regardless of position.
and large files finish at the end instead of stalling mid-run.
bytes, and the byte budget is enforced across the pending schedule batch, so a
large file can't be scheduled alongside a full batch and blow the budget.
isMigratedpoll backs off (5s up to 30s) after sweepswhere nothing completed, and resets on the next completion, so an idle
migration stops hammering the gateway with status checks.
bucket and elapsed clock, file and byte percentages, and the file currently
being pulled (name, size, and how long it has been going) plus the in-flight
count. It redraws in place instead of duplicating lines on window resize, and
truncates each line to the terminal width so nothing wraps. There is no
throughput figure: confirmations are lumpy binary flips (the gateway does the
transfer), not a byte stream, so an "obj/s · MB/s" rate would misrepresent
progress.
summary of what was confirmed; objects already scheduled remain queued for
migration server-side, so re-running resumes from there. It is felt
immediately (the poll wait is abortable rather than blocking until it
elapses), and a second Ctrl-C forces an immediate exit.
Note
Low Risk
Release-metadata only (version, changelog, changeset cleanup); no application code changes in this diff.
Overview
Changesets release PR for
@tigrisdata/cli: bumps the package version from 3.4.3 to 3.5.0, folds three pending changesets intopackages/cli/CHANGELOG.md, and deletes those.changeset/*.mdfiles so they are not released twice.The 3.5.0 changelog documents already-merged work that ships with this version:
tigris init(agent/editor MCP setup), Sentry CLI telemetry (with scrubbing and opt-out), andbuckets migratedeadlock/progress/cancel improvements. This diff does not add or modify CLI source—only version and release notes.Reviewed by Cursor Bugbot for commit 645abee. Bugbot is set up for automated code reviews on this repo. Configure here.