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

[Traits] Disallow disabling default traits of a package without traits #8326

Merged
merged 1 commit into from
Mar 6, 2025

Conversation

FranzBusch
Copy link
Member

@FranzBusch FranzBusch commented Mar 4, 2025

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.

@FranzBusch
Copy link
Member Author

@swift-ci please test

Copy link

@simonjbeaumont simonjbeaumont left a 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.

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?

Copy link
Contributor

@bripeticca bripeticca left a 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

@FranzBusch FranzBusch force-pushed the fb-disable-default-traits-on-empty-traits branch from a92d02d to 5e9eca4 Compare March 5, 2025 17:40
@FranzBusch
Copy link
Member Author

@swift-ci please test

Copy link
Contributor

@bripeticca bripeticca left a 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! :)

@FranzBusch FranzBusch force-pushed the fb-disable-default-traits-on-empty-traits branch from 5e9eca4 to fb661c0 Compare March 5, 2025 19:36
@FranzBusch
Copy link
Member Author

@swift-ci please test

@FranzBusch
Copy link
Member Author

@swift-ci test windows

@FranzBusch FranzBusch enabled auto-merge (squash) March 5, 2025 19:37
# 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.
@FranzBusch FranzBusch force-pushed the fb-disable-default-traits-on-empty-traits branch from fb661c0 to 90bf5ca Compare March 6, 2025 07:33
@FranzBusch
Copy link
Member Author

@swift-ci please test

@FranzBusch
Copy link
Member Author

@swift-ci please test Windows

@FranzBusch
Copy link
Member Author

@swift-ci please test windows

@FranzBusch FranzBusch disabled auto-merge March 6, 2025 15:12
@FranzBusch FranzBusch merged commit 60b4913 into main Mar 6, 2025
5 checks passed
@FranzBusch FranzBusch deleted the fb-disable-default-traits-on-empty-traits branch March 6, 2025 16:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants