Skip to content

Commit

Permalink
bump version to v1.14.0 (#2322)
Browse files Browse the repository at this point in the history
  • Loading branch information
nexustar authored Nov 17, 2023
1 parent 7dfc35b commit c3e9fc5
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 2 deletions.
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

0 comments on commit c3e9fc5

Please sign in to comment.