@ak--47/dungeon-master 1.6.4 → 1.6.5

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
@@ -2,6 +2,18 @@
2
2
 
3
3
  All notable changes to `@ak--47/dungeon-master`.
4
4
 
5
+ ## 1.6.5 — 2026-09-02
6
+
7
+ ### Changed
8
+
9
+ - **`matchMixpanelDefaults: true` on every live send to Mixpanel.** Set in
10
+ `commonOpts` in `lib/orchestrators/mixpanel-sender.js`, passed straight through
11
+ to `mixpanel-import`. Renames warehouse-style property keys to Mixpanel's
12
+ reserved names (e.g. `current_url` → `$current_url`, `_browser` → `$browser`)
13
+ as records stream out. Only affects the wire payload sent to Mixpanel's
14
+ ingestion API — generated events, profiles, and files on disk are unchanged.
15
+ Same seed, same config still produces byte-identical generated output.
16
+
5
17
  ## 1.6.4 — 2026-09-01
6
18
 
7
19
  Answers the doc/type half of the DM4 v5 engine request
@@ -100,6 +100,7 @@ async function _sendToMixpanel(context) {
100
100
  const commonOpts = {
101
101
  region,
102
102
  fixData: true,
103
+ matchMixpanelDefaults: true,
103
104
  v2_compat: true,
104
105
  verbose: false,
105
106
  forceStream: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ak--47/dungeon-master",
3
- "version": "1.6.4",
3
+ "version": "1.6.5",
4
4
  "description": "generate fancy datasets",
5
5
  "type": "module",
6
6
  "main": "index.js",