-
-
Notifications
You must be signed in to change notification settings - Fork 4
3.0.0 #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
3.0.0 #148
Changes from all commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
4fdbf41
Add SwiftData integration (ModelContainer dependency + ModelState)
claude 549c527
Raise platform floors to iOS 17 / macOS 14 and pin Swift 6 language mode
claude f5c8719
CI: treat warnings as errors to enforce strict Swift 6 cleanliness
claude acb5c0d
Adopt explicit existentials and enable the ExistentialAny upcoming fe…
claude 79688e3
Migrate reactivity from ObservableObject to the Observation framework
claude 4ee984a
Fix Observation migration leftovers on Apple platforms
claude a3fbb09
Docs: add AppState 3.0 upgrade guide
claude 21d7fbf
Docs: translate v3 guides and propagate notifyChange across all langu…
claude bab8ef9
Add Observation reactivity test for the @Observable bridge
claude f69fbfb
Add fledge task runner and spec-sync setup (application + swiftdata s…
claude 72b2f6c
spec-sync: author the property-wrappers spec for v3
claude 29c889e
Polish: align ModelState logging and doc wording with house style
claude db88f9a
Address review: ModelState API, observation isolation, scoped strict CI
claude e6f50f0
Keep observation anchor nonisolated; document the concurrency invariant
claude 9104788
Docs/specs: sync ModelState references to read-only models / deleteAll()
claude faf5e33
Docs: justify the @Observable migration; final spec sync
claude 50465e6
Merge pull request #1 from corvid-agent/claude/swiftdata-appstate-int…
corvid-agent 060c649
Fix: address PR #147 review findings
0xLeif 4dc85a7
Add: six SwiftUI example packages + Examples CI
0xLeif 811bc75
Test: drive example SwiftUI to 100% coverage with ViewInspector
0xLeif 7087ae2
Test: expand SwiftData + Observation (3.0.0) test coverage
0xLeif 1f0ce52
Add: runnable demo app, advanced SwiftData example, adversarial test …
0xLeif 31532a3
Fix: correctness bugs surfaced by the adversarial suite
0xLeif 23ad72a
Test: add XCUITest UI suite for the demo app
0xLeif df0ac7c
Add: non-blocking background SwiftData + responsive stress UI
0xLeif 2a93664
CI: fix cross-platform + SDK-version build failures
0xLeif 83c5bd0
CI: guard adversarial suite to Apple platforms; fix toolchain mismatch
0xLeif 330cb7c
Refactor: make Keychain checked-Sendable (drop @unchecked)
0xLeif 40f854e
Remove examples and ViewInspector to keep 3.0.0 a lean library
0xLeif a8477fc
Docs + observation: finalize 3.0 docs; single observation path for State
0xLeif cbf5841
Docs: regenerate de/es/fr/hi/pt/ru/zh-CN translations to match the 3.…
0xLeif 2cfca62
CI: fix DocC Pages deploy to use latest-stable Xcode on macos-15
0xLeif bce4628
Address #148 review: ModelState strict throwing API + main-thread dep…
0xLeif 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,12 @@ | ||
| .DS_Store | ||
| /.build | ||
| .build/ | ||
| /Packages | ||
| xcuserdata/ | ||
| DerivedData/ | ||
| .swiftpm/ | ||
| .netrc | ||
| Package.resolved | ||
| Package.resolved | ||
| # xcodegen-generated demo project + derived data | ||
| Examples/DemoApp/*.xcodeproj/ | ||
| Examples/DemoApp/.build-dd/ |
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,3 @@ | ||
| backup-3x/ | ||
| config.local.toml | ||
| hashes.json |
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,12 @@ | ||
| # spec-sync v4 configuration | ||
| # Docs: https://github.com/CorvidLabs/spec-sync | ||
|
|
||
| specs_dir = "specs" | ||
| source_dirs = ["Sources"] | ||
| exclude_dirs = [] | ||
| exclude_patterns = [] | ||
| required_sections = ["Purpose", "Public API", "Invariants", "Behavioral Examples", "Error Cases", "Dependencies", "Change Log"] | ||
| enforcement = "strict" | ||
|
|
||
| [lifecycle] | ||
| track_history = false |
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,7 @@ | ||
| [registry] | ||
| name = "AppState" | ||
|
|
||
| [specs] | ||
| application = "specs/application/application.spec.md" | ||
| property-wrappers = "specs/property-wrappers/property-wrappers.spec.md" | ||
| swiftdata = "specs/swiftdata/swiftdata.spec.md" |
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 @@ | ||
| 4.3.1 |
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.
Uh oh!
There was an error while loading. Please reload this page.