Skip to content

Commit b1922e2

Browse files
vitess-botfrouioui
andauthored
[release-22.0] Release of v22.0.0 (#18214)
Signed-off-by: Florent Poinsard <florent.poinsard@outlook.fr> Co-authored-by: Florent Poinsard <florent.poinsard@outlook.fr>
1 parent b485f3b commit b1922e2

File tree

19 files changed

+91
-90
lines changed

19 files changed

+91
-90
lines changed

.github/workflows/code_freeze.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ jobs:
1111
steps:
1212
- name: Fail if Code Freeze is enabled
1313
run: |
14-
exit 1
14+
exit 0

changelog/22.0/22.0.0/changelog.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,8 +235,7 @@
235235
* Feature Request: Change varbinary to varchar in schemas used in examples folder [#17318](https://github.com/vitessio/vitess/pull/17318)
236236
#### General
237237
* MySQL errors: `ERWrongParamcountToNativeFct` [#16914](https://github.com/vitessio/vitess/pull/16914)
238-
* Standardize topo flags to use hyphen-based naming [#17975](https://github.com/vitessio/vitess/pull/17975)
239-
* Refactor flags - Part 4 [#18095](https://github.com/vitessio/vitess/pull/18095)
238+
* Standardize topo flags to use hyphen-based naming [#17975](https://github.com/vitessio/vitess/pull/17975)
240239
#### Observability
241240
* Improve vtgate logging for buffering [#17654](https://github.com/vitessio/vitess/pull/17654)
242241
* Add more vstream metrics for vstream manager [#17858](https://github.com/vitessio/vitess/pull/17858)
@@ -537,6 +536,8 @@
537536
* [release-22.0] Bump to `v22.0.0-SNAPSHOT` after the `v22.0.0-RC1` release [#18134](https://github.com/vitessio/vitess/pull/18134)
538537
* [release-22.0] Release of `v22.0.0-RC2` [#18168](https://github.com/vitessio/vitess/pull/18168)
539538
* [release-22.0] Bump to `v22.0.0-SNAPSHOT` after the `v22.0.0-RC2` release [#18170](https://github.com/vitessio/vitess/pull/18170)
539+
* [release-22.0] Release of `v22.0.0-RC3` [#18204](https://github.com/vitessio/vitess/pull/18204)
540+
* [release-22.0] Bump to `v22.0.0-SNAPSHOT` after the `v22.0.0-RC3` release [#18206](https://github.com/vitessio/vitess/pull/18206)
540541
### Testing
541542
#### Backup and Restore
542543
* fix flaky test on mysqlshell backup engine [#17037](https://github.com/vitessio/vitess/pull/17037)

changelog/22.0/22.0.0/release_notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ Full details on the node v20.12.2 release can be found at https://nodejs.org/en/
376376
------------
377377
The entire changelog for this release can be found [here](https://github.com/vitessio/vitess/blob/main/changelog/22.0/22.0.0/changelog.md).
378378

379-
The release includes 474 merged Pull Requests.
379+
The release includes 475 merged Pull Requests.
380380

381381
Thanks to all our contributors: @GrahamCampbell, @GuptaManan100, @L3o-pold, @akagami-harsh, @anirbanmu, @app/dependabot, @app/vitess-bot, @arthmis, @arthurschreiber, @beingnoble03, @c-r-dev, @corbantek, @dbussink, @deepthi, @derekperkins, @ejortegau, @frouioui, @garfthoffman, @gmpify, @gopoto, @harshit-gangal, @huochexizhan, @jeefy, @jwangace, @kbutz, @lmorduch, @mattlord, @mattrobenolt, @maxenglander, @mcrauwel, @mounicasruthi, @niladrix719, @notfelineit, @rafer, @rohit-nayak-ps, @rvrangel, @shailpujan88, @shanth96, @shlomi-noach, @siadat, @systay, @timvaillancourt, @twthorn, @vitess-bot, @vmg, @wiebeytec, @wukuai
382382

examples/compose/docker-compose.beginners.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ services:
5858
- "3306"
5959

6060
vtctld:
61-
image: vitess/lite:v22.0.0-rc3
61+
image: vitess/lite:v22.0.0
6262
ports:
6363
- "15000:$WEB_PORT"
6464
- "$GRPC_PORT"
@@ -83,7 +83,7 @@ services:
8383
condition: service_healthy
8484
8585
vtgate:
86-
image: vitess/lite:v22.0.0-rc3
86+
image: vitess/lite:v22.0.0
8787
ports:
8888
- "15099:$WEB_PORT"
8989
- "$GRPC_PORT"
@@ -113,7 +113,7 @@ services:
113113
condition: service_healthy
114114

115115
schemaload:
116-
image: vitess/lite:v22.0.0-rc3
116+
image: vitess/lite:v22.0.0
117117
command:
118118
- sh
119119
- -c
@@ -146,12 +146,12 @@ services:
146146
environment:
147147
- KEYSPACES=$KEYSPACE
148148
- GRPC_PORT=15999
149-
image: vitess/lite:v22.0.0-rc3
149+
image: vitess/lite:v22.0.0
150150
volumes:
151151
- .:/script
152152

153153
vttablet100:
154-
image: vitess/lite:v22.0.0-rc3
154+
image: vitess/lite:v22.0.0
155155
ports:
156156
- "15100:$WEB_PORT"
157157
- "$GRPC_PORT"
@@ -183,7 +183,7 @@ services:
183183
retries: 15
184184

185185
vttablet101:
186-
image: vitess/lite:v22.0.0-rc3
186+
image: vitess/lite:v22.0.0
187187
ports:
188188
- "15101:$WEB_PORT"
189189
- "$GRPC_PORT"
@@ -215,7 +215,7 @@ services:
215215
retries: 15
216216

217217
vttablet102:
218-
image: vitess/lite:v22.0.0-rc3
218+
image: vitess/lite:v22.0.0
219219
ports:
220220
- "15102:$WEB_PORT"
221221
- "$GRPC_PORT"
@@ -247,7 +247,7 @@ services:
247247
retries: 15
248248

249249
vttablet103:
250-
image: vitess/lite:v22.0.0-rc3
250+
image: vitess/lite:v22.0.0
251251
ports:
252252
- "15103:$WEB_PORT"
253253
- "$GRPC_PORT"
@@ -279,7 +279,7 @@ services:
279279
retries: 15
280280

281281
vtorc:
282-
image: vitess/lite:v22.0.0-rc3
282+
image: vitess/lite:v22.0.0
283283
command: ["sh", "-c", "/script/vtorc-up.sh"]
284284
depends_on:
285285
- vtctld
@@ -309,7 +309,7 @@ services:
309309
retries: 15
310310

311311
vreplication:
312-
image: vitess/lite:v22.0.0-rc3
312+
image: vitess/lite:v22.0.0
313313
volumes:
314314
- ".:/script"
315315
environment:

examples/compose/docker-compose.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ services:
7575
- SCHEMA_FILES=lookup_keyspace_schema_file.sql
7676
- POST_LOAD_FILE=
7777
- EXTERNAL_DB=0
78-
image: vitess/lite:v22.0.0-rc3
78+
image: vitess/lite:v22.0.0
7979
volumes:
8080
- .:/script
8181
schemaload_test_keyspace:
@@ -101,7 +101,7 @@ services:
101101
- SCHEMA_FILES=test_keyspace_schema_file.sql
102102
- POST_LOAD_FILE=
103103
- EXTERNAL_DB=0
104-
image: vitess/lite:v22.0.0-rc3
104+
image: vitess/lite:v22.0.0
105105
volumes:
106106
- .:/script
107107
set_keyspace_durability_policy:
@@ -115,7 +115,7 @@ services:
115115
environment:
116116
- KEYSPACES=test_keyspace lookup_keyspace
117117
- GRPC_PORT=15999
118-
image: vitess/lite:v22.0.0-rc3
118+
image: vitess/lite:v22.0.0
119119
volumes:
120120
- .:/script
121121
vreplication:
@@ -129,7 +129,7 @@ services:
129129
- TOPOLOGY_FLAGS=--topo_implementation consul --topo_global_server_address consul1:8500
130130
--topo_global_root vitess/global
131131
- EXTERNAL_DB=0
132-
image: vitess/lite:v22.0.0-rc3
132+
image: vitess/lite:v22.0.0
133133
volumes:
134134
- .:/script
135135
vtctld:
@@ -143,7 +143,7 @@ services:
143143
depends_on:
144144
external_db_host:
145145
condition: service_healthy
146-
image: vitess/lite:v22.0.0-rc3
146+
image: vitess/lite:v22.0.0
147147
ports:
148148
- 15000:8080
149149
- "15999"
@@ -160,7 +160,7 @@ services:
160160
--normalize_queries=true '
161161
depends_on:
162162
- vtctld
163-
image: vitess/lite:v22.0.0-rc3
163+
image: vitess/lite:v22.0.0
164164
ports:
165165
- 15099:8080
166166
- "15999"
@@ -182,7 +182,7 @@ services:
182182
- EXTERNAL_DB=0
183183
- DB_USER=
184184
- DB_PASS=
185-
image: vitess/lite:v22.0.0-rc3
185+
image: vitess/lite:v22.0.0
186186
ports:
187187
- 13000:8080
188188
volumes:
@@ -217,7 +217,7 @@ services:
217217
- CMD-SHELL
218218
- curl -s --fail --show-error localhost:8080/debug/health
219219
timeout: 10s
220-
image: vitess/lite:v22.0.0-rc3
220+
image: vitess/lite:v22.0.0
221221
ports:
222222
- 15101:8080
223223
- "15999"
@@ -254,7 +254,7 @@ services:
254254
- CMD-SHELL
255255
- curl -s --fail --show-error localhost:8080/debug/health
256256
timeout: 10s
257-
image: vitess/lite:v22.0.0-rc3
257+
image: vitess/lite:v22.0.0
258258
ports:
259259
- 15102:8080
260260
- "15999"
@@ -291,7 +291,7 @@ services:
291291
- CMD-SHELL
292292
- curl -s --fail --show-error localhost:8080/debug/health
293293
timeout: 10s
294-
image: vitess/lite:v22.0.0-rc3
294+
image: vitess/lite:v22.0.0
295295
ports:
296296
- 15201:8080
297297
- "15999"
@@ -328,7 +328,7 @@ services:
328328
- CMD-SHELL
329329
- curl -s --fail --show-error localhost:8080/debug/health
330330
timeout: 10s
331-
image: vitess/lite:v22.0.0-rc3
331+
image: vitess/lite:v22.0.0
332332
ports:
333333
- 15202:8080
334334
- "15999"
@@ -365,7 +365,7 @@ services:
365365
- CMD-SHELL
366366
- curl -s --fail --show-error localhost:8080/debug/health
367367
timeout: 10s
368-
image: vitess/lite:v22.0.0-rc3
368+
image: vitess/lite:v22.0.0
369369
ports:
370370
- 15301:8080
371371
- "15999"
@@ -402,7 +402,7 @@ services:
402402
- CMD-SHELL
403403
- curl -s --fail --show-error localhost:8080/debug/health
404404
timeout: 10s
405-
image: vitess/lite:v22.0.0-rc3
405+
image: vitess/lite:v22.0.0
406406
ports:
407407
- 15302:8080
408408
- "15999"

examples/compose/vtcompose/docker-compose.test.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ services:
7979
- SCHEMA_FILES=test_keyspace_schema_file.sql
8080
- POST_LOAD_FILE=
8181
- EXTERNAL_DB=0
82-
image: vitess/lite:v22.0.0-rc3
82+
image: vitess/lite:v22.0.0
8383
volumes:
8484
- .:/script
8585
schemaload_unsharded_keyspace:
@@ -103,7 +103,7 @@ services:
103103
- SCHEMA_FILES=unsharded_keyspace_schema_file.sql
104104
- POST_LOAD_FILE=
105105
- EXTERNAL_DB=0
106-
image: vitess/lite:v22.0.0-rc3
106+
image: vitess/lite:v22.0.0
107107
volumes:
108108
- .:/script
109109
set_keyspace_durability_policy_test_keyspace:
@@ -117,7 +117,7 @@ services:
117117
environment:
118118
- GRPC_PORT=15999
119119
- KEYSPACES=test_keyspace
120-
image: vitess/lite:v22.0.0-rc3
120+
image: vitess/lite:v22.0.0
121121
volumes:
122122
- .:/script
123123
set_keyspace_durability_policy_unsharded_keyspace:
@@ -130,7 +130,7 @@ services:
130130
environment:
131131
- GRPC_PORT=15999
132132
- KEYSPACES=unsharded_keyspace
133-
image: vitess/lite:v22.0.0-rc3
133+
image: vitess/lite:v22.0.0
134134
volumes:
135135
- .:/script
136136
vreplication:
@@ -144,7 +144,7 @@ services:
144144
- TOPOLOGY_FLAGS=--topo_implementation consul --topo_global_server_address consul1:8500
145145
--topo_global_root vitess/global
146146
- EXTERNAL_DB=0
147-
image: vitess/lite:v22.0.0-rc3
147+
image: vitess/lite:v22.0.0
148148
volumes:
149149
- .:/script
150150
vtctld:
@@ -159,7 +159,7 @@ services:
159159
depends_on:
160160
external_db_host:
161161
condition: service_healthy
162-
image: vitess/lite:v22.0.0-rc3
162+
image: vitess/lite:v22.0.0
163163
ports:
164164
- 15000:8080
165165
- "15999"
@@ -176,7 +176,7 @@ services:
176176
''grpc-vtgateservice'' --normalize_queries=true '
177177
depends_on:
178178
- vtctld
179-
image: vitess/lite:v22.0.0-rc3
179+
image: vitess/lite:v22.0.0
180180
ports:
181181
- 15099:8080
182182
- "15999"
@@ -199,7 +199,7 @@ services:
199199
- EXTERNAL_DB=0
200200
- DB_USER=
201201
- DB_PASS=
202-
image: vitess/lite:v22.0.0-rc3
202+
image: vitess/lite:v22.0.0
203203
ports:
204204
- 13000:8080
205205
volumes:
@@ -234,7 +234,7 @@ services:
234234
- CMD-SHELL
235235
- curl -s --fail --show-error localhost:8080/debug/health
236236
timeout: 10s
237-
image: vitess/lite:v22.0.0-rc3
237+
image: vitess/lite:v22.0.0
238238
ports:
239239
- 15101:8080
240240
- "15999"
@@ -271,7 +271,7 @@ services:
271271
- CMD-SHELL
272272
- curl -s --fail --show-error localhost:8080/debug/health
273273
timeout: 10s
274-
image: vitess/lite:v22.0.0-rc3
274+
image: vitess/lite:v22.0.0
275275
ports:
276276
- 15102:8080
277277
- "15999"
@@ -308,7 +308,7 @@ services:
308308
- CMD-SHELL
309309
- curl -s --fail --show-error localhost:8080/debug/health
310310
timeout: 10s
311-
image: vitess/lite:v22.0.0-rc3
311+
image: vitess/lite:v22.0.0
312312
ports:
313313
- 15201:8080
314314
- "15999"
@@ -345,7 +345,7 @@ services:
345345
- CMD-SHELL
346346
- curl -s --fail --show-error localhost:8080/debug/health
347347
timeout: 10s
348-
image: vitess/lite:v22.0.0-rc3
348+
image: vitess/lite:v22.0.0
349349
ports:
350350
- 15202:8080
351351
- "15999"
@@ -382,7 +382,7 @@ services:
382382
- CMD-SHELL
383383
- curl -s --fail --show-error localhost:8080/debug/health
384384
timeout: 10s
385-
image: vitess/lite:v22.0.0-rc3
385+
image: vitess/lite:v22.0.0
386386
ports:
387387
- 15301:8080
388388
- "15999"

0 commit comments

Comments
 (0)