@pionne/node 0.3.2 → 0.3.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.
Files changed (2) hide show
  1. package/README.md +11 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -77,6 +77,17 @@ Pionne.setTags({ tier: 'pro' });
77
77
  Pionne.setEnabled(false);
78
78
  ```
79
79
 
80
+ ### Bundle ID pinning — N/A on Node
81
+
82
+ The "Bundle ID" anti-token-theft check on Pionne projects is **mobile only**
83
+ (iOS/Android/RN/Flutter). On Node, your token lives in `.env` / a secrets
84
+ manager / EAS env vars — never in a decompilable binary — so the threat
85
+ doesn't exist. The field is hidden in the mobile dashboard for Node
86
+ projects; **don't set it manually via the API** — the SDK does not send a
87
+ top-level `app_id`, so a non-null `bundle_id` would 403 every event. Use
88
+ `tags` to differentiate deployments instead. See the
89
+ [Bundle ID Pinning docs](https://pionne.agkgcreations.fr/security/bundle-id#backends-sans-bundle_id).
90
+
80
91
  ### Geography (opt-in)
81
92
 
82
93
  Approximate server location (city, region, country) attached to every event,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pionne/node",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "Error monitoring SDK for Node.js \u2014 Pionne. Auto-captures uncaught exceptions and unhandled rejections, ships runtime context (Node, OS, hostname, pid), and tracks Release Health (crash-free user rate per release).",
5
5
  "license": "MIT",
6
6
  "author": "AGKG Creations",