Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
d586359
feat: ff percentage based rollout router
SkArchon May 6, 2026
e2a7720
fix(router): flip inverted predicate in newRolloutSelector
SkArchon May 6, 2026
c6aa5cf
fix(router): default feature_flag_rollouts.enabled to false
SkArchon May 6, 2026
242060a
fix(router): drop overflowing flags individually instead of disabling…
SkArchon May 6, 2026
83c4d79
perf(router): use math/rand/v2.Uint32N for rollout bucketing
SkArchon May 6, 2026
3ee7ea5
fix(router): suppress X-Feature-Flag response echo for random rollout…
SkArchon May 6, 2026
04c9de5
fix: comment updates
SkArchon May 6, 2026
d9c861b
fix(router): always echo X-Feature-Flag, including for random rollout…
SkArchon May 6, 2026
1ce9f0f
fix(router-tests): match JSON-escaped quotes in productCountFieldError
SkArchon May 6, 2026
3fdfd16
chore(proto): clarifying comment on CacheEventsService
SkArchon May 6, 2026
7d97f17
merge milinda/entity-caching-2-control-plane-ff-rollout into entity-c…
SkArchon May 6, 2026
b41f877
merge milinda/entity-caching-2-control-plane-ff-rollout into entity-c…
SkArchon May 6, 2026
e47147c
merge milinda/entity-caching-2-control-plane-ff-rollout into entity-c…
SkArchon May 6, 2026
3ec63a1
merge milinda/entity-caching-2-control-plane-ff-rollout into entity-c…
SkArchon May 6, 2026
c0cb8e6
Merge branch 'milinda/entity-caching-0' into milinda/entity-caching-3…
SkArchon May 6, 2026
4af809c
merge milinda/entity-caching-2-control-plane-ff-rollout into entity-c…
SkArchon May 11, 2026
f0d0ef6
Squash merge cohort-config-versions-rpc into milinda/entity-caching-3…
SkArchon May 12, 2026
9b025d9
fix(controlplane): partition cache cohorts by is_feature_flag_composi…
SkArchon May 12, 2026
93db9e0
fix(controlplane): source main cohort from graph_compositions, not fg…
SkArchon May 12, 2026
3f073e0
fix: flag changes
SkArchon May 13, 2026
e2f8e6f
fix: makefile
SkArchon May 13, 2026
1630169
fix(router/cacheevents): propagate DataSource and FieldPath onto FIEL…
SkArchon May 14, 2026
cbd541c
emit FIELD_SELECTION events for nested object accessors
SkArchon May 16, 2026
4305a87
chore(demo): wire entity caching + L2 redis into local demo config
SkArchon May 18, 2026
c696851
chore(demo/mood): remove updateMood mutation
SkArchon May 18, 2026
b67dafb
Revert "chore(demo/mood): remove updateMood mutation"
SkArchon May 18, 2026
c3f267d
Revert "chore(demo): wire entity caching + L2 redis into local demo c…
SkArchon May 18, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,12 @@ start-studio:
start-router:
(cd router && make dev)

start-graphqlmetrics:
(cd graphqlmetrics && make dev)

DC_FLAGS=
dc-dev:
docker compose --file docker-compose.yml --profile dev up --remove-orphans --detach $(DC_FLAGS)
docker compose --file docker-compose.yml --profile dev up --remove-orphans --detach --scale graphqlmetrics=0 $(DC_FLAGS)

dc-stack:
docker compose --file docker-compose.cosmo.yml up --remove-orphans --detach
Expand Down
Loading
Loading