From ee091d509f2881b22ec4bbea89b0e6c087886558 Mon Sep 17 00:00:00 2001 From: Fredrik Averpil Date: Fri, 11 Oct 2024 09:16:48 +0200 Subject: [PATCH] feat(spanner): bump to v1.5.24 This change will introduce a new behavior where transactions will be retried more often. This change will very likely reveal bugs where resources, which are pointers, are mutated within the transaction in such a way that these mutations persists at the beginning of a retried transaction. Beware! --- tools/sgcloudspanner/emulator.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/sgcloudspanner/emulator.go b/tools/sgcloudspanner/emulator.go index 64fc6e6c..0c32789e 100644 --- a/tools/sgcloudspanner/emulator.go +++ b/tools/sgcloudspanner/emulator.go @@ -17,7 +17,7 @@ import ( // https://console.cloud.google.com/gcr/images/cloud-spanner-emulator/global/emulator const ( url = "gcr.io/cloud-spanner-emulator/emulator" - version = "1.5.22" + version = "1.5.24" image = url + ":" + version )