Skip to content

Commit ad84df3

Browse files
authored
[release-23.0] Release of v23.0.2 (#19349)
Signed-off-by: Matt Lord <mattalord@gmail.com>
1 parent 9618417 commit ad84df3

20 files changed

Lines changed: 163 additions & 86 deletions

.github/review_checklist.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
### Review Checklist
2+
3+
Hello reviewers! :wave: Please follow this checklist when reviewing this Pull Request.
4+
5+
#### General
6+
- [ ] Ensure that the Pull Request has a descriptive title.
7+
- [ ] Ensure there is a link to an issue (except for internal cleanup and flaky test fixes), new features should have an RFC that documents use cases and test cases.
8+
9+
#### Tests
10+
- [ ] Bug fixes should have at least one unit or end-to-end test, enhancement and new features should have a sufficient number of tests.
11+
12+
#### Documentation
13+
- [ ] Apply the `release notes (needs details)` label if users need to know about this change.
14+
- [ ] New features should be documented.
15+
- [ ] There should be some code comments as to why things are implemented the way they are.
16+
- [ ] There should be a comment at the top of each new or modified test to explain what the test does.
17+
18+
#### New flags
19+
- [ ] Is this flag really necessary?
20+
- [ ] Flag names must be clear and intuitive, use dashes (`-`), and have a clear help text.
21+
22+
#### If a workflow is added or modified:
23+
- [ ] Each item in `Jobs` should be named in order to mark it as `required`.
24+
- [ ] If the workflow needs to be marked as `required`, the maintainer team must be notified.
25+
26+
#### Backward compatibility
27+
- [ ] Protobuf changes should be wire-compatible.
28+
- [ ] Changes to `_vt` tables and RPCs need to be backward compatible.
29+
- [ ] RPC changes should be compatible with vitess-operator
30+
- [ ] If a flag is removed, then it should also be removed from [vitess-operator](https://github.com/planetscale/vitess-operator) and [arewefastyet](https://github.com/vitessio/arewefastyet), if used there.
31+
- [ ] `vtctl` command output order should be stable and `awk`-able.

.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/23.0/23.0.2/changelog.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Changelog of Vitess v23.0.2
2+
3+
### Bug fixes
4+
#### Backup and Restore
5+
* [release-23.0] fix(backup): propagate file hashes to manifest after retry (#19336) [#19344](https://github.com/vitessio/vitess/pull/19344)
6+
#### Query Serving
7+
* [release-23.0] vtgate: defer implicit transaction start until after query planning (#19277) [#19342](https://github.com/vitessio/vitess/pull/19342)
8+
### CI/Build
9+
#### Build/CI
10+
* [release-23.0] Consolidate CI test workflows (#19259) [#19273](https://github.com/vitessio/vitess/pull/19273)
11+
* [release-23.0] Run tests with gotestsum (#19076) [#19293](https://github.com/vitessio/vitess/pull/19293)
12+
* [release-23.0] Fix go upgrade tool (#19290) [#19299](https://github.com/vitessio/vitess/pull/19299)
13+
* [release-23.0] Switch gotestsum output format (#19215) [#19303](https://github.com/vitessio/vitess/pull/19303)
14+
* [release-23.0] Build boostrap image for local/region example CI (#19310) [#19317](https://github.com/vitessio/vitess/pull/19317)
15+
* [release-23.0] Don't add "Skip CI" label for Go upgrade PRs (#19307) [#19323](https://github.com/vitessio/vitess/pull/19323)
16+
* [release-23.0] Explicitly pass local image tags in example CI (#19320) [#19326](https://github.com/vitessio/vitess/pull/19326)
17+
* [release-23.0] Add lite image build CI job (#19321) [#19330](https://github.com/vitessio/vitess/pull/19330)
18+
#### Docker
19+
* [release-23.0] Build bootstrap image locally in ci (#19255) [#19266](https://github.com/vitessio/vitess/pull/19266)
20+
### Compatibility Bug
21+
#### VTGate
22+
* [release-23.0] vtgate: fix handling of session variables on targeted connections (#19318) [#19335](https://github.com/vitessio/vitess/pull/19335)
23+
### Dependencies
24+
#### Docker
25+
* [release-23.0] Upgrade the Golang version to `go1.25.7` [#19304](https://github.com/vitessio/vitess/pull/19304)
26+
### Enhancement
27+
#### VTGate
28+
* [release-23.0] Performance: use `IsSingleShard()` check in `pushDerived` instead of just `engine.EqualUnique` opcode (#18974) [#19346](https://github.com/vitessio/vitess/pull/19346)
29+
### Release
30+
#### General
31+
* [release-23.0] Bump to `v23.0.2-SNAPSHOT` after the `v23.0.1` release [#19288](https://github.com/vitessio/vitess/pull/19288)
32+
### Testing
33+
#### Build/CI
34+
* [release-23.0] Generate race unit tests (#19078) [#19296](https://github.com/vitessio/vitess/pull/19296)
35+
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Release of Vitess v23.0.2
2+
The entire changelog for this release can be found [here](https://github.com/vitessio/vitess/blob/main/changelog/23.0/23.0.2/changelog.md).
3+
4+
The release includes 16 merged Pull Requests.
5+
6+
Thanks to all our contributors: @app/vitess-bot, @mattlord, @vitess-bot
7+

changelog/23.0/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
## v23.0
2+
* **[23.0.2](23.0.2)**
3+
* [Changelog](23.0.2/changelog.md)
4+
* [Release Notes](23.0.2/release_notes.md)
5+
26
* **[23.0.1](23.0.1)**
37
* [Changelog](23.0.1/changelog.md)
48
* [Release Notes](23.0.1/release_notes.md)

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:v23.0.1
61+
image: vitess/lite:v23.0.2
6262
ports:
6363
- "15000:$WEB_PORT"
6464
- "$GRPC_PORT"
@@ -84,7 +84,7 @@ services:
8484
condition: service_healthy
8585
8686
vtgate:
87-
image: vitess/lite:v23.0.1
87+
image: vitess/lite:v23.0.2
8888
ports:
8989
- "15099:$WEB_PORT"
9090
- "$GRPC_PORT"
@@ -115,7 +115,7 @@ services:
115115
condition: service_healthy
116116

117117
schemaload:
118-
image: vitess/lite:v23.0.1
118+
image: vitess/lite:v23.0.2
119119
command:
120120
- sh
121121
- -c
@@ -148,12 +148,12 @@ services:
148148
environment:
149149
- KEYSPACES=$KEYSPACE
150150
- GRPC_PORT=15999
151-
image: vitess/lite:v23.0.1
151+
image: vitess/lite:v23.0.2
152152
volumes:
153153
- .:/script
154154

155155
vttablet100:
156-
image: vitess/lite:v23.0.1
156+
image: vitess/lite:v23.0.2
157157
ports:
158158
- "15100:$WEB_PORT"
159159
- "$GRPC_PORT"
@@ -185,7 +185,7 @@ services:
185185
retries: 15
186186

187187
vttablet101:
188-
image: vitess/lite:v23.0.1
188+
image: vitess/lite:v23.0.2
189189
ports:
190190
- "15101:$WEB_PORT"
191191
- "$GRPC_PORT"
@@ -217,7 +217,7 @@ services:
217217
retries: 15
218218

219219
vttablet102:
220-
image: vitess/lite:v23.0.1
220+
image: vitess/lite:v23.0.2
221221
ports:
222222
- "15102:$WEB_PORT"
223223
- "$GRPC_PORT"
@@ -249,7 +249,7 @@ services:
249249
retries: 15
250250

251251
vttablet103:
252-
image: vitess/lite:v23.0.1
252+
image: vitess/lite:v23.0.2
253253
ports:
254254
- "15103:$WEB_PORT"
255255
- "$GRPC_PORT"
@@ -281,7 +281,7 @@ services:
281281
retries: 15
282282

283283
vtorc:
284-
image: vitess/lite:v23.0.1
284+
image: vitess/lite:v23.0.2
285285
command: ["sh", "-c", "/script/vtorc-up.sh"]
286286
depends_on:
287287
- vtctld
@@ -311,7 +311,7 @@ services:
311311
retries: 15
312312

313313
vreplication:
314-
image: vitess/lite:v23.0.1
314+
image: vitess/lite:v23.0.2
315315
volumes:
316316
- ".:/script"
317317
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:v23.0.1
78+
image: vitess/lite:v23.0.2
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:v23.0.1
104+
image: vitess/lite:v23.0.2
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:v23.0.1
118+
image: vitess/lite:v23.0.2
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:v23.0.1
132+
image: vitess/lite:v23.0.2
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:v23.0.1
146+
image: vitess/lite:v23.0.2
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:v23.0.1
163+
image: vitess/lite:v23.0.2
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:v23.0.1
185+
image: vitess/lite:v23.0.2
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:v23.0.1
220+
image: vitess/lite:v23.0.2
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:v23.0.1
257+
image: vitess/lite:v23.0.2
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:v23.0.1
294+
image: vitess/lite:v23.0.2
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:v23.0.1
331+
image: vitess/lite:v23.0.2
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:v23.0.1
368+
image: vitess/lite:v23.0.2
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:v23.0.1
405+
image: vitess/lite:v23.0.2
406406
ports:
407407
- 15302:8080
408408
- "15999"

0 commit comments

Comments
 (0)