-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(flags): Add more details such as version, id, and reason to $feature_flag_called
events
#207
Conversation
In a back compat manner.
Since `self.feature_flags_by_key` is derived from `self.feature_flags`, and we often set the latter in unit tests, but forget to set the former, our tests can be wonky. This ensures that when we set `self.feature_flags`, we always set `self. feature_flags_by_key`
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PR Summary
Here's my review of the changes to add /decide?v=4
support and enhance feature flag events:
This PR adds support for the new /decide?v=4
endpoint and enriches feature flag events with additional metadata like version, ID, and evaluation reason.
Key points:
- New
types.py
introduces structured data classes for flag metadata but has potential type safety issues withNone
returns infrom_json
methods - The
get_value()
assertion inFeatureFlag
could fail in production and should be replaced with safer validation normalize_decide_response()
modifies input dictionaries which could cause side effects- Test coverage for the v4 decide endpoint functionality in
test_request.py
needs expansion - The
to_payloads()
return type annotation incorrectly specifiesstr
when it should beAny
The changes maintain backwards compatibility while adding important new capabilities, but would benefit from addressing these type safety and testing gaps.
10 file(s) reviewed, 10 comment(s)
Edit PR Review Bot Settings | Greptile
b96fb06
to
ae2eccc
Compare
ae2eccc
to
a7bc262
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is just good clean fun
I’ll merge after bumping minor version and adding changelog notes |
Add support for
/decide?v=4
(see PostHog/posthog#29751). Similar to how it's done in PostHog/posthog-js-lite#427.Updates to the
$feature_flag_called
eventWhen capturing the
$feature_flag_called
event, additional information are now captured:The end result is
$feature_flag_called
events will have additional properties:$feature_flag_version
$feature_flag_reason
$feature_flag_id
Backwards compatibility:
The changes are all backwards compatible with
/decide?v=3
.Testing
Unit tests and some manual testing