browser-extension-manager 1.3.17 → 1.3.18
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 +9 -0
- package/dist/lib/auth-helpers.js +0 -13
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -15,6 +15,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
|
15
15
|
- `Security` in case of vulnerabilities.
|
|
16
16
|
|
|
17
17
|
---
|
|
18
|
+
## [1.3.17] - 2025-12-23
|
|
19
|
+
### Changed
|
|
20
|
+
- Auth system now uses messaging instead of `chrome.storage` for cross-context sync
|
|
21
|
+
- Background.js is the source of truth; contexts sync via `bxm:syncAuth` message on load
|
|
22
|
+
- Fresh custom tokens fetched from server only when context UID differs from background UID
|
|
23
|
+
|
|
24
|
+
### Fixed
|
|
25
|
+
- Auth failures caused by expired custom tokens (tokens no longer stored, fetched fresh when needed)
|
|
26
|
+
|
|
18
27
|
## [1.3.0] - 2025-12-16
|
|
19
28
|
|
|
20
29
|
### Added
|
package/dist/lib/auth-helpers.js
CHANGED
|
@@ -201,19 +201,6 @@ export function setupAuthEventListeners(context) {
|
|
|
201
201
|
openAuthPage(context);
|
|
202
202
|
});
|
|
203
203
|
|
|
204
|
-
// Account button (.auth-account-btn) - opens account page on website
|
|
205
|
-
document.addEventListener('click', (event) => {
|
|
206
|
-
const $accountBtn = event.target.closest('.auth-account-btn');
|
|
207
|
-
if (!$accountBtn) {
|
|
208
|
-
return;
|
|
209
|
-
}
|
|
210
|
-
|
|
211
|
-
event.preventDefault();
|
|
212
|
-
event.stopPropagation();
|
|
213
|
-
|
|
214
|
-
openAuthPage(context, { path: '/account' });
|
|
215
|
-
});
|
|
216
|
-
|
|
217
204
|
// Note: .auth-signout-btn is handled by web-manager's auth module
|
|
218
205
|
// setupSignOutListener detects sign-out and notifies background
|
|
219
206
|
|