@cross-deck/web 1.10.2 → 1.10.3
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 +14 -0
- package/dist/crossdeck.umd.min.js +2 -2
- package/dist/crossdeck.umd.min.js.map +1 -1
- package/dist/error-codes.json +1 -1
- package/dist/index.cjs +14 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +14 -3
- package/dist/index.mjs.map +1 -1
- package/dist/react.cjs +14 -3
- package/dist/react.cjs.map +1 -1
- package/dist/react.mjs +14 -3
- package/dist/react.mjs.map +1 -1
- package/dist/vue.cjs +14 -3
- package/dist/vue.cjs.map +1 -1
- package/dist/vue.mjs +14 -3
- package/dist/vue.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `@cross-deck/web` will be documented here. The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
4
4
|
|
|
5
|
+
## [1.10.3] — 2026-07-22
|
|
6
|
+
|
|
7
|
+
**Fixed — browser-injected globals no longer blamed on your code.** A browser (not
|
|
8
|
+
your app) injects private globals into every page — `window.__firefox__` (Firefox
|
|
9
|
+
for iOS reader mode), `__gCrWeb` (Chrome for iOS), `zaloJSV2` (Zalo). Their content
|
|
10
|
+
script races page setup and throws in the page's own global scope, so the throwing
|
|
11
|
+
frame wears your URL (`https://you.app/x:1:19`, "global code") and looked like your
|
|
12
|
+
code. Now: when the message names one of these globals, every frame is marked
|
|
13
|
+
`in_app: false` (it's the browser's code, not yours), and the error is fingerprinted
|
|
14
|
+
by the injected global — so the whole class, across pages and both race shapes
|
|
15
|
+
(`.reader` vs `Can't find variable`), collapses into a single grouped, de-emphasised
|
|
16
|
+
issue instead of thousands of per-page reds. Same family as the `iabjs://` in-app
|
|
17
|
+
browser handling. No public API change.
|
|
18
|
+
|
|
5
19
|
## [1.10.2] — 2026-07-22
|
|
6
20
|
|
|
7
21
|
**First published 1.10.x — same SDK, release pipeline fully green.** 1.10.0/1.10.1
|