From 9bc991b20138774d92f7b659f8fae8586f499a23 Mon Sep 17 00:00:00 2001 From: Chris Havekost Date: Tue, 21 Apr 2026 16:56:24 -0400 Subject: [PATCH] chore: disables sessionBust by default There have been many changes over the years to make the need for this and the cacheBust param irrelevant. Disabling by default so more API responses can be properly cached by clients --- packages/api-axios/src/options.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/api-axios/src/options.js b/packages/api-axios/src/options.js index 3f2ac4822..5a4eed46e 100644 --- a/packages/api-axios/src/options.js +++ b/packages/api-axios/src/options.js @@ -30,7 +30,7 @@ const API_OPTIONS = { 'X-Response-Encoding-Context': 'NONE', }, - sessionBust: true, + sessionBust: false, // send credentials on CORS requests withCredentials: true,