Cocoapods Enters Maintain Mode, But Will Still Release More Than Twice a Year to Keep Up with Xcode Updates

One evening, while scrolling through x (formerly Twitter), I stumbled upon a post retweeted by Orta Therox announcing that Cocoapods, after 13 years, has entered maintain mode.

cocoapods announcement: enter maintain mode

Key Points

  • Ensure security issues in the mainline are addressed.
  • Release at least twice a year to keep up with Xcode updates.
  • Review support requests every six months.
  • Maintain website infrastructure operations.
  • Support limitations: Will not actively follow up on GitHub issues as a support channel, nor commit to handling PRs for new features or application layer errors.
  • Consider turning the Specs repository to read-only to simplify security management and maintain existing builds in the long run.
  • For projects like React Native, which primarily acquire libraries via npm and not Trunk, such changes may be sufficient.

Reasoning

Since Apple introduced the Swift Package Manager (SPM), Cocoapods has faced significant competitive pressure, impacting its development momentum. With SPM being officially supported by Apple and integrated directly into its development environment, competing with Apple in the core area of package management tools is disadvantageous. Apple’s widespread influence and deep integration with its products have made developers lean towards choosing SPM as their dependency management tool, directly affecting Cocoapods’ market share and related development investments. Therefore, facing competition from Apple, Cocoapods needs to adjust its strategy to adapt to the evolving development ecosystem.

Impact on Pods

Since I have several older iOS projects underway and numerous interdependent modules using pods for management at work, it’s inevitable to start supporting SPM. Considering the upcoming changes:

  • Xcode 16 is expected to release in September 2024.
  • iOS 18 is likely to release in September 2024.
  • Swift 6, although optional, will appear with Xcode 16, with Swift 5.10 being the last of the version 5 series.

I anticipate that the development community will adapt to these changes by around early 2025. Therefore, I plan to initiate support for SPM starting in 2025.

Orta Therox’s Article on Cocoapods Entering Maintain Mode

Updated: