posthog-node 4.3.0 → 4.3.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 +8 -0
- package/README.md +1 -1
- package/lib/index.cjs.js +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/index.esm.js +1 -1
- package/lib/posthog-node/src/types.d.ts +1 -1
- package/package.json +1 -1
- package/src/types.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Next
|
|
2
2
|
|
|
3
|
+
# 4.3.2 - 2024-12-11
|
|
4
|
+
|
|
5
|
+
1. REVERT: Fix bug where this SDK incorrectly sent `$feature_flag_called` events with null values when using `getFeatureFlagPayload`.
|
|
6
|
+
|
|
7
|
+
# 4.3.1 - 2024-11-26
|
|
8
|
+
|
|
9
|
+
1. Fix bug where this SDK incorrectly sent `$feature_flag_called` events with null values when using `getFeatureFlagPayload`.
|
|
10
|
+
|
|
3
11
|
# 4.3.0 - 2024-11-25
|
|
4
12
|
|
|
5
13
|
1. Add Sentry v8 support to the Sentry integration
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Please see the main [PostHog docs](https://www.posthog.com/docs).
|
|
4
4
|
|
|
5
|
-
Specifically, the [Node.js
|
|
5
|
+
Specifically, the [Node.js docs](https://posthog.com/docs/libraries/node) details.
|
|
6
6
|
|
|
7
7
|
## Questions?
|
|
8
8
|
|
package/lib/index.cjs.js
CHANGED
package/lib/index.d.ts
CHANGED
|
@@ -319,7 +319,7 @@ type PostHogNodeV1 = {
|
|
|
319
319
|
}): Promise<string | boolean | undefined>;
|
|
320
320
|
/**
|
|
321
321
|
* @description Retrieves payload associated with the specified flag and matched value that is passed in.
|
|
322
|
-
* (Expected to be used in
|
|
322
|
+
* (Expected to be used in conjunction with getFeatureFlag but allows for manual lookup).
|
|
323
323
|
* If matchValue isn't passed, getFeatureFlag is called implicitly.
|
|
324
324
|
* Will try to evaluate for payload locally first otherwise default to network call if allowed
|
|
325
325
|
*
|
package/lib/index.esm.js
CHANGED
|
@@ -140,7 +140,7 @@ export type PostHogNodeV1 = {
|
|
|
140
140
|
}): Promise<string | boolean | undefined>;
|
|
141
141
|
/**
|
|
142
142
|
* @description Retrieves payload associated with the specified flag and matched value that is passed in.
|
|
143
|
-
* (Expected to be used in
|
|
143
|
+
* (Expected to be used in conjunction with getFeatureFlag but allows for manual lookup).
|
|
144
144
|
* If matchValue isn't passed, getFeatureFlag is called implicitly.
|
|
145
145
|
* Will try to evaluate for payload locally first otherwise default to network call if allowed
|
|
146
146
|
*
|
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -158,7 +158,7 @@ export type PostHogNodeV1 = {
|
|
|
158
158
|
|
|
159
159
|
/**
|
|
160
160
|
* @description Retrieves payload associated with the specified flag and matched value that is passed in.
|
|
161
|
-
* (Expected to be used in
|
|
161
|
+
* (Expected to be used in conjunction with getFeatureFlag but allows for manual lookup).
|
|
162
162
|
* If matchValue isn't passed, getFeatureFlag is called implicitly.
|
|
163
163
|
* Will try to evaluate for payload locally first otherwise default to network call if allowed
|
|
164
164
|
*
|