posthog-node 4.2.0 → 4.2.2

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,5 +1,13 @@
1
1
  # Next
2
2
 
3
+ # 4.2.2 - 2024-11-18
4
+
5
+ 1. fix: Shutdown will now respect the timeout and forcefully return rather than returning after the next fetch.
6
+
7
+ # 4.2.1 - 2024-10-14
8
+
9
+ 1. fix: only log messages if debug is enabled
10
+
3
11
  # 4.2.0 - 2024-08-26
4
12
 
5
13
  1. Added `historicalMigration` option for use in tools that are migrating large data to PostHog
@@ -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
+ ```