epicenter-libs 3.34.0 → 3.34.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## [3.34.1](https://github.com/forio/epicenter-libs/compare/v3.34.0...v3.34.1) (2026-02-19)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * remove both host-only and subdomain v3 SSO cookies ([6d217b2](https://github.com/forio/epicenter-libs/commit/6d217b2253f918197afdc90136fa569d3c734be3))
7
+
8
+
1
9
  # [3.34.0](https://github.com/forio/epicenter-libs/compare/v3.33.0...v3.34.0) (2026-02-12)
2
10
 
3
11
 
@@ -2348,6 +2348,10 @@ class Identification {
2348
2348
  cookies.removeItem(EPI_SSO_KEY, {
2349
2349
  path: `/app${account}${project}`
2350
2350
  });
2351
+ cookies.removeItem(EPI_SSO_KEY, {
2352
+ domain: `.${window.location.hostname}`,
2353
+ path: `/app${account}${project}`
2354
+ });
2351
2355
  }
2352
2356
  }
2353
2357
  }
@@ -10753,8 +10757,8 @@ var utilities = /*#__PURE__*/Object.freeze({
10753
10757
  });
10754
10758
 
10755
10759
  /* yes, this string template literal is weird;
10756
- * it's cause rollup does not recogize 3.34.0 as an individual token otherwise */
10757
- const version = `Epicenter (v${'3.34.0'}) for Browsers | Build Date: 2026-02-12T21:41:02.367Z`;
10760
+ * it's cause rollup does not recogize 3.34.1 as an individual token otherwise */
10761
+ const version = `Epicenter (v${'3.34.1'}) for Browsers | Build Date: 2026-02-19T18:00:38.906Z`;
10758
10762
  const UNAUTHORIZED = 401;
10759
10763
  const FORBIDDEN = 403;
10760
10764
  const DEFAULT_ERROR_HANDLERS = {};