Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions docs/release-notes/v0.1.5.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# tdc v0.1.5

This release makes TiDB Cloud Starter cluster creation shorter and more deterministic for users, scripts, and agents. Because tdc currently manages Starter clusters exclusively, `tdc db create-db-cluster` now defaults the cluster type to `starter`; users only need to provide the cluster name and can still explicitly pass `--db-cluster-type starter` when desired.

```bash
export CLUSTER_ID="$(tdc db create-db-cluster \
--db-cluster-name agent-db \
--wait \
--query id \
--output text)"
```

Unsupported explicit cluster types continue to fail before a request is sent. The release also refines command help descriptions and Preview labels across the Filesystem command surface, and simplifies the README quick-start, configuration, mount, and help workflows.

Upgrade an existing installation with:

```bash
tdc update --check
tdc update
tdc --version
```