Skip to content
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

Merged
merged 10 commits into from
Mar 25, 2025

Conversation

haacked
Copy link
Contributor

@haacked haacked commented Mar 24, 2025

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 event

When capturing the $feature_flag_called event, additional information are now captured:

The end result is $feature_flag_called events will have additional properties:

Property Name Descirption
$feature_flag_version The version of the feature flag. This is visible in the diffs of the feature flag activity log.
$feature_flag_reason The reason the feature flag matched or didn't match.
$feature_flag_id The database id of the feature flag (Just in case a flag was deleted and then recreated with the same key, we can determine the difference.

Backwards compatibility:

The changes are all backwards compatible with /decide?v=3.

Testing

Unit tests and some manual testing

haacked added 4 commits March 22, 2025 19:50
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`
Copy link
Contributor

@greptile-apps greptile-apps bot left a 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 with None returns in from_json methods
  • The get_value() assertion in FeatureFlag 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 specifies str when it should be Any

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

@haacked haacked force-pushed the haacked/decide-v4-support branch 5 times, most recently from b96fb06 to ae2eccc Compare March 24, 2025 03:56
Copy link
Contributor

@dmarticus dmarticus left a 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

@haacked
Copy link
Contributor Author

haacked commented Mar 25, 2025

I’ll merge after bumping minor version and adding changelog notes

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants