-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
[Traits] Disallow disabling default traits of a package without traits #8326
Conversation
@swift-ci please test |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Drive-by from to add a big +1 and thank you for this patch. This will make traits even more of a useful addition to the package ecosystem and unlock the ability to retrofit good API segregation for important packages in the ecosystem that would like to be more modular, but predate traits. ❤️
@@ -179,6 +184,10 @@ extension ModuleError: CustomStringConvertible { | |||
return """ | |||
Trait '"\(trait)"' is not declared by package '\(package)'. | |||
""" | |||
case .disablingDefaultTraitsOnEmptyTraits(let parentPackage, let packageName): | |||
return """ | |||
Disabled default traits by package '\(parentPackage)' on package '\(packageName)' that declares no traits. This is prohibited to allow packages to adopt traits initially without causing. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This wording on this error message sounds incomplete?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me, just curious about about the error message for disablingDefaultTraitsOnEmptyTraits
- like @simonjbeaumont mentioned it seems like it's incomplete
a92d02d
to
5e9eca4
Compare
@swift-ci please test |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good to me! :)
5e9eca4
to
fb661c0
Compare
@swift-ci please test |
@swift-ci test windows |
# Motivation Traits are a great way for package authors to offer customization of the functionality they provide. However, moving existing API behind a trait is considered an API breaking change since packages that depend on them might have disabled all default traits. This makes it almost impossible for existing packages to adopt traits for existing code. # Modifications This PR disallows disabling the default traits for packages with no traits at all. This allows package authors to move existing API behind traits once since no consumer can disable the default traits before. # Result With this change we create a migration path for existing packages to traits without them breaking their APIs.
fb661c0
to
90bf5ca
Compare
@swift-ci please test |
@swift-ci please test Windows |
@swift-ci please test windows |
Motivation
Traits are a great way for package authors to offer customization of the functionality they provide. However, moving existing API behind a trait is considered an API breaking change since packages that depend on them might have disabled all default traits. This makes it almost impossible for existing packages to adopt traits for existing code.
Modifications
This PR disallows disabling the default traits for packages with no traits at all. This allows package authors to move existing API behind traits once since no consumer can disable the default traits before.
Result
With this change we create a migration path for existing packages to traits without them breaking their APIs.