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 9.0.1 #8065

Merged
merged 2 commits into from
May 7, 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
38 changes: 38 additions & 0 deletions doc/releasenotes/9_0_1_release_notes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
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.

## Bug fixes
### Cluster management
* Backport: Respect -disable_active_reparents in backup/restore #8063
### Other
* [9.0] fix regression - should be able to plan subquery on top of subquery #7683
### Query Serving
* [9.0] Fix for reserved connection usage with transaction #7666
* [9.0] Fix MySQL Workbench failure on login with `select current_user()` #7706
* [9.0] make sure to handle subqueries on top of subqueries #7776
* [9.0] make sure to not log sensitive information #7778
* [9.0] ddl bypass planner #8035
* [9.0] Memory Sort to close the goroutines when callback returns error #8040
* [9.0] Fix bug with reserved connections to stale tablets #8041
* [9.0] Fix for Query Serving when Toposerver is Down #8046
* ignore the error and log as warn if not able to validate the current system settings value #8062
### VReplication
* VReplication: fix vreplication timing metrics #8060
* VReplication: Pad binlog values for binary() columns to match the value returned by mysql selects #8061
## Documentation
### Other
* 9.0.0 Release Notes #7384
## Other
### Build/CI
* Fix Dockerfiles for vtexplain and vtctlclient #7418
### Query Serving
* Fix table parsing on VSchema generation #7511
* [9.0] Show anywhere plan fix to consider default keyspace #7530
* [9.0] Reset Session for Reserved Connection when the connection id is not found #7544
* Healthcheck: update healthy tablets correctly when a stream returns an error or times out #7732
### VReplication
* MoveTables: Refresh SrvVSchema and source tablets on completion #8059


The release includes 43 commits (excluding merges)
Thanks to all our contributors: @askdba, @deepthi, @dyv, @harshit-gangal, @rafael, @rohit-nayak-ps, @shlomi-noach, @systay

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>9.0.0</version>
<version>9.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>9.0.0</version>
<version>9.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>9.0.0</version>
<version>9.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>9.0.0</version>
<version>9.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>9.0.0</version>
<version>9.0.2-SNAPSHOT</version>
<packaging>pom</packaging>

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