Skip to content

Commit

Permalink
Release commit for 12.0.5
Browse files Browse the repository at this point in the history
Signed-off-by: Florent Poinsard <[email protected]>
  • Loading branch information
frouioui committed Jul 27, 2022
1 parent f1aa624 commit ebca7e9
Show file tree
Hide file tree
Showing 9 changed files with 41 additions and 7 deletions.
17 changes: 17 additions & 0 deletions doc/releasenotes/12_0_5_changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Changelog of Vitess v12.0.5

### Bug fixes
#### Build/CI
* Fixed the release notes CI check helper #10574
### CI/Build
#### Build/CI
* Remove the review checklist workflow #10656
* Upgrade v12 to go1.17.12 #10865
### Release
#### Build/CI
* Rework how the `release notes` labels are handled by the CI #10508
* Rework the generation of the release notes #10510
#### General
* Release `12.0.4` #10349
* Addition of the release summary for v12.0.5 #10864

17 changes: 17 additions & 0 deletions doc/releasenotes/12_0_5_release_notes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Release of Vitess v12.0.5
## Major Changes

### Upgrade to `go1.17.12`

Vitess `v12.0.5` now runs on `go1.17.12`.
The patch release of Go, `go1.17.12`, is the reason for this release as it includes important security fixes to packages used by Vitess.
Below is a summary of this patch release. You can learn more [here](https://go.dev/doc/devel/release#go1.17).

> go1.17.12 (released 2022-07-12) includes security fixes to the compress/gzip, encoding/gob, encoding/xml, go/parser, io/fs, net/http, and path/filepath packages, as well as bug fixes to the compiler, the go command, the runtime, and the runtime/metrics package. [See the Go 1.17.12 milestone](https://github.com/golang/go/issues?q=milestone%3AGo1.17.12+label%3ACherryPickApproved) on our issue tracker for details.
------------
The entire changelog for this release can be found [here](https://github.com/vitessio/vitess/blob/main/doc/releasenotes/12_0_5_changelog.md).

The release includes 7 commits (excluding merges)

Thanks to all our contributors: @deepthi, @frouioui

2 changes: 1 addition & 1 deletion go/tools/release-notes/release_notes.go
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ func main() {
flag.Parse()

// The -version flag must be of a valid format.
rx := regexp.MustCompile(`v([0-9]+)\\.([0-9]+)\\.([0-9]+)`)
rx := regexp.MustCompile(`v([0-9]+)\.([0-9]+)\.([0-9]+)`)
// There should be 4 sub-matches, input: "v14.0.0", output: ["v14.0.0", "14", "0", "0"].
versionMatch := rx.FindStringSubmatch(*versionName)
if len(versionMatch) != 4 {
Expand Down
2 changes: 1 addition & 1 deletion go/vt/servenv/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package servenv

const versionName = "12.0.5-SNAPSHOT"
const versionName = "12.0.5"
2 changes: 1 addition & 1 deletion java/client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.vitess</groupId>
<artifactId>vitess-parent</artifactId>
<version>12.0.5-SNAPSHOT</version>
<version>12.0.5</version>
</parent>
<artifactId>vitess-client</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion java/example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.vitess</groupId>
<artifactId>vitess-parent</artifactId>
<version>12.0.5-SNAPSHOT</version>
<version>12.0.5</version>
</parent>
<artifactId>vitess-example</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion java/grpc-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.vitess</groupId>
<artifactId>vitess-parent</artifactId>
<version>12.0.5-SNAPSHOT</version>
<version>12.0.5</version>
</parent>
<artifactId>vitess-grpc-client</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion java/jdbc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.vitess</groupId>
<artifactId>vitess-parent</artifactId>
<version>12.0.5-SNAPSHOT</version>
<version>12.0.5</version>
</parent>
<artifactId>vitess-jdbc</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<groupId>io.vitess</groupId>
<artifactId>vitess-parent</artifactId>
<version>12.0.5-SNAPSHOT</version>
<version>12.0.5</version>
<packaging>pom</packaging>

<name>Vitess Java Client libraries [Parent]</name>
Expand Down

0 comments on commit ebca7e9

Please sign in to comment.