Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR drops support for iOS 15 and establishes iOS 16 as the new minimum requirement for ReactiveCollectionsKit. The changes include updating project configurations, dependency manifests, documentation, and modernizing iOS 16+ API usage.
Key changes:
- Updated minimum iOS deployment target from 15.0 to 16.x across all project files
- Modernized Xcode project files to use object version 90 (from 77)
- Migrated example code to use iOS 16+ collection view layout APIs
Reviewed changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
| ReactiveCollectionsKit.xcodeproj/project.pbxproj | Updated Xcode project format to version 90, set iOS deployment target to 16.6, and updated LastUpgradeCheck to 2610 |
| README.md | Updated minimum iOS requirement from 15.0+ to 16.0+ |
| Package.swift | Changed platform requirement from iOS(.v15) to iOS(.v16) |
| Example/Sources/Grid/GridViewController.swift | Migrated to iOS 16+ API using repeatingSubitem parameter and adjusted item height dimension |
| Example/ExampleApp.xcodeproj/project.pbxproj | Updated Xcode project format to version 90 and set iOS deployment target to 16.6 |
| CHANGELOG.md | Added entry documenting the iOS 15 support drop |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Drop support for iOS 15. Minimum iOS 16 now required.
Also update Xcode 26 settings.