Skip to content

Commit

Permalink
1.29.2->1.29.5
Browse files Browse the repository at this point in the history
1.29.2 was missing a change to allow the phased spanner migration.
  • Loading branch information
ecordell committed Mar 5, 2024
1 parent b4c4967 commit b8ede33
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions tools/generate-update-graph/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func main() {

func postgresChannel() updates.Channel {
releases := []updates.State{
{ID: "v1.29.2", Tag: "v1.29.2", Migration: "add-rel-by-alive-resource-relation-subject"},
{ID: "v1.29.5", Tag: "v1.29.5", Migration: "add-rel-by-alive-resource-relation-subject"},
{ID: "v1.26.0", Tag: "v1.26.0", Migration: "add-rel-by-alive-resource-relation-subject"},
{ID: "v1.25.0", Tag: "v1.25.0", Migration: "add-gc-covering-index"},
{ID: "v1.24.0", Tag: "v1.24.0", Migration: "add-gc-covering-index"},
Expand Down Expand Up @@ -77,7 +77,7 @@ func postgresChannel() updates.Channel {
{ID: "v1.2.0", Tag: "v1.2.0", Migration: "add-transaction-timestamp-index"},
}
edgePatterns := map[string]string{
"v1.26.0": ">=1.29.2",
"v1.26.0": ">=1.29.5",
"v1.25.0": ">=1.26.0",
"v1.24.0": ">=1.25.0",
"v1.23.1": ">=1.24.0",
Expand Down Expand Up @@ -122,7 +122,7 @@ func postgresChannel() updates.Channel {

func crdbChannel() updates.Channel {
releases := []updates.State{
{ID: "v1.29.2", Tag: "v1.29.2", Migration: "add-caveats"},
{ID: "v1.29.5", Tag: "v1.29.5", Migration: "add-caveats"},
{ID: "v1.26.0", Tag: "v1.26.0", Migration: "add-caveats"},
{ID: "v1.25.0", Tag: "v1.25.0", Migration: "add-caveats"},
{ID: "v1.24.0", Tag: "v1.24.0", Migration: "add-caveats"},
Expand Down Expand Up @@ -153,7 +153,7 @@ func crdbChannel() updates.Channel {
{ID: "v1.2.0", Tag: "v1.2.0", Migration: "add-transactions-table"},
}
edgePatterns := map[string]string{
"v1.26.0": ">=1.29.2",
"v1.26.0": ">=1.29.5",
"v1.25.0": ">=1.26.0",
"v1.24.0": ">=1.25.0",
"v1.23.1": ">=1.24.0",
Expand Down Expand Up @@ -195,7 +195,7 @@ func crdbChannel() updates.Channel {

func mysqlChannel() updates.Channel {
releases := []updates.State{
{ID: "v1.29.2", Tag: "v1.29.2", Migration: "watch_api_relation_tuple_index"},
{ID: "v1.29.5", Tag: "v1.29.5", Migration: "watch_api_relation_tuple_index"},
{ID: "v1.26.0", Tag: "v1.26.0", Migration: "longblob_definitions"},
{ID: "v1.25.0", Tag: "v1.25.0", Migration: "longblob_definitions"},
{ID: "v1.24.0", Tag: "v1.24.0", Migration: "extend_object_id"},
Expand All @@ -221,7 +221,7 @@ func mysqlChannel() updates.Channel {
{ID: "v1.7.0", Tag: "v1.7.0", Migration: "add_unique_datastore_id", Deprecated: true},
}
edgePatterns := map[string]string{
"v1.26.0": ">=1.29.2",
"v1.26.0": ">=1.29.5",
"v1.25.0": ">=1.26.0",
"v1.24.0": ">=1.25.0",
"v1.23.1": ">=1.24.0",
Expand Down Expand Up @@ -258,8 +258,8 @@ func mysqlChannel() updates.Channel {

func spannerChannel() updates.Channel {
releases := []updates.State{
{ID: "v1.29.2", Tag: "v1.29.2", Migration: "delete-older-changestreams"},
{ID: "v1.29.2-phase1", Tag: "v1.29.2", Migration: "register-combined-change-stream"},
{ID: "v1.29.5", Tag: "v1.29.5", Migration: "delete-older-changestreams"},
{ID: "v1.29.5-phase1", Tag: "v1.29.5", Migration: "register-combined-change-stream"},
{ID: "v1.26.0", Tag: "v1.26.0", Migration: "drop-changelog-table"},
{ID: "v1.25.0", Tag: "v1.25.0", Migration: "drop-changelog-table"},
{ID: "v1.24.0", Tag: "v1.24.0", Migration: "drop-changelog-table"},
Expand All @@ -285,12 +285,12 @@ func spannerChannel() updates.Channel {
{ID: "v1.8.0", Tag: "v1.8.0", Migration: "add-metadata-and-counters"},
}
edgePatterns := map[string]string{
"v1.29.2-phase1": "1.29.2",
"v1.26.0": "1.29.2-phase1",
"v1.25.0": ">=1.26.0 <=1.29.2-phase1",
"v1.24.0": ">=1.25.0 <=1.29.2-phase1",
"v1.23.1": ">=1.24.0 <=1.29.2-phase1",
"v1.22.2": ">=1.23.1 <=1.29.2-phase1",
"v1.29.5-phase1": "1.29.5",
"v1.26.0": "1.29.5-phase1",
"v1.25.0": ">=1.26.0 <=1.29.5-phase1",
"v1.24.0": ">=1.25.0 <=1.29.5-phase1",
"v1.23.1": ">=1.24.0 <=1.29.5-phase1",
"v1.22.2": ">=1.23.1 <=1.29.5-phase1",
"v1.22.2-phase2": "1.22.2",
"v1.22.2-phase1": "1.22.2-phase2",
"v1.21.0": "1.22.2-phase1",
Expand Down Expand Up @@ -323,7 +323,7 @@ func spannerChannel() updates.Channel {

func memoryChannel() updates.Channel {
releases := []updates.State{
{ID: "v1.29.2", Tag: "v1.29.2"},
{ID: "v1.29.5", Tag: "v1.29.5"},
{ID: "v1.26.0", Tag: "v1.26.0"},
{ID: "v1.25.0", Tag: "v1.25.0"},
{ID: "v1.24.0", Tag: "v1.24.0"},
Expand Down

0 comments on commit b8ede33

Please sign in to comment.