-
Notifications
You must be signed in to change notification settings - Fork 134
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
chore(flags): Add new debugging property $used_bootstrap_value
, $feature_flag_bootstrapped_response
and $feature_flag_bootstrapped_payload
to $feature_flag_called
event
#1567
Merged
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
89e8dea
chore(flags): Add new debugging property `$feature_flag_bootstrapped_…
havenbarnes 70425b8
add test
havenbarnes c4b0c0e
Add $used_bootstrap_value evt property, update tests
havenbarnes de0ad0a
Merge branch 'main' of https://github.com/PostHog/posthog-js into boo…
havenbarnes 9951dc0
Merge branch 'main' of https://github.com/PostHog/posthog-js into boo…
havenbarnes 93a1dd4
Merge branch 'main' of https://github.com/PostHog/posthog-js into boo…
havenbarnes 29f8fbf
bump testcafe result check timeout to 20m from 10m
havenbarnes 3895c2e
bump testcafe result check timeout to 60m just to get a passing run
havenbarnes 17918b9
Merge branch 'main' of https://github.com/PostHog/posthog-js into boo…
havenbarnes 79bbfc1
bump
havenbarnes e87da17
temp bump 120m timeout for checking results
havenbarnes 792a429
Merge branch 'main' of https://github.com/PostHog/posthog-js into boo…
havenbarnes 335412c
bump again to get unblocked
havenbarnes 6dc0c4b
Merge branch 'main' of https://github.com/PostHog/posthog-js into boo…
havenbarnes 9c782e1
tweak
havenbarnes File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
In this PR we are essentially find+replacing the existing flag
decideEndpointWasHit
for this new, more accurately namedreceivedFlagValues
flag. The prior will now mean that the endpoint truly was hit with no errors, and the latter will mean that there are flag values available for the SDK to return.decideEndpointWasHit
is now really only used for passing back the$used_bootstrap_value
flag in $feature_flag_called events.