Skip to content

v1.4.0

Latest

Choose a tag to compare

@tiulpin tiulpin released this 20 Aug 19:35
Immutable release. Only release title and notes can be modified.
0af59a5

What's New

New Features

Support for plugin upload with hot reload has been added, allowing plugins to be activated without restarting the server. A --tag filter is now available for run list to narrow results by tag.

Bug Fixes

Several queue operations have been corrected, including canceling queued runs instead of deleting their history, moving builds to the top of the queue via the proper API route, and using the correct REST paths for build approval. Pool handling has been improved so that pool ID 0 is preserved correctly in JSON output and move requests, and wording for pool unlinking has been fixed. SSH key upload, agent enable/disable permissions, and stray-argument handling in ssh list have also been corrected.

Changelog

Installation

macOS & Linux

Homebrew (recommended):

brew install jetbrains/utils/teamcity

Install script:

curl -fsSL https://jb.gg/tc/install | bash

Debian/Ubuntu:

curl -fsSLO https://github.com/JetBrains/teamcity-cli/releases/download/v1.4.0/teamcity_linux_amd64.deb
sudo dpkg -i teamcity_linux_amd64.deb

RHEL/Fedora:

sudo rpm -i https://github.com/JetBrains/teamcity-cli/releases/download/v1.4.0/teamcity_linux_amd64.rpm

Arch Linux (AUR):

yay -S teamcity-bin

Windows

Winget (recommended):

winget install JetBrains.TeamCityCLI

Chocolatey:

choco install TeamCityCLI

Scoop:

scoop bucket add jetbrains https://github.com/JetBrains/scoop-utils
scoop install teamcity

Manual:
Download teamcity_1.4.0_windows_x86_64.zip, extract, and add to PATH.

npm

npm install -g @jetbrains/teamcity-cli

Go Install

go install github.com/JetBrains/teamcity-cli/tc@v1.4.0

Quick 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 --watch

Full documentation — getting started, configuration, command reference, and more.