[Feature flags] Add a persistence layer#2898
Merged
jonathanmos merged 4 commits intoOct 9, 2025
Merged
Conversation
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## feature/feature-flagging #2898 +/- ##
============================================================
+ Coverage 70.67% 70.73% +0.06%
============================================================
Files 830 834 +4
Lines 30203 30369 +166
Branches 5128 5134 +6
============================================================
+ Hits 21344 21479 +135
- Misses 7403 7443 +40
+ Partials 1456 1447 -9
🚀 New features to boost your workflow:
|
0xnm
reviewed
Sep 29, 2025
| internal enum class VariationType(val value: String) { | ||
| BOOLEAN("boolean"), | ||
| STRING("string"), | ||
| INTEGER("integer"), |
ambushwork
reviewed
Sep 30, 2025
jonathanmos
force-pushed
the
jmoskovich/ff-persistence-layer
branch
3 times, most recently
from
October 6, 2025 07:47
8b9e500 to
fbd826b
Compare
aleksandr-gringauz
previously approved these changes
Oct 6, 2025
typotter
previously approved these changes
Oct 6, 2025
0xnm
reviewed
Oct 7, 2025
Comment on lines
+29
to
+34
| private lateinit var testedSerializer: FlagsStateSerializer | ||
|
|
||
| @BeforeEach | ||
| fun `set up`() { | ||
| testedSerializer = FlagsStateSerializer(mockInternalLogger) | ||
| } |
Member
There was a problem hiding this comment.
Suggested change
| private lateinit var testedSerializer: FlagsStateSerializer | |
| @BeforeEach | |
| fun `set up`() { | |
| testedSerializer = FlagsStateSerializer(mockInternalLogger) | |
| } | |
| private val testedSerialize = FlagsStateSerializer(mockInternalLogger) |
very minor
jonathanmos
dismissed stale reviews from typotter and aleksandr-gringauz
via
October 8, 2025 13:34
e4109cd
jonathanmos
force-pushed
the
jmoskovich/ff-persistence-layer
branch
from
October 8, 2025 13:34
fbd826b to
e4109cd
Compare
0xnm
previously approved these changes
Oct 8, 2025
aleksandr-gringauz
previously approved these changes
Oct 8, 2025
jonathanmos
dismissed stale reviews from aleksandr-gringauz and 0xnm
via
October 9, 2025 07:21
00b67aa
aleksandr-gringauz
previously approved these changes
Oct 9, 2025
0xnm
previously approved these changes
Oct 9, 2025
jonathanmos
dismissed stale reviews from 0xnm and aleksandr-gringauz
via
October 9, 2025 11:36
a93541e
jonathanmos
force-pushed
the
jmoskovich/ff-persistence-layer
branch
from
October 9, 2025 11:36
00b67aa to
a93541e
Compare
jonathanmos
force-pushed
the
jmoskovich/ff-persistence-layer
branch
from
October 9, 2025 16:38
a93541e to
3065076
Compare
jonathanmos
force-pushed
the
jmoskovich/ff-persistence-layer
branch
from
October 9, 2025 16:49
3065076 to
c3c8620
Compare
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
What does this PR do?
Part of the feature flag development.
• Uses the datastore to persist precomputed flags between sessions.
Motivation
What inspired you to submit this pull request?
Additional Notes
Anything else we should know when reviewing?
Review checklist (to be filled by reviewers)