This repository was archived by the owner on Sep 15, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Migrate to Swift 5 #232
Merged
Merged
Migrate to Swift 5 #232
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
64c8614
Merge branch 'develop' into issue/79-migrate-swift-5
mindgraffiti 6697c8f
Update shared pod schemes to 11.3
mindgraffiti c932e37
`pod update` to get the latest acceptable changes for WP pods
mindgraffiti d1024a8
`pod update` to get latest internal pod updates
mindgraffiti 8a39e55
Bump dependency pod versions in podspec
mindgraffiti 06e28dc
Bump podspec version
mindgraffiti b668dfe
Update OHHTTPStubs pod to latest version (8.0 and 9.0 support Swift 5)
mindgraffiti b061d25
Update checksum for OHHTTPStubs
mindgraffiti 78dc4c5
Remove `OH` prefix from OHHTTPStubs classes, per 9.0 update
mindgraffiti 643e45a
Update unit tests framework to use Swift 5
mindgraffiti caadb96
Migrate main project to Swift 5
mindgraffiti 3682253
Update code to Swift 5
mindgraffiti 34c1a75
Enable base internationalization
mindgraffiti e70f44e
Update podspec swift version requirement to 5.0
mindgraffiti cd056a1
Bug fix #149 - do not output social login to logs
mindgraffiti ef969b0
Merge branch 'develop' into issue/79-migrate-swift-5
mindgraffiti 1a219b3
Update podspec to 4.6.0-beta.6
mindgraffiti 08ab35a
Delete code migration substitutions and use code that is easier to read
mindgraffiti b254c06
Delete generated code substitution and use easier to read code
mindgraffiti File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -325,8 +325,7 @@ open class WordPressOrgXMLRPCValidator: NSObject { | |
| guard let data = data, | ||
| let responseString = String(data: data, encoding: String.Encoding.utf8), | ||
| let parser = WordPressRSDParser(xmlString: responseString), | ||
| let endpoint = (try? parser.parsedEndpoint()), | ||
| let xmlrpc = endpoint, | ||
| let xmlrpc = try? parser.parsedEndpoint(), | ||
| let xmlrpcURL = URL(string: xmlrpc) | ||
| else { | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. maybe the whole guard statement can be simplified like so?
|
||
| failure(WordPressOrgXMLRPCValidatorError.invalid as NSError) | ||
|
|
||
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
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.