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 +9 -0
- package/CONTRIBUTING.md +14 -0
- package/lib/index.cjs.js +75 -252
- package/lib/index.cjs.js.map +1 -1
- package/lib/index.d.ts +24 -17
- package/lib/index.esm.js +75 -252
- package/lib/index.esm.js.map +1 -1
- package/lib/posthog-core/src/index.d.ts +4 -2
- package/lib/posthog-core/src/types.d.ts +18 -13
- package/lib/posthog-node/src/extensions/sentry-integration.d.ts +2 -2
- package/lib/posthog-node/src/feature-flags.d.ts +2 -1
- package/lib/posthog-node/src/fetch.d.ts +1 -1
- package/lib/posthog-node/src/posthog-node.d.ts +1 -1
- package/lib/posthog-node/src/types.d.ts +5 -5
- package/package.json +1 -1
- package/src/feature-flags.ts +14 -14
- package/src/posthog-node.ts +0 -1
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.
|