posthog-node 4.1.1 → 4.2.1

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
@@ -1,8 +1,17 @@
1
1
  # Next
2
2
 
3
+ # 4.2.1 - 2024-10-14
4
+
5
+ 1. fix: only log messages if debug is enabled
6
+
7
+ # 4.2.0 - 2024-08-26
8
+
9
+ 1. Added `historicalMigration` option for use in tools that are migrating large data to PostHog
10
+
3
11
  # 4.1.1 - 2024-08-20
4
12
 
5
13
  1. Local evaluation returns correct results on `undefined/null` values
14
+
6
15
  # 4.1.0 - 2024-08-14
7
16
 
8
17
  1. chore: change host to new address.
@@ -0,0 +1,14 @@
1
+ # Contributing
2
+
3
+ First install yalc:
4
+
5
+ ```sh
6
+ yarn global add yalc
7
+ ```
8
+
9
+ Then run:
10
+
11
+ ```sh
12
+ cd ../examples/example-node
13
+ yarn && yarn start
14
+ ```