blocfeed 0.23.0 → 0.25.0
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 +29 -0
- package/dist/chunk-6HNU7ECD.js +885 -0
- package/dist/chunk-WKHX5Z3E.cjs +885 -0
- package/dist/{controller-BPGXlZKD.d.cts → controller-v9Hd8d5-.d.cts} +45 -1
- package/dist/{controller-BPGXlZKD.d.ts → controller-v9Hd8d5-.d.ts} +45 -1
- package/dist/engine.cjs +1 -1
- package/dist/engine.d.cts +2 -2
- package/dist/engine.d.ts +2 -2
- package/dist/engine.js +1 -1
- package/dist/main.cjs +1 -1
- package/dist/main.d.cts +3 -3
- package/dist/main.d.ts +3 -3
- package/dist/main.js +1 -1
- package/dist/passive.cjs +1 -1
- package/dist/passive.d.cts +2 -2
- package/dist/passive.d.ts +2 -2
- package/dist/passive.js +1 -1
- package/dist/script.js +25 -24
- package/package.json +1 -1
- package/dist/chunk-NMH3WM6Y.js +0 -884
- package/dist/chunk-SJE73TVR.cjs +0 -884
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.24.0 — 2026-05-08
|
|
4
|
+
|
|
5
|
+
### New: PII scrubbing on behavioral events (default-on)
|
|
6
|
+
|
|
7
|
+
Email addresses, phone numbers, US SSNs, and credit card numbers are
|
|
8
|
+
now automatically replaced with placeholders ([email], [phone], [ssn],
|
|
9
|
+
[card]) before behavioral events leave the browser. Applies to:
|
|
10
|
+
|
|
11
|
+
- element_text on every detector event (rage_click, dead_click,
|
|
12
|
+
http_failures, etc.)
|
|
13
|
+
- event_data / metadata recursively
|
|
14
|
+
- track() properties on custom events
|
|
15
|
+
|
|
16
|
+
Configurable per BehavioralConfig.piiScrub:
|
|
17
|
+
- "default" (default) — emails, phones, SSNs, credit cards
|
|
18
|
+
- "strict" — adds IPv4 addresses + IBANs
|
|
19
|
+
- "off" — no scrubbing (existing behavior)
|
|
20
|
+
|
|
21
|
+
Selectors, page URLs, and session IDs pass through unchanged — they
|
|
22
|
+
need to stay verbatim for backend aggregation.
|
|
23
|
+
|
|
24
|
+
Apply via the script tag's window.blocfeedConfig:
|
|
25
|
+
window.blocfeedConfig = { piiScrub: "strict" }
|
|
26
|
+
|
|
27
|
+
Or via React widget:
|
|
28
|
+
<BlocFeedWidget config={{ piiScrub: "strict" }} ... />
|
|
29
|
+
|
|
30
|
+
---
|
|
31
|
+
|
|
3
32
|
## 0.23.0 — 2026-05-07
|
|
4
33
|
|
|
5
34
|
### New: rich script-tag configuration
|