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

Release 10.0.1 #8031

Merged
merged 2 commits into from
May 4, 2021
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
3 changes: 3 additions & 0 deletions doc/releasenotes/10_0_0_release_notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
This release complies with VEP-3 which removes the upgrade order requirement. Components can be upgraded in any order. It is recommended that the upgrade order should still be followed if possible, except to canary test the new version of VTGate before upgrading the rest of the components.

## Known Issues
* Running binaries with `--version` or calling @@version from a MySQL client still shows `10.0.0-RC1` (Note: fixed in v10.0.1)
* Online DDL [cannot be used](https://github.com/vitessio/vitess/pull/7873#issuecomment-822798180) if you are using the keyspace filtering feature of VTGate

The following PRs made changes to behaviors that clients might rely on. They should be reviewed carefully so that client code can be changed in concert with a Vitess release deployment.

Expand Down
2 changes: 2 additions & 0 deletions doc/releasenotes/10_0_1_release_notes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
## Bugs Fixed
* Running binaries with `--version` or calling @@version from a MySQL client still shows `10.0.0-RC1`
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 = "10.0.1-SNAPSHOT"
const versionName = "10.0.2-SNAPSHOT"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we change this for every patch release? I thought it was going to stay at 10.0.0-SNAPSHOT.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nvm, this makes sense.

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>10.0.1-SNAPSHOT</version>
<version>10.0.2-SNAPSHOT</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>10.0.1-SNAPSHOT</version>
<version>10.0.2-SNAPSHOT</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>10.0.1-SNAPSHOT</version>
<version>10.0.2-SNAPSHOT</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>10.0.1-SNAPSHOT</version>
<version>10.0.2-SNAPSHOT</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>10.0.1-SNAPSHOT</version>
<version>10.0.2-SNAPSHOT</version>
<packaging>pom</packaging>

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