-
Notifications
You must be signed in to change notification settings - Fork 60
Main actor isolation #146
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
Open
watkyn
wants to merge
26
commits into
master
Choose a base branch
from
main-actor-isolation
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Main actor isolation #146
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
8f22710
AI generated removal of the big sur compatibility logic. Needs vetted…
watkyn bcb3a12
big-sur story/JPCFM-5531 Add minor changes to update minimum supporte…
jjpritzl 5efa226
big-sur story/JPCFM-5531 Remove swiftlint disable call due to reduced…
jjpritzl 93ed2be
big-sur story/JPCFM-5531 Add Copilot suggestion for generating test r…
jjpritzl dc8df63
big-sur story/JPCFM-5531 Add Copilot refactor to loadExecutable function
jjpritzl 343399a
big-sur story/JPCFM-5531 Remove code coverage addition
jjpritzl 1e0027e
added detailed plan for getting to swift 6 in stages
watkyn 0a14250
Initial plan
Copilot 6741832
Stage 2: Convert NetworkAuthManager from actor to class
Copilot 9256bd0
Stage 3a: Remove DispatchQueue.main.async wrappers
Copilot 7b77113
Stage 3b: Convert UploadManager to async throws
Copilot a64ed56
Stage 3c: Convert Model.loadExecutable to direct return
Copilot 542a287
Stage 3d: Convert TCCProfileImporter to direct return
Copilot f38e4fc
Stage 4: Add @concurrent for background I/O
Copilot 23583a4
Stage 5: Enable Swift 6 language mode
Copilot c24c1e9
create-separate story/JPCFM-5564 Fix failing build and tests
jjpritzl 24d36a5
create-separate story/JPCFM-5564 Fix code signing mistake
jjpritzl cf78ace
create-separate story/JPCFM-5564 Fix bad syntax in build settings
jjpritzl 60390d5
create-separate story/JPCFM-5564 Fix bad syntax in project settings f…
jjpritzl 2f85f1b
create-separate story/JPCFM-5564 Try to fix failing tests on GH PR
jjpritzl 2ed25d9
create-separate story/JPCFM-5564 Try to fix unit test check issue
jjpritzl 83f107d
create-separate story/JPCFM-5564 Make actual change with the plan to …
jjpritzl b28109d
create-separate story/JPCFM-5564 merge main and fix merge conflicts
jjpritzl b165a85
Merge branch 'master' of github.com:jamf/PPPC-Utility into copilot/cr…
watkyn b3db45b
removed some uneeded concurrency annotations
watkyn 113fcad
removed a couple more spots
watkyn 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
Oops, something went wrong.
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.
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.
The app target is switched to
SWIFT_VERSION = 6.0but the test target remains on Swift 5.0. This can allow concurrency issues to slip through tests (warnings vs errors) and makes compiler behavior differ between targets. If the goal is full strict concurrency enforcement, align the test target’s Swift version with the app target.