Skip to content

Commit

Permalink
Release commit for 14.0.2
Browse files Browse the repository at this point in the history
Signed-off-by: Florent Poinsard <[email protected]>
  • Loading branch information
frouioui committed Sep 1, 2022
1 parent 02c387e commit 4d94e3f
Show file tree
Hide file tree
Showing 17 changed files with 131 additions and 67 deletions.
41 changes: 41 additions & 0 deletions doc/releasenotes/14_0_2_changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Changelog of Vitess v14.0.2

### Bug fixes
#### Backup and Restore
* BugFix: Using backups from v13 should work with v14 [#10919](https://github.com/vitessio/vitess/pull/10919@)
#### Build/CI
* Fix Upgrade Downgrade manual backup dependencies install [#11084](https://github.com/vitessio/vitess/pull/11084)
#### Cluster management
* [vtctld] Fix nil-ness in healthcheck (#11067) [#11068](https://github.com/vitessio/vitess/pull/11068)
#### Query Serving
* Online DDL: deal with autogenerated CHECK constraint names [#10638](https://github.com/vitessio/vitess/pull/10638)
* Fix AST copying of basic types in release-14.0 [#11051](https://github.com/vitessio/vitess/pull/11051)
* fix: return when instructions are nil in checkThatPlanIsValid [#11070](https://github.com/vitessio/vitess/pull/11070)
* On demand heartbeats: fix race condition closing the writer (#11157) [#11158](https://github.com/vitessio/vitess/pull/11158)
### CI/Build
#### Build/CI
* Remove MariaDB 10.2 Unit Test in v15 [#10700](https://github.com/vitessio/vitess/pull/10700)
* Add more robust go version handling [#11001](https://github.com/vitessio/vitess/pull/11001)
* Fix mariadb103 ci [#11015](https://github.com/vitessio/vitess/pull/11015)
* CI: change upgrade/downgrade tests to use vitessio fork of go-junit-report (#11023) [#11024](https://github.com/vitessio/vitess/pull/11024)
* Add workflow file to the filter rules [#11032](https://github.com/vitessio/vitess/pull/11032)
* Add upgrade-downgrade tests for next releases (release-14.0) [#11034](https://github.com/vitessio/vitess/pull/11034)
* Remove deprecated flag `enable_queries` from end to end tests in v14 [#11049](https://github.com/vitessio/vitess/pull/11049)
* Add SKIP check to workflows removed in v15 [#11083](https://github.com/vitessio/vitess/pull/11083)
#### Cluster management
* Fix flakiness in TestReplicationStatus [#10927](https://github.com/vitessio/vitess/pull/10927)
#### Query Serving
* CI Fix: Collation tests (#10839) [#10842](https://github.com/vitessio/vitess/pull/10842)
#### VReplication
* v14 backport of two PRs: vreplication throttling info & vreplication endtoend flakiness fix [#10928](https://github.com/vitessio/vitess/pull/10928)
### Enhancement
#### Backup and Restore
* Backport: Backups: Support InnoDB Redo Log Location With 8.0.30+ [#10895](https://github.com/vitessio/vitess/pull/10895)
### Release
#### Documentation
* Addition of the release summary for v14.0.2 [#11142](https://github.com/vitessio/vitess/pull/11142)
#### General
* Post release `v14.0.1` [#10850](https://github.com/vitessio/vitess/pull/10850)
* Include the compose examples in the `do_release` script [#11130](https://github.com/vitessio/vitess/pull/11130)
* Upgrade go version to `1.18.5` on `release-14.0` [#11131](https://github.com/vitessio/vitess/pull/11131)

23 changes: 23 additions & 0 deletions doc/releasenotes/14_0_2_release_notes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Release of Vitess v14.0.2
## Major Changes

### Upgrade to `go1.18.5`

Vitess `v14.0.2` now runs on `go1.18.5`.
The patch release of Go, `go1.18.5`, was one of the main reasons 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.18).

> go1.18.4 (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 linker, the runtime, and the runtime/metrics package.
### End of life of MariadDB 10.2

Since the end-of-life of MariaDB 10.2, its Docker image is unavailable, and we decided to remove the unit tests using this version of MariaDB. The Pull Request doing this change is available [here](https://github.com/vitessio/vitess/pull/11042).
You can find more information on the list of supported databases on our documentation website, [here](https://vitess.io/docs/14.0/overview/supported-databases/).

------------
The entire changelog for this release can be found [here](https://github.com/vitessio/vitess/blob/main/doc/releasenotes/14_0_2_changelog.md).

The release includes 23 commits (excluding merges)

Thanks to all our contributors: @GuptaManan100, @dbussink, @frouioui, @mattlord, @shlomi-noach, @vitess-bot[bot]

20 changes: 10 additions & 10 deletions examples/compose/docker-compose.beginners.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ services:
- "3306"

vtctld:
image: vitess/lite:${VITESS_TAG:-latest}
image: vitess/lite:v14.0.2
ports:
- "15000:$WEB_PORT"
- "$GRPC_PORT"
Expand All @@ -83,7 +83,7 @@ services:
condition: service_healthy
vtgate:
image: vitess/lite:${VITESS_TAG:-latest}
image: vitess/lite:v14.0.2
ports:
- "15099:$WEB_PORT"
- "$GRPC_PORT"
Expand Down Expand Up @@ -113,7 +113,7 @@ services:
condition: service_healthy

schemaload:
image: vitess/lite:${VITESS_TAG:-latest}
image: vitess/lite:v14.0.2
command:
- sh
- -c
Expand Down Expand Up @@ -146,12 +146,12 @@ services:
environment:
- KEYSPACES=$KEYSPACE
- GRPC_PORT=15999
image: vitess/lite:${VITESS_TAG:-latest}
image: vitess/lite:v14.0.2
volumes:
- .:/script

vttablet100:
image: vitess/lite:${VITESS_TAG:-latest}
image: vitess/lite:v14.0.2
ports:
- "15100:$WEB_PORT"
- "$GRPC_PORT"
Expand Down Expand Up @@ -183,7 +183,7 @@ services:
retries: 15

vttablet101:
image: vitess/lite:${VITESS_TAG:-latest}
image: vitess/lite:v14.0.2
ports:
- "15101:$WEB_PORT"
- "$GRPC_PORT"
Expand Down Expand Up @@ -215,7 +215,7 @@ services:
retries: 15

vttablet102:
image: vitess/lite:${VITESS_TAG:-latest}
image: vitess/lite:v14.0.2
ports:
- "15102:$WEB_PORT"
- "$GRPC_PORT"
Expand Down Expand Up @@ -247,7 +247,7 @@ services:
retries: 15

vttablet103:
image: vitess/lite:${VITESS_TAG:-latest}
image: vitess/lite:v14.0.2
ports:
- "15103:$WEB_PORT"
- "$GRPC_PORT"
Expand Down Expand Up @@ -279,7 +279,7 @@ services:
retries: 15

vtorc:
image: vitess/lite:${VITESS_TAG:-latest}
image: vitess/lite:v14.0.2
command: ["sh", "-c", "/script/vtorc-up.sh"]
depends_on:
- vtctld
Expand Down Expand Up @@ -308,7 +308,7 @@ services:
retries: 15

vreplication:
image: vitess/lite:${VITESS_TAG:-latest}
image: vitess/lite:v14.0.2
volumes:
- ".:/script"
environment:
Expand Down
28 changes: 14 additions & 14 deletions examples/compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ services:
- SCHEMA_FILES=lookup_keyspace_schema_file.sql
- POST_LOAD_FILE=
- EXTERNAL_DB=0
image: vitess/lite:${VITESS_TAG:-latest}
image: vitess/lite:v14.0.2
volumes:
- .:/script
schemaload_test_keyspace:
Expand All @@ -101,7 +101,7 @@ services:
- SCHEMA_FILES=test_keyspace_schema_file.sql
- POST_LOAD_FILE=
- EXTERNAL_DB=0
image: vitess/lite:${VITESS_TAG:-latest}
image: vitess/lite:v14.0.2
volumes:
- .:/script
set_keyspace_durability_policy:
Expand All @@ -115,7 +115,7 @@ services:
environment:
- KEYSPACES=test_keyspace lookup_keyspace
- GRPC_PORT=15999
image: vitess/lite:${VITESS_TAG:-latest}
image: vitess/lite:v14.0.2
volumes:
- .:/script
vreplication:
Expand All @@ -129,7 +129,7 @@ services:
- TOPOLOGY_FLAGS=-topo_implementation consul -topo_global_server_address consul1:8500
-topo_global_root vitess/global
- EXTERNAL_DB=0
image: vitess/lite:${VITESS_TAG:-latest}
image: vitess/lite:v14.0.2
volumes:
- .:/script
vtctld:
Expand All @@ -143,7 +143,7 @@ services:
depends_on:
external_db_host:
condition: service_healthy
image: vitess/lite:${VITESS_TAG:-latest}
image: vitess/lite:v14.0.2
ports:
- 15000:8080
- "15999"
Expand All @@ -160,7 +160,7 @@ services:
-normalize_queries=true '
depends_on:
- vtctld
image: vitess/lite:${VITESS_TAG:-latest}
image: vitess/lite:v14.0.2
ports:
- 15099:8080
- "15999"
Expand All @@ -181,7 +181,7 @@ services:
- EXTERNAL_DB=0
- DB_USER=
- DB_PASS=
image: vitess/lite:${VITESS_TAG:-latest}
image: vitess/lite:v14.0.2
ports:
- 13000:3000
volumes:
Expand Down Expand Up @@ -216,7 +216,7 @@ services:
- CMD-SHELL
- curl -s --fail --show-error localhost:8080/debug/health
timeout: 10s
image: vitess/lite:${VITESS_TAG:-latest}
image: vitess/lite:v14.0.2
ports:
- 15101:8080
- "15999"
Expand Down Expand Up @@ -253,7 +253,7 @@ services:
- CMD-SHELL
- curl -s --fail --show-error localhost:8080/debug/health
timeout: 10s
image: vitess/lite:${VITESS_TAG:-latest}
image: vitess/lite:v14.0.2
ports:
- 15102:8080
- "15999"
Expand Down Expand Up @@ -290,7 +290,7 @@ services:
- CMD-SHELL
- curl -s --fail --show-error localhost:8080/debug/health
timeout: 10s
image: vitess/lite:${VITESS_TAG:-latest}
image: vitess/lite:v14.0.2
ports:
- 15201:8080
- "15999"
Expand Down Expand Up @@ -327,7 +327,7 @@ services:
- CMD-SHELL
- curl -s --fail --show-error localhost:8080/debug/health
timeout: 10s
image: vitess/lite:${VITESS_TAG:-latest}
image: vitess/lite:v14.0.2
ports:
- 15202:8080
- "15999"
Expand Down Expand Up @@ -364,7 +364,7 @@ services:
- CMD-SHELL
- curl -s --fail --show-error localhost:8080/debug/health
timeout: 10s
image: vitess/lite:${VITESS_TAG:-latest}
image: vitess/lite:v14.0.2
ports:
- 15301:8080
- "15999"
Expand Down Expand Up @@ -401,7 +401,7 @@ services:
- CMD-SHELL
- curl -s --fail --show-error localhost:8080/debug/health
timeout: 10s
image: vitess/lite:${VITESS_TAG:-latest}
image: vitess/lite:v14.0.2
ports:
- 15302:8080
- "15999"
Expand All @@ -417,7 +417,7 @@ services:
-port 8080 -grpc_port 15999 -use_v3_resharding_mode=true '
depends_on:
- vtctld
image: vitess/lite:${VITESS_TAG:-latest}
image: vitess/lite:v14.0.2
ports:
- "8080"
- "15999"
Expand Down
20 changes: 10 additions & 10 deletions examples/compose/vtcompose/vtcompose.go
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ func generateDefaultShard(tabAlias int, shard string, keyspaceData keyspaceInfo,
- op: add
path: /services/init_shard_primary%[2]d
value:
image: vitess/lite:${VITESS_TAG:-latest}
image: vitess/lite:v14.0.2
command: ["sh", "-c", "/vt/bin/vtctlclient %[5]s InitShardPrimary -force %[4]s/%[3]s %[6]s-%[2]d "]
%[1]s
`, dependsOn, aliases[0], shard, keyspaceData.keyspace, opts.topologyFlags, opts.cell)
Expand Down Expand Up @@ -566,7 +566,7 @@ func generateExternalPrimary(
- op: add
path: /services/vttablet%[1]d
value:
image: vitess/lite:${VITESS_TAG:-latest}
image: vitess/lite:v14.0.2
ports:
- "15%[1]d:%[3]d"
- "%[4]d"
Expand Down Expand Up @@ -628,7 +628,7 @@ func generateDefaultTablet(tabAlias int, shard, role, keyspace string, dbInfo ex
- op: add
path: /services/vttablet%[1]d
value:
image: vitess/lite:${VITESS_TAG:-latest}
image: vitess/lite:v14.0.2
ports:
- "15%[1]d:%[4]d"
- "%[5]d"
Expand Down Expand Up @@ -666,7 +666,7 @@ func generateVtctld(opts vtOptions) string {
- op: add
path: /services/vtctld
value:
image: vitess/lite:${VITESS_TAG:-latest}
image: vitess/lite:v14.0.2
ports:
- "15000:%[1]d"
- "%[2]d"
Expand Down Expand Up @@ -699,7 +699,7 @@ func generateVtgate(opts vtOptions) string {
- op: add
path: /services/vtgate
value:
image: vitess/lite:${VITESS_TAG:-latest}
image: vitess/lite:v14.0.2
ports:
- "15099:%[1]d"
- "%[2]d"
Expand Down Expand Up @@ -729,7 +729,7 @@ func generateVtwork(opts vtOptions) string {
- op: add
path: /services/vtwork
value:
image: vitess/lite:${VITESS_TAG:-latest}
image: vitess/lite:v14.0.2
ports:
- "%[1]d"
- "%[2]d"
Expand Down Expand Up @@ -764,7 +764,7 @@ func generateVtorc(dbInfo externalDbInfo, keyspaceInfoMap map[string]keyspaceInf
- op: add
path: /services/vtorc
value:
image: vitess/lite:${VITESS_TAG:-latest}
image: vitess/lite:v14.0.2
volumes:
- ".:/script"
environment:
Expand All @@ -788,7 +788,7 @@ func generateVreplication(dbInfo externalDbInfo, opts vtOptions) string {
- op: add
path: /services/vreplication
value:
image: vitess/lite:${VITESS_TAG:-latest}
image: vitess/lite:v14.0.2
volumes:
- ".:/script"
environment:
Expand Down Expand Up @@ -816,7 +816,7 @@ func generateSetKeyspaceDurabilityPolicy(
- op: add
path: /services/set_keyspace_durability_policy_%[3]s
value:
image: vitess/lite:${VITESS_TAG:-latest}
image: vitess/lite:v14.0.2
volumes:
- ".:/script"
environment:
Expand Down Expand Up @@ -853,7 +853,7 @@ func generateSchemaload(
- op: add
path: /services/schemaload_%[7]s
value:
image: vitess/lite:${VITESS_TAG:-latest}
image: vitess/lite:v14.0.2
volumes:
- ".:/script"
environment:
Expand Down
10 changes: 5 additions & 5 deletions examples/operator/101_initial_cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ metadata:
name: example
spec:
images:
vtctld: vitess/lite:v14.0.1
vtgate: vitess/lite:v14.0.1
vttablet: vitess/lite:v14.0.1
vtbackup: vitess/lite:v14.0.1
vtctld: vitess/lite:v14.0.2
vtgate: vitess/lite:v14.0.2
vttablet: vitess/lite:v14.0.2
vtbackup: vitess/lite:v14.0.2
mysqld:
mysql56Compatible: vitess/lite:v14.0.1
mysql56Compatible: vitess/lite:v14.0.2
mysqldExporter: prom/mysqld-exporter:v0.11.0
cells:
- name: zone1
Expand Down
Loading

0 comments on commit 4d94e3f

Please sign in to comment.