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

Limit version of auto-upgraded subgraphs #2933

Merged
merged 3 commits into from
Feb 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 6 additions & 0 deletions .changeset/lemon-yaks-think.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@apollo/query-planner": patch
"@apollo/federation-internals": patch
---

When auto-upgrading a subgraph (i.e. one that does not explicitly @link the federation spec) do not go past v2.4. This is so that subgraphs will not inadvertently require the latest join spec (which cause the router or gateway not to start if running an older version).
8 changes: 4 additions & 4 deletions internals-js/src/__tests__/schemaUpgrader.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { FEDERATION2_LINK_WITH_AUTO_EXPANDED_IMPORTS, printSchema } from '..';
import { FEDERATION2_LINK_WITH_AUTO_EXPANDED_IMPORTS_UPGRADED, printSchema } from '..';
import { ObjectType } from '../definitions';
import { buildSubgraph, Subgraphs } from '../federation';
import { UpgradeChangeID, UpgradeResult, upgradeSubgraphsIfNecessary } from '../schemaUpgrader';
Expand Down Expand Up @@ -92,7 +92,7 @@ test('upgrade complex schema', () => {

expect(res.subgraphs?.get('s1')?.toString()).toMatchString(`
schema
${FEDERATION2_LINK_WITH_AUTO_EXPANDED_IMPORTS}
${FEDERATION2_LINK_WITH_AUTO_EXPANDED_IMPORTS_UPGRADED}
{
query: Query
}
Expand Down Expand Up @@ -148,7 +148,7 @@ test('update federation directive non-string arguments', () => {

expect(res.subgraphs?.get('s')?.toString()).toMatchString(`
schema
${FEDERATION2_LINK_WITH_AUTO_EXPANDED_IMPORTS}
${FEDERATION2_LINK_WITH_AUTO_EXPANDED_IMPORTS_UPGRADED}
{
query: Query
}
Expand Down Expand Up @@ -320,7 +320,7 @@ test("fully upgrades a schema with no @link directive", () => {
expect(printSchema(result.subgraphs!.get("subgraph")!.schema!)).toContain(
`schema
@link(url: "https://specs.apollo.dev/link/v1.0")
@link(url: "https://specs.apollo.dev/federation/v2.7", import: ["@key", "@requires", "@provides", "@external", "@tag", "@extends", "@shareable", "@inaccessible", "@override", "@composeDirective", "@interfaceObject"])
@link(url: "https://specs.apollo.dev/federation/v2.4", import: ["@key", "@requires", "@provides", "@external", "@tag", "@extends", "@shareable", "@inaccessible", "@override", "@composeDirective", "@interfaceObject"])
{
query: Query
}`
Expand Down
44 changes: 31 additions & 13 deletions internals-js/src/federation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ import {
FederationTypeName,
FEDERATION1_TYPES,
FEDERATION1_DIRECTIVES,
FederationSpecDefinition,
} from "./specs/federationSpec";
import { defaultPrintOptions, PrintOptions as PrintOptions, printSchema } from "./print";
import { createObjectTypeSpecification, createScalarTypeSpecification, createUnionTypeSpecification } from "./directiveAndTypeSpecification";
Expand All @@ -93,10 +94,18 @@ import {

const linkSpec = LINK_VERSIONS.latest();
const tagSpec = TAG_VERSIONS.latest();
const federationSpec = FEDERATION_VERSIONS.latest();
const federationSpec = (version?: FeatureVersion): FederationSpecDefinition => {
if (!version) return FEDERATION_VERSIONS.latest();
const spec = FEDERATION_VERSIONS.find(version);
assert(spec, `Federation spec version ${version} is not known`);
return spec;
};

// Some users rely on auto-expanding fed v1 graphs with fed v2 directives. While technically we should only expand @tag
// directive from v2 definitions, we will continue expanding other directives (up to v2.4) to ensure backwards compatibility.
const autoExpandedFederationSpec = FEDERATION_VERSIONS.find(new FeatureVersion(2, 4))!;
const autoExpandedFederationSpec = federationSpec(new FeatureVersion(2, 4));
clenfest marked this conversation as resolved.
Show resolved Hide resolved

const latestFederationSpec = federationSpec();

// We don't let user use this as a subgraph name. That allows us to use it in `query graphs` to name the source of roots
// in the "federated query graph" without worrying about conflict (see `FEDERATED_GRAPH_ROOT_SOURCE` in `querygraph.ts`).
Expand Down Expand Up @@ -601,7 +610,7 @@ export class FederationMetadata {
}

federationFeature(): CoreFeature | undefined {
return this.schema.coreFeatures?.getByIdentity(federationSpec.identity);
return this.schema.coreFeatures?.getByIdentity(latestFederationSpec.identity);
}

private externalTester(): ExternalTester {
Expand Down Expand Up @@ -663,7 +672,7 @@ export class FederationMetadata {
if (this.isFed2Schema()) {
const coreFeatures = this.schema.coreFeatures;
assert(coreFeatures, 'Schema should be a core schema');
const federationFeature = coreFeatures.getByIdentity(federationSpec.identity);
const federationFeature = coreFeatures.getByIdentity(latestFederationSpec.identity);
assert(federationFeature, 'Schema should have the federation feature');
return federationFeature.directiveNameInSchema(name);
} else {
Expand All @@ -685,7 +694,7 @@ export class FederationMetadata {
if (this.isFed2Schema()) {
const coreFeatures = this.schema.coreFeatures;
assert(coreFeatures, 'Schema should be a core schema');
const federationFeature = coreFeatures.getByIdentity(federationSpec.identity);
const federationFeature = coreFeatures.getByIdentity(latestFederationSpec.identity);
assert(federationFeature, 'Schema should have the federation feature');
return federationFeature.typeNameInSchema(name);
} else {
Expand Down Expand Up @@ -1190,7 +1199,7 @@ function findUnusedNamedForLinkDirective(schema: Schema): string | undefined {
}
}

export function setSchemaAsFed2Subgraph(schema: Schema) {
export function setSchemaAsFed2Subgraph(schema: Schema, useLatest: boolean = false) {
let core = schema.coreFeatures;
let spec: CoreSpecDefinition;
if (core) {
Expand All @@ -1209,11 +1218,16 @@ export function setSchemaAsFed2Subgraph(schema: Schema) {
assert(core, 'Schema should now be a core schema');
}

assert(!core.getByIdentity(federationSpec.identity), 'Schema already set as a federation subgraph');
const fedSpec = useLatest ? latestFederationSpec : autoExpandedFederationSpec;

assert(!core.getByIdentity(fedSpec.identity), 'Schema already set as a federation subgraph');
schema.schemaDefinition.applyDirective(
core.coreItself.nameInSchema,
{
url: federationSpec.url.toString(),
// note that there is a mismatch between url and directives that are imported. This is because
// we want to maintain backward compatibility for those who have already upgraded and we had been upgrading the url to
// latest, but we never automatically import directives that exist past 2.4
url: fedSpec.url.toString(),
import: autoExpandedFederationSpec.directiveSpecs().map((spec) => `@${spec.name}`),
}
);
Expand All @@ -1226,29 +1240,33 @@ export function setSchemaAsFed2Subgraph(schema: Schema) {
// This is the full @link declaration as added by `asFed2SubgraphDocument`. It's here primarily for uses by tests that print and match
// subgraph schema to avoid having to update 20+ tests every time we use a new directive or the order of import changes ...
export const FEDERATION2_LINK_WITH_FULL_IMPORTS = '@link(url: "https://specs.apollo.dev/federation/v2.7", import: ["@key", "@requires", "@provides", "@external", "@tag", "@extends", "@shareable", "@inaccessible", "@override", "@composeDirective", "@interfaceObject", "@authenticated", "@requiresScopes", "@policy", "@sourceAPI", "@sourceType", "@sourceField"])';
// This is the full @link declaration that is added when upgrading fed v1 subgraphs to v2 version. It should only be used by tests.

// This is the federation @link for tests that go through the asFed2SubgraphDocument function.
export const FEDERATION2_LINK_WITH_AUTO_EXPANDED_IMPORTS = '@link(url: "https://specs.apollo.dev/federation/v2.7", import: ["@key", "@requires", "@provides", "@external", "@tag", "@extends", "@shareable", "@inaccessible", "@override", "@composeDirective", "@interfaceObject"])';

// This is the federation @link for tests that go through the SchemaUpgrader.
export const FEDERATION2_LINK_WITH_AUTO_EXPANDED_IMPORTS_UPGRADED = '@link(url: "https://specs.apollo.dev/federation/v2.4", import: ["@key", "@requires", "@provides", "@external", "@tag", "@extends", "@shareable", "@inaccessible", "@override", "@composeDirective", "@interfaceObject"])';

/**
* Given a document that is assumed to _not_ be a fed2 schema (it does not have a `@link` to the federation spec),
* returns an equivalent document that `@link` to the last known federation spec.
*
* @param document - the document to "augment".
* @param options.addAsSchemaExtension - defines whethere the added `@link` is added as a schema extension (`extend schema`) or
* @param options.addAsSchemaExtension - defines whether the added `@link` is added as a schema extension (`extend schema`) or
* added to the schema definition. Defaults to `true` (added as an extension), as this mimics what we tends to write manually.
* @param options.includeAllImports - defines whether we should auto import ALL latest federation v2 directive definitions or include
* only limited set of directives (i.e. federation v2.4 definitions)
*/
export function asFed2SubgraphDocument(document: DocumentNode, options?: { addAsSchemaExtension?: boolean, includeAllImports?: boolean }): DocumentNode {
const importedDirectives = options?.includeAllImports ? federationSpec.directiveSpecs() : autoExpandedFederationSpec.directiveSpecs();
const importedDirectives = options?.includeAllImports ? latestFederationSpec.directiveSpecs() : autoExpandedFederationSpec.directiveSpecs();
const directiveToAdd: ConstDirectiveNode = ({
kind: Kind.DIRECTIVE,
name: { kind: Kind.NAME, value: linkDirectiveDefaultName },
arguments: [
{
kind: Kind.ARGUMENT,
name: { kind: Kind.NAME, value: 'url' },
value: { kind: Kind.STRING, value: federationSpec.url.toString() }
value: { kind: Kind.STRING, value: latestFederationSpec.url.toString() }
},
{
kind: Kind.ARGUMENT,
Expand Down Expand Up @@ -1374,7 +1392,7 @@ export function buildSubgraph(

export function newEmptyFederation2Schema(config?: SchemaConfig): Schema {
const schema = new Schema(new FederationBlueprint(true), config);
setSchemaAsFed2Subgraph(schema);
setSchemaAsFed2Subgraph(schema, true);
return schema;
}

Expand Down
14 changes: 9 additions & 5 deletions query-planner-js/src/__tests__/testHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,17 @@
expect.addSnapshotSerializer(queryPlanSerializer);

export function composeAndCreatePlanner(...services: ServiceDefinition[]): [Schema, QueryPlanner] {
return composeAndCreatePlannerWithOptions(services, {});
return composeAndCreatePlannerWithOptions(services, {}, false);
}

export function composeAndCreatePlannerWithOptions(services: ServiceDefinition[], config: QueryPlannerConfig): [Schema, QueryPlanner] {
const compositionResults = composeServices(
services.map((s) => ({ ...s, typeDefs: asFed2SubgraphDocument(s.typeDefs) }))
);
export function composeFed2SubgraphsAndCreatePlanner(...services: ServiceDefinition[]): [Schema, QueryPlanner] {
return composeAndCreatePlannerWithOptions(services, {}, true);

Check warning on line 13 in query-planner-js/src/__tests__/testHelper.ts

View check run for this annotation

Codecov / codecov/patch

query-planner-js/src/__tests__/testHelper.ts#L13

Added line #L13 was not covered by tests
}

export function composeAndCreatePlannerWithOptions(services: ServiceDefinition[], config: QueryPlannerConfig, isFed2Subgraph: boolean = false): [Schema, QueryPlanner] {
const updatedServices = isFed2Subgraph ? services : services.map((s) => ({ ...s, typeDefs: asFed2SubgraphDocument(s.typeDefs) }));

const compositionResults = composeServices(updatedServices);
expect(compositionResults.errors).toBeUndefined();
return [
compositionResults.schema!.toAPISchema(),
Expand Down