What's New
Bug Fixes
Agent terminal access restrictions have been relaxed by removing unnecessary authorization and enabled checks. Pipeline updates now send both request shapes to ensure compatibility with pre- and post-2026.2 servers. Several migration fixes have been applied, including preserving setup-java version and avoiding unavailable hosted runners.
Changelog
- 2aaa4e1: feat(migrate): add migrate command with GitHub Actions and Bamboo support (Viktor (@tiulpin))
- 3e6bff5: feat(migrate): warn about unsupported CI configurations left unmigrated (Viktor (@tiulpin))
- 57b3083: feat(run): add --settings to override versioned-settings source (Viktor (@tiulpin))
- 2cebc5f: fix(agent): relax terminal access restrictions by removing authorization and enabled checks (Viktor (@tiulpin))
- 8fdc01d: fix(migrate): avoid unavailable hosted runners (Viktor (@tiulpin))
- 6d2b3cb: fix(migrate): flag hosted runner labels with no matching server image (Viktor (@tiulpin))
- 5cfd5d9: fix(migrate): preserve setup-java version (Viktor (@tiulpin))
- 4d8428a: fix(migrate): warn about unsupported ci configs (Viktor (@tiulpin))
- 774fb33: fix(pipeline): send both request shapes so update works on pre- and post-2026.2 servers (milica-siriski)
- 103b598: refactor(migrate): scope runner override to hosted labels, drop unsupported-CI warning (Viktor (@tiulpin))
Installation
macOS & Linux
Homebrew (recommended):
brew install jetbrains/utils/teamcityInstall script:
curl -fsSL https://jb.gg/tc/install | bashDebian/Ubuntu:
curl -fsSLO https://github.com/JetBrains/teamcity-cli/releases/download/v1.3.0/teamcity_linux_amd64.deb
sudo dpkg -i teamcity_linux_amd64.debRHEL/Fedora:
sudo rpm -i https://github.com/JetBrains/teamcity-cli/releases/download/v1.3.0/teamcity_linux_amd64.rpmArch Linux (AUR):
yay -S teamcity-binWindows
Winget (recommended):
winget install JetBrains.TeamCityCLIChocolatey:
choco install TeamCityCLIScoop:
scoop bucket add jetbrains https://github.com/JetBrains/scoop-utils
scoop install teamcityManual:
Download teamcity_1.3.0_windows_x86_64.zip, extract, and add to PATH.
npm
npm install -g @jetbrains/teamcity-cliGo Install
go install github.com/JetBrains/teamcity-cli/tc@v1.3.0Quick Start
# Authenticate with your TeamCity server
teamcity auth login
# List recent builds
teamcity run list
# Start a build
teamcity run start MyProject_Build --branch main --watchFull documentation — getting started, configuration, command reference, and more.