Skip to content

Commit feea27a

Browse files
committed
chore: fix spanner image tag
1 parent 36f1894 commit feea27a

3 files changed

Lines changed: 14 additions & 15 deletions

File tree

magefiles/magefile.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ func (Test) E2e() error {
7070
ginkgoArgs := make([]string, 0, 20)
7171
ginkgoArgs = append(ginkgoArgs, []string{"tool", "github.com/onsi/ginkgo/v2/ginkgo"}...)
7272
ginkgoArgs = append(ginkgoArgs, Test{}.coverageFlags()...)
73-
ginkgoArgs = append(ginkgoArgs, "--tags=e2e", "-p", "-r", "-vv", "--fail-fast", "--randomize-all", "--flake-attempts=3", "../e2e")
73+
ginkgoArgs = append(ginkgoArgs, "--tags=e2e", "-p", "-r", "--fail-fast", "--randomize-all", "--flake-attempts=3", "../e2e")
7474
if err := runDirWithV("magefiles", map[string]string{
7575
"PROVISION": "true",
7676
"SPICEDB_CMD": os.Getenv("SPICEDB_CMD"),

proposed-update-graph.yaml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2164,7 +2164,7 @@ channels:
21642164
- v1.48.0
21652165
- v1.49.2
21662166
- v1.51.1
2167-
- v1.52.0
2167+
- v1.54.0
21682168
v1.38.0:
21692169
- v1.39.1
21702170
- v1.40.1
@@ -2174,7 +2174,7 @@ channels:
21742174
- v1.48.0
21752175
- v1.49.2
21762176
- v1.51.1
2177-
- v1.52.0
2177+
- v1.54.0
21782178
v1.39.1:
21792179
- v1.40.1
21802180
- v1.42.1
@@ -2183,48 +2183,48 @@ channels:
21832183
- v1.48.0
21842184
- v1.49.2
21852185
- v1.51.1
2186-
- v1.52.0
2186+
- v1.54.0
21872187
v1.40.1:
21882188
- v1.42.1
21892189
- v1.45.4
21902190
- v1.47.1
21912191
- v1.48.0
21922192
- v1.49.2
21932193
- v1.51.1
2194-
- v1.52.0
2194+
- v1.54.0
21952195
v1.42.1:
21962196
- v1.45.4
21972197
- v1.47.1
21982198
- v1.48.0
21992199
- v1.49.2
22002200
- v1.51.1
2201-
- v1.52.0
2201+
- v1.54.0
22022202
v1.45.4:
22032203
- v1.47.1
22042204
- v1.48.0
22052205
- v1.49.2
22062206
- v1.51.1
2207-
- v1.52.0
2207+
- v1.54.0
22082208
v1.47.1:
22092209
- v1.48.0
22102210
- v1.49.2
22112211
- v1.51.1
2212-
- v1.52.0
2212+
- v1.54.0
22132213
v1.48.0:
22142214
- v1.49.2
22152215
- v1.51.1
2216-
- v1.52.0
2216+
- v1.54.0
22172217
v1.49.2:
22182218
- v1.51.1
2219-
- v1.52.0
2219+
- v1.54.0
22202220
v1.51.1:
2221-
- v1.52.0
2221+
- v1.54.0
22222222
metadata:
22232223
datastore: spanner
22242224
default: "true"
22252225
name: stable
22262226
nodes:
2227-
- id: v1.52.0
2227+
- id: v1.54.0
22282228
migration: add-expiration-support
22292229
tag: v1.54.0
22302230
- id: v1.51.1

tools/generate-update-graph/main.go

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ func mysqlChannel() updates.Channel {
374374

375375
func spannerChannel() updates.Channel {
376376
releases := []updates.State{
377-
{ID: "v1.52.0", Tag: "v1.54.0", Migration: "add-expiration-support"},
377+
{ID: "v1.54.0", Tag: "v1.54.0", Migration: "add-expiration-support"},
378378
{ID: "v1.51.1", Tag: "v1.52.0", Migration: "add-expiration-support"},
379379
{ID: "v1.49.2", Tag: "v1.51.1", Migration: "add-expiration-support"},
380380
{ID: "v1.48.0", Tag: "v1.48.0", Migration: "add-expiration-support"},
@@ -419,8 +419,7 @@ func spannerChannel() updates.Channel {
419419
{ID: "v1.8.0", Tag: "v1.8.0", Migration: "add-metadata-and-counters"},
420420
}
421421
edgePatterns := map[string]string{
422-
"v1.52.0": ">=1.54.0",
423-
"v1.51.1": ">=1.52.0",
422+
"v1.51.1": ">=1.54.0",
424423
"v1.49.2": ">=1.51.1",
425424
"v1.48.0": ">=1.49.2",
426425
"v1.47.1": ">=1.48.0",

0 commit comments

Comments
 (0)