Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump version to v1.14.0 #2322

Merged
merged 1 commit into from
Nov 17, 2023
Merged
Show file tree
Hide file tree
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
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
TiUP Changelog

## [1.14.0] 2023-11-17

### New Features

- Support use different component versions in `tiup-cluster` (#2010 #2264 #2306, @nexustar)
- Add global listen_host config in `tiup-cluster` and `tiup-dm` (#2303, @nexustar)
- Add gloabl component_sources config in `tiup-cluster` and `tiup-dm` (#2320, @nexustar)
- Support TiDB upgrade API to automatically pause DDL when upgrade in `tiup-cluster`(#2287 #2289, @nexustar)
- Support TiProxy in `tiup-cluster` (#2271, @xhebox)
- Support scheduling service in `tiup-playground` (#2273, @rleungx)
- Support to show numa node when display in `tiup-cluster` and `tiup-dm` (#2295 #2312, @KanShiori)

### Fixes

- Make sure to signal tiproxy to stop in `tiup-playground` (#2318, @dveeden)
- Fix "clone" operation may be missing packages without throwing an error in `tiup` (#2309 #2311, @nexustar)
- Not cache the output of ss -tln command when checking wether components are started/stopped in `tiup-cluster` and `tiup-dm` (#2298, @KanShiori)
- Fix tidb-dashboard listen_host in `tiup-cluster` (#2304, @nexustar)
- Fix tiproxy metrics addr in `tiup-playground` (#2299, @xhebox)

### Improvements

- Upgrade go-sql-driver/mysql version to v1.7.1 (#2246, @srstack)
- Use release version of TiProxy instead of nightly (#2305, @nexustar)
- Use port to probe TiDB in `tiup-playground` (#2296, @KanShiori)
- Add mcs name for pd log in `tiup-playground` (#2310, @HuSharp)
- Not overwrite real error in retry function (#2290, @nexustar)
- Fix alignment of output in `tiup-playground` (#2313, @dveeden)
- ci improve (#2301 #2308 #2316, @nexustar @dveeden)

## [1.13.1] 2023-09-25

### Fixes
Expand Down
4 changes: 2 additions & 2 deletions pkg/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ var (
// TiUPVerMajor is the major version of TiUP
TiUPVerMajor = 1
// TiUPVerMinor is the minor version of TiUP
TiUPVerMinor = 13
TiUPVerMinor = 14
// TiUPVerPatch is the patch version of TiUP
TiUPVerPatch = 1
TiUPVerPatch = 0
// TiUPVerName is an alternative name of the version
TiUPVerName = "tiup"
// GitHash is the current git commit hash
Expand Down
Loading