You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+12-5Lines changed: 12 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,7 @@
1
+
## 3.7.0 - 2024-10-03
2
+
3
+
1. Adds a new `super_properties` parameter on the client that are appended to every /capture call.
4
+
1
5
## 3.6.7 - 2024-09-24
2
6
3
7
1. Remove deprecated datetime.utcnow() in favour of datetime.now(tz=tzutc())
@@ -66,7 +70,6 @@
66
70
67
71
1. Return success/failure with all capture calls from module functions
68
72
69
-
70
73
## 3.3.1 - 2024-01-10
71
74
72
75
1. Make sure we don't override any existing feature flag properties when adding locally evaluated feature flag properties.
@@ -92,6 +95,7 @@
92
95
93
96
1. Restore how feature flags work when the client library is disabled: All requests return `None` and no events are sent when the client is disabled.
94
97
2. Add a `feature_flag_definitions()` debug option, which returns currently loaded feature flag definitions. You can use this to more cleverly decide when to request local evaluation of feature flags.
1. Log instead of raise error on posthog personal api key errors
133
137
2. Remove upper bound on backoff dependency
134
138
135
-
136
139
## 2.3.0 - 2023-01-31
137
140
138
141
1. Add support for returning payloads of matched feature flags
@@ -148,6 +151,7 @@ Changes:
148
151
Changes:
149
152
150
153
1. Fixes issues with date comparison.
154
+
151
155
## 2.1.1 - 2022-09-14
152
156
153
157
Changes:
@@ -160,6 +164,7 @@ Changes:
160
164
161
165
1. Feature flag defaults have been removed
162
166
2. Setup logging only when debug mode is enabled.
167
+
163
168
## 2.0.1 - 2022-08-04
164
169
165
170
- Make poll_interval configurable
@@ -172,26 +177,28 @@ Breaking changes:
172
177
173
178
1. The minimum version requirement for PostHog servers is now 1.38. If you're using PostHog Cloud, you satisfy this requirement automatically.
174
179
2. Feature flag defaults apply only when there's an error fetching feature flag results. Earlier, if the default was set to `True`, even if a flag resolved to `False`, the default would override this.
175
-
**Note: These are removed in 2.0.2**
180
+
**Note: These are removed in 2.0.2**
176
181
3. Feature flag remote evaluation doesn't require a personal API key.
177
182
178
183
New Changes:
179
184
180
185
1. You can now evaluate feature flags locally (i.e. without sending a request to your PostHog servers) by setting a personal API key, and passing in groups and person properties to `is_feature_enabled` and `get_feature_flag` calls.
181
186
2. Introduces a `get_all_flags` method that returns all feature flags. This is useful for when you want to seed your frontend with some initial flags, given a user ID.
182
187
183
-
184
-
185
188
## 1.4.9 - 2022-06-13
189
+
186
190
- Support for sending feature flags with capture calls
187
191
188
192
## 1.4.8 - 2022-05-12
193
+
189
194
- Support multi variate feature flags
190
195
191
196
## 1.4.7 - 2022-04-25
197
+
192
198
- Allow feature flags usage without project_api_key
0 commit comments