Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
0c26d31
feat: decouple feature flag composition when split config is enabled
wilsonrivera Jun 30, 2026
b3c32cc
chore: prevent rendering feature flags for feature flag compositions
wilsonrivera Jun 30, 2026
b90a9c6
chore: `getCompositionSubgraphs` can now include feature subgraphs
wilsonrivera Jun 30, 2026
6b60575
chore: take into account split config when retrieving the last featur…
wilsonrivera Jun 30, 2026
edccc3c
chore: fix test
wilsonrivera Jun 30, 2026
7a8396b
chore: linting
wilsonrivera Jun 30, 2026
5bffba4
chore: fix test
wilsonrivera Jun 30, 2026
488d72c
chore: improve queries
wilsonrivera Jun 30, 2026
14e9f44
chore: fix comment
wilsonrivera Jun 30, 2026
49b2f01
Merge branch 'main' into wilson/eng-9783-controlplane-decouple-featur…
wilsonrivera Jul 1, 2026
fa7ab76
Merge branch 'main' into wilson/eng-9783-controlplane-decouple-featur…
wilsonrivera Jul 1, 2026
d62aa82
Merge branch 'main' into wilson/eng-9783-controlplane-decouple-featur…
wilsonrivera Jul 2, 2026
2fe25c4
Merge branch 'main' into wilson/eng-9783-controlplane-decouple-featur…
wilsonrivera Jul 2, 2026
f16c6f6
Merge branch 'main' into wilson/eng-9783-controlplane-decouple-featur…
wilsonrivera Jul 2, 2026
16a1679
Merge branch 'main' into wilson/eng-9783-controlplane-decouple-featur…
wilsonrivera Jul 3, 2026
e363e19
chore: address comments and add tests
wilsonrivera Jul 3, 2026
d96b7a8
chore: cleanup
wilsonrivera Jul 3, 2026
18a1371
chore: correctly limit to federated graph
wilsonrivera Jul 3, 2026
caa92dd
chore: fix column name
wilsonrivera Jul 3, 2026
753fd25
chore: add tests to verify composition subgraphs are correct
wilsonrivera Jul 3, 2026
2cce1d9
Merge branch 'main' into wilson/eng-9783-controlplane-decouple-featur…
wilsonrivera Jul 6, 2026
27a6d53
chore: generate platform proto
wilsonrivera Jul 6, 2026
82efb3a
Merge branch 'main' into wilson/eng-9783-controlplane-decouple-featur…
wilsonrivera Jul 6, 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
25 changes: 22 additions & 3 deletions connect-go/gen/proto/wg/cosmo/platform/v1/platform.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 11 additions & 1 deletion connect/src/wg/cosmo/platform/v1/platform_pb.ts

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions controlplane/migrations/0145_wild_lady_bullseye.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
ALTER TABLE "federated_graphs_to_feature_flag_schema_versions" DROP CONSTRAINT "federated_graphs_to_feature_flag_schema_versions_federated_graph_id_base_composition_schema_version_id_composed_schema_version_id_pk";--> statement-breakpoint
ALTER TABLE "federated_graphs_to_feature_flag_schema_versions" ALTER COLUMN "base_composition_schema_version_id" DROP NOT NULL;--> statement-breakpoint
ALTER TABLE "federated_graphs_to_feature_flag_schema_versions" ADD CONSTRAINT "federated_graphs_to_feature_flag_schema_versions_federated_graph_id_composed_schema_version_id_pk" PRIMARY KEY("federated_graph_id","composed_schema_version_id");--> statement-breakpoint
CREATE INDEX IF NOT EXISTS "fgffsv_composite_idx" ON "federated_graphs_to_feature_flag_schema_versions" USING btree ("federated_graph_id","base_composition_schema_version_id","composed_schema_version_id");
Loading
Loading