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

SwiftTool: refine wording in func *UpdateRepository #5836

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

MaxDesiatov
Copy link
Contributor

@MaxDesiatov MaxDesiatov commented Oct 24, 2022

Motivation:

Currently, when fetching updates from a repository, a diagnostic message "Updating" is printed, which is not clear enough. It's not inherently obvious whether this update is local or remote, whether it requires networking access etc.

Modifications:

"Updating" is replaced with "Checking for updates from", to indicate that remote access is required for this repository update.

Result:

It's more clear what exactly SwiftPM is doing with the expanded diagnostics messages.

@MaxDesiatov
Copy link
Contributor Author

@swift-ci please smoke test

@@ -117,11 +117,11 @@ private class ToolWorkspaceDelegate: WorkspaceDelegate {
}

func willUpdateRepository(package: PackageIdentity, repository url: String) {
self.outputHandler("Updating \(url)", false)
self.outputHandler("Fetching updates from \(url)", false)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe "Checking for updates from..." @neonichu @abertelrud opinions?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This wording sounds good to me since we don't know whether there will be any. Ideally we should later add another callback for if there actually are any, but that's a later PR.

Verified

This commit was signed with the committer’s verified signature. The key has expired.
MaxDesiatov Max Desiatov
@MaxDesiatov MaxDesiatov force-pushed the maxd/fetching-updates branch from c87bd55 to 07298d0 Compare November 2, 2022 13:57
@MaxDesiatov
Copy link
Contributor Author

@swift-ci please smoke test

@MaxDesiatov MaxDesiatov requested a review from tomerd November 2, 2022 19:39
}

func didUpdateRepository(package: PackageIdentity, repository url: String, duration: DispatchTimeInterval) {
self.outputHandler("Updated \(url) (\(duration.descriptionInSeconds))", false)
self.outputHandler("Checked for updates from \(url) (\(duration.descriptionInSeconds))", false)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this should remain "Updated", as we may have updated. We could / should modify this delegate to include the modified: Bool argument, but not sure how easy or hard that would be

@tomerd
Copy link
Contributor

tomerd commented Dec 21, 2022

@MaxDesiatov do we want to push this one over the finish line? any open questions?

@MaxDesiatov
Copy link
Contributor Author

Thanks for the ping, I'll try to address feedback on this tomorrow.

@neonichu
Copy link
Contributor

@MaxDesiatov could you update this one?

@MaxDesiatov
Copy link
Contributor Author

MaxDesiatov commented Jan 17, 2023

Sorry, as discussed offline there are a few more changes that can be done on this front. I should've moved it to a draft state.

@MaxDesiatov MaxDesiatov added the WIP Work in progress label Jan 17, 2023
@neonichu neonichu marked this pull request as draft January 17, 2023 09:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
WIP Work in progress
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants