From 3f385a8572ecae4c03af546630b9460868e05939 Mon Sep 17 00:00:00 2001 From: Luis Pater Date: Tue, 20 Jan 2026 11:38:31 +0800 Subject: [PATCH] feat(auth): add "antigravity" provider to ignored access_token fields in filestore --- sdk/auth/filestore.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/auth/filestore.go b/sdk/auth/filestore.go index e364c7ca..6ac8b8a3 100644 --- a/sdk/auth/filestore.go +++ b/sdk/auth/filestore.go @@ -336,7 +336,7 @@ func metadataEqualIgnoringTimestamps(a, b []byte, provider string) bool { // For providers that can re-fetch tokens when needed (e.g., Google OAuth), // we ignore access_token to avoid unnecessary file writes. switch provider { - case "gemini", "gemini-cli": + case "gemini", "gemini-cli", "antigravity": ignoredFields = append(ignoredFields, "access_token") }