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
feat(flags): decouple local evaluation from personal API keys; support decrypting remote config payloads without relying on the feature flags poller (#282)
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,7 @@
1
+
# 6.1.0 - 2025-07-10
2
+
3
+
- feat: decouple feature flag local evaluation from personal API keys; support decrypting remote config payloads without relying on the feature flags poller
4
+
1
5
# 6.0.4 - 2025-07-09
2
6
3
7
- fix: add POSTHOG_MW_CLIENT setting to django middleware, to support custom clients for exception capture.
Copy file name to clipboardExpand all lines: posthog/__init__.py
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -60,6 +60,9 @@ def tag(name: str, value: Any):
60
60
project_root=None# type: Optional[str]
61
61
# Used for our AI observability feature to not capture any prompt or output just usage + metadata
62
62
privacy_mode=False# type: bool
63
+
# Whether to enable feature flag polling for local evaluation by default. Defaults to True.
64
+
# We recommend setting this to False if you are only using the personalApiKey for evaluating remote config payloads via `get_remote_config_payload` and not using local evaluation.
65
+
enable_local_evaluation=True# type: bool
63
66
64
67
default_client=None# type: Optional[Client]
65
68
@@ -465,6 +468,7 @@ def setup():
465
468
# or deprecate this proxy option fully (it's already in the process of deprecation, no new clients should be using this method since like 5-6 months)
0 commit comments