From 0ac3a8fed43f114bf77b6414bd2c1e20f922eeab Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jun 2026 01:39:59 +0000 Subject: [PATCH 1/2] Bump testdata/specifications from `62028fd` to `2a6fa82` Bumps [testdata/specifications](https://github.com/mongodb/specifications) from `62028fd` to `2a6fa82`. - [Release notes](https://github.com/mongodb/specifications/releases) - [Commits](https://github.com/mongodb/specifications/compare/62028fdf28c7b56efe87fe2b44663eab7174c2f7...2a6fa82001933c9997305cac8f18006a95dcef25) --- updated-dependencies: - dependency-name: testdata/specifications dependency-version: 2a6fa82001933c9997305cac8f18006a95dcef25 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- testdata/specifications | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testdata/specifications b/testdata/specifications index 62028fdf2..2a6fa8200 160000 --- a/testdata/specifications +++ b/testdata/specifications @@ -1 +1 @@ -Subproject commit 62028fdf28c7b56efe87fe2b44663eab7174c2f7 +Subproject commit 2a6fa82001933c9997305cac8f18006a95dcef25 From 3a7c91031d60baa68ad3146d5d9438747680fabf Mon Sep 17 00:00:00 2001 From: Matt Dale <9760375+matthewdale@users.noreply.github.com> Date: Mon, 1 Jun 2026 23:26:50 -0700 Subject: [PATCH 2/2] Skip tests that require GODRIVER-3874. --- internal/spectest/skip.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/internal/spectest/skip.go b/internal/spectest/skip.go index f974fbbbe..92c3219c6 100644 --- a/internal/spectest/skip.go +++ b/internal/spectest/skip.go @@ -804,6 +804,14 @@ var skipTests = map[string][]string{ "TestUnifiedSpec/transactions/tests/unified/transaction-options.json/startTransaction_options_override_defaults", "TestUnifiedSpec/transactions/tests/unified/transaction-options.json/defaultTransactionOptions_override_client_options", }, + + // TODO(GODRIVER-3874): Send afterClusterTime on writes in + // causally-consistent sessions. + "Send afterClusterTime on writes in causally-consistent sessions (GODRIVER-3874)": { + "TestUnifiedSpec/transactions/tests/unified/commit.json/reset_session_state_commit", + "TestUnifiedSpec/transactions/tests/unified/commit.json/reset_session_state_abort", + "TestUnifiedSpec/transactions/tests/unified/retryable-writes.json/increment_txnNumber", + }, } // CheckSkip checks if the fully-qualified test name matches a list of skipped test names for a given reason.