Merged
Conversation
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.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@theguild/federation-composition@0.21.0
Minor Changes
#215
5edf421Thanks @kamilkisiela! - Enforce correct placement of auth directives. A new validation rule (AUTH_REQUIREMENTS_APPLIED_ON_INTERFACE) rejects any attempt to put these directives on interfaces, interface fields or interface objects.Add transitive-auth requirements checking. A new rule verifies that any field using
@requiresspecifies at least the auth requirements of the fields it selects. If a field doesn't carry forward the@authenticated,@requiresScopesor@policyrequirements of its dependencies, composition fails with aMISSING_TRANSITIVE_AUTH_REQUIREMENTSerror.Propagate auth requirements through interface hierarchies. Interface types and fields now inherit
@authenticated,@requiresScopesand@policyfrom the object types that implement them.#215
5edf421Thanks @kamilkisiela! - Disallowed using@coston interfaces - you can no longer place@coston an interface type, its fields, or field arguments. Composition now fails with a clear error instead of accepting it silently.The
@listSizedirective now validates thatsizedFieldspoint to list fields, not integer counters (e.g., useedgesinstead ofcount).Added validation for
slicingArgumentsin@listSize. Only arguments that exist in all subgraphs are kept, invalid ones trigger an error.Patch Changes
5edf421Thanks @kamilkisiela! - TheEXTERNAL_MISSING_ON_BASErule has been updated to handle@interfaceObjectcorner‑cases, like@externalfields on object types, but provided by interface objects, were triggering false positives.