posthog-js-lite 4.0.0 → 4.1.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 DELETED
@@ -1,183 +0,0 @@
1
- # Next
2
-
3
- # 4.0.0 - 2025-06-10
4
-
5
- ## Removed
6
-
7
- 1. Remove `captureMode` in favor of `json` capture mode only
8
- 2. Remove deprecated `personProperties` and `groupProperties` in favor of `setPersonPropertiesForFlags` and `setGroupPropertiesForFlags`
9
-
10
- # 3.6.0 – 2025-06-05
11
-
12
- ## Added
13
-
14
- 1. chore: improve event prop types
15
- 2. rotate session id if expired after 24 hours
16
-
17
- # 3.5.1 – 2025-05-06
18
-
19
- ## Fixed
20
-
21
- 1. Fix exported file extensions to work with older Node versions
22
-
23
- # 3.5.0 – 2025-04-17
24
-
25
- ## Added
26
-
27
- 1. chore: roll out new flag evaluation backend to majority of customers
28
-
29
- # 3.4.2 - 2025-02-27
30
-
31
- ## Added
32
-
33
- 1. Added `captureHistoryEvents` option to automatically capture navigation events in single-page applications using the History API.
34
-
35
- ## Fixed
36
-
37
- 1. apiKey cannot be empty.
38
-
39
- # 3.4.2 - 2025-02-27
40
-
41
- ## Fixed
42
-
43
- 1. Supports gracefully handling quotaLimited responses from the PostHog API for feature flags.
44
-
45
- # 3.4.1 - 2025-02-20
46
-
47
- ## Fixed
48
-
49
- 1. fix: handle cases when non Error is passed to `captureException`
50
-
51
- # 3.4.0 - 2025-02-20
52
-
53
- ## Added
54
-
55
- 1. Adds the ability to capture user feedback in LLM Observability using the `captureTraceFeedback` and `captureTraceMetric` methods.
56
-
57
- # 3.3.0 - 2025-02-06
58
-
59
- ## Added
60
-
61
- 1. Adds `captureException` function to allow manual capture of exceptions
62
-
63
- # 3.2.1 - 2025-01-17
64
-
65
- ## Fixed
66
-
67
- 1. fix: check if window and fetch are available before using on web env
68
-
69
- # 3.2.0 - 2024-12-12
70
-
71
- ## Changed
72
-
73
- 1. Add new debugging property `$feature_flag_bootstrapped_response`, `$feature_flag_bootstrapped_payload` and `$used_bootstrap_value` to `$feature_flag_called` event
74
-
75
- # 3.1.0 - 2024-11-21
76
-
77
- ## Changed
78
-
79
- 1. chore: default `captureMode` changed to `json`.
80
- 1. To keep using the `form` mode, just set the `captureMode` option to `form` when initializing the PostHog client.
81
- 2. fix: identify method allows passing a $set_once object
82
-
83
- # 3.0.2 - 2024-06-15
84
-
85
- ## Fixed
86
-
87
- 1. Fixed and error that prevented localstorage from ever being used and instead falling back to sessionstorage for persistence
88
-
89
- ## Changed
90
-
91
- 1. chore: change host to new address.
92
-
93
- # 3.0.1 - 2024-04-25
94
-
95
- 1. Prevent double JSON parsing of feature flag payloads, which would convert the payload [1] into 1.
96
-
97
- # 3.0.0 - 2024-03-18
98
-
99
- ## Added
100
-
101
- 1. Adds a `disabled` option and the ability to change it later via `posthog.disabled = true`. Useful for disabling PostHog tracking for example in a testing environment without having complex conditional checking
102
- 2. `shutdown` takes a `shutdownTimeoutMs` param with a default of 30000 (30s). This is the time to wait for flushing events before shutting down the client. If the timeout is reached, the client will be shut down regardless of pending events.
103
- 3. Adds a new `featureFlagsRequestTimeoutMs` timeout parameter for feature flags which defaults to 10 seconds.
104
- 4. Flushes will now try to flush up to `maxBatchSize` (default 100) in one go
105
- 5. Queued events are limited up to `maxQueueSize` (default 1000) and the oldest events are dropped when the limit is reached
106
-
107
- ## Removed
108
-
109
- 1. Removes the `enable` option. You can now specify `defaultOptIn: false` to start the SDK opted out of tracking
110
- 2. `flushAsync` and `shutdownAsync` are removed with `flush` and `shutdown` now being the async methods.
111
-
112
- ## Changed
113
-
114
- 1. `flush` and `shutdown` now being async methods.
115
- 2. Many methods such as `capture` and `identify` no longer return the `this` object instead returning nothing
116
-
117
- ## Fixed
118
-
119
- 1. Fixed an issue where `shutdown` would potentially exit early if a flush was already in progress
120
- 2. Fixes some typos in types
121
-
122
- # 3.0.0-beta.2 - 2024-03-12
123
-
124
- 1. `flushAsync` and `shutdownAsync` are removed with `flush` and `shutdown` now being the async methods.
125
- 2. Fixed an issue where `shutdownAsync` would potentially exit early if a flush was already in progress
126
- 3. Flushes will now try to flush up to `maxBatchSize` (default 100) in one go
127
-
128
- # 3.0.0-beta.1 - 2024-03-04
129
-
130
- 1. Removes the `enable` option. You can now specify `defaultOptIn: false` to start the SDK opted out of tracking
131
- 2. Adds a `disabled` option and the ability to change it later via `posthog.disabled = true`. Useful for disabling PostHog tracking for example in a testing environment without having complex conditional checking
132
- 3. Many methods such as `capture` and `identify` no longer return the `this` object instead returning nothing
133
- 4. Fixes some typos in types
134
- 5. `shutdown` and `shutdownAsync` takes a `shutdownTimeoutMs` param with a default of 30000 (30s). This is the time to wait for flushing events before shutting down the client. If the timeout is reached, the client will be shut down regardless of pending events.
135
- 6. Adds a new `featureFlagsRequestTimeoutMs` timeout parameter for feature flags which defaults to 10 seconds.
136
-
137
- # 2.6.2 - 2024-02-15
138
-
139
- 1. fix: using `captureMode=form` won't throw an error and retry unnecessarily
140
-
141
- # 2.6.1 - 2024-02-06
142
-
143
- 1. Swapped to `uuidv7` for unique ID generation
144
-
145
- # 2.6.0 - 2024-01-18
146
-
147
- 1. Adds support for overriding the event `uuid` via capture options
148
-
149
- # 2.5.0 - 2023-12-04
150
-
151
- 1. Renamed `personProperties` to `setPersonPropertiesForFlags` to match `posthog-js` and more clearly indicated what it does
152
- 2. Renamed `groupProperties` to `setGroupPropertiesForFlags` to match `posthog-js` and more clearly indicated what it does
153
-
154
- # 2.4.0 - 2023-04-20
155
-
156
- 1. Fixes a race condition that could occur when initialising PostHog
157
- 2. Fixes an issue where feature flags would not be reloaded after a reset
158
-
159
- # 2.3.0 - 2023-04-19
160
-
161
- 1. Some small fixes to incorrect types
162
- 2. Fixed fetch compatibility by aligning error handling
163
- 3. Added two errors: PostHogFetchHttpError (non-2xx status) and PostHogFetchNetworkError (fetch network error)
164
- 4. Added .on('error', (err) => void)
165
- 5. shutdownAsync now ignores fetch errors. They should be handled with .on('error', ...) from now on.
166
-
167
- # 2.2.1 - 2023-02-13
168
-
169
- 1. Fixes an issue where background network errors would trigger unhandled promise warnings
170
-
171
- # 2.2.0 - 2023-02-02
172
-
173
- 1. Adds support for overriding timestamp of capture events
174
-
175
- # 2.1.0 - 2022-1-26
176
-
177
- 1. uses v3 decide endpoint
178
- 2. JSON payloads will be returned with feature flags
179
- 3. Feature flags will gracefully fail and optimistically save evaluated flags if server is down
180
-
181
- # 2.0.1 - 2023-01-25
182
-
183
- 1. Ensures the distinctId used in `.groupIdentify` is the same as the currently identified user
package/index.ts DELETED
@@ -1,5 +0,0 @@
1
- import { PostHog } from './src/posthog-web'
2
-
3
- export default PostHog
4
-
5
- export * from './src/posthog-web'