-
-
Notifications
You must be signed in to change notification settings - Fork 195
Add legacy session-aware opt-out mode #148
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
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
e827aa9
Add unit tests to macOS app example
cameroncooke e3ba013
Add session-aware opt-out
cameroncooke 62241d3
Update tools to support session-aware opt-out mode
cameroncooke f97c866
Improve session-defaults schema desc
cameroncooke ef92f24
Update README
cameroncooke 2086d3c
Fix failing test
cameroncooke 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| // | ||
| // MCPTestTests.swift | ||
| // MCPTestTests | ||
| // | ||
| // Created by Cameron on 15/12/2025. | ||
| // | ||
|
|
||
| import Testing | ||
|
|
||
| struct MCPTestTests { | ||
|
|
||
| @Test func example() async throws { | ||
| // Write your test here and use APIs like `#expect(...)` to check expected conditions. | ||
| } | ||
|
|
||
| } |
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.
Bug: Example project test target requires non-existent macOS 26
The newly added
MCPTestTeststest target hasMACOSX_DEPLOYMENT_TARGET = 26.0in both Debug and Release configurations. macOS 26.0 doesn't exist - current macOS versions are around 14-15 (Sonoma/Sequoia). The main app target correctly uses15.2. This configuration will prevent anyone from building the example project's test target on any real macOS system, as the specified deployment target is invalid.Additional Locations (1)
example_projects/macOS/MCPTest.xcodeproj/project.pbxproj#L403-L404There 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.
In fact macOS 26 does exist it's just before your training data cut-off, it was released in July 2025, apple decided to rebrand to use years so in 2025 Apple released macOS 26, in 2026 they will release macOS 27 and so on.