posthog-node 2.4.0 → 2.5.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 +5 -1
- package/lib/index.cjs.js +478 -368
- package/lib/index.cjs.js.map +1 -1
- package/lib/index.d.ts +108 -5
- package/lib/index.esm.js +478 -368
- package/lib/index.esm.js.map +1 -1
- package/lib/posthog-core/src/index.d.ts +55 -22
- package/lib/posthog-node/src/posthog-node.d.ts +10 -6
- package/package.json +2 -2
- package/src/posthog-node.ts +57 -114
- package/lib/node_modules/tslib/tslib.es6.d.ts +0 -35
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
|
+
# 2.5.0 - 2023-02-15
|
|
2
|
+
|
|
3
|
+
1. Removes shared client from `posthog-node`, getting rid of some race condition bugs when capturing events.
|
|
4
|
+
2. Sets minimum version of node.js to 15
|
|
1
5
|
# 2.4.0 - 2023-02-02
|
|
2
6
|
|
|
3
7
|
1. Adds support for overriding timestamp of capture events
|
|
4
8
|
|
|
5
|
-
# 2.3.0 -
|
|
9
|
+
# 2.3.0 - 2023-1-26
|
|
6
10
|
|
|
7
11
|
1. uses v3 decide endpoint
|
|
8
12
|
2. JSON payloads will be returned with feature flags
|