-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This change bumps the version on master to 25.1 without advancing the previous release to 24.3 (the latter can only be done once we have a published RC, or upgrade tests will fail). To allow this decoupling, a few minor tweaks were needed (to `SupportedPreviousReleases` and to the tool that generates the releases file. Also made some minor improvements to the runbook and sql-bootstrap-data. I will do a more thorough change to the runbook that separates this step. - [x] Add version key constant for new release, equal to `Latest` - [x] Update `PreviousRelease` constant - [x] Add start version - [x] Update `pkg/build/version.txt` to the new version - [x] Add mixed version logictest config for the replaced version - [x] Update the `scplan` rules in `pkg/sql/schemachanger/scplan/internal/rules` (already done) - [x] Create new SQL bootstrap data - [x] Update releases file Epic: REL-1322
- Loading branch information
1 parent
39e43b8
commit 9da6128
Showing
41 changed files
with
5,415 additions
and
414 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v24.3.0-alpha.3 | ||
v25.1.0-alpha.00000000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
load("@io_bazel_rules_go//go:def.bzl", "go_test") | ||
|
||
go_test( | ||
name = "local-mixed-24_3_test", | ||
size = "enormous", | ||
srcs = ["generated_test.go"], | ||
data = [ | ||
"//c-deps:libgeos", # keep | ||
"//pkg/ccl/logictestccl:testdata", # keep | ||
], | ||
exec_properties = {"test.Pool": "large"}, | ||
shard_count = 31, | ||
tags = ["cpu:1"], | ||
deps = [ | ||
"//pkg/base", | ||
"//pkg/build/bazel", | ||
"//pkg/ccl", | ||
"//pkg/security/securityassets", | ||
"//pkg/security/securitytest", | ||
"//pkg/server", | ||
"//pkg/sql/logictest", | ||
"//pkg/testutils/serverutils", | ||
"//pkg/testutils/skip", | ||
"//pkg/testutils/testcluster", | ||
"//pkg/util/leaktest", | ||
"//pkg/util/randutil", | ||
], | ||
) |
Oops, something went wrong.