Release version 0.4.1 - #138
Merged
Merged
Conversation
Final release of this standalone plugin. Restricts the ably-cocoa dependency to 1.2.59 ... 1.2.62, the ably-cocoa versions compatible with this plugin, per "Release coordination" item 1 of ably/ably-cocoa#2222. Subsequent LiveObjects releases ship from the ably-cocoa repository (ably/ably-cocoa#2243, #137).
|
Important Review available on request
Reviews should be triggered manually for repositories with fewer than 10 stars. Select Trigger review above or comment ⚙️ Run configurationConfiguration used: Repository UI Review profile: CHILL Plan: Pro Plus Run ID: Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
maratal
approved these changes
Aug 17, 2026
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.
This is the final release of this package — it implements "Release coordination" item 1 of ably/ably-cocoa#2222: as of ably-cocoa 1.3.0, the LiveObjects plugin is developed, versioned and released from the ably-cocoa repository as the
AblyLiveObjectsproduct of the ably-cocoa package (ably/ably-cocoa#2243). This repository will be archived after the ably-cocoa 1.3.0 release, per that coordination plan. Companion to the README deprecation notice in #137.Changes
Package.swift: restrict the ably-cocoa dependency fromfrom: "1.2.59"to the closed range"1.2.59" ... "1.2.62"— the minimum and maximum ably-cocoa versions compatible with this standalone plugin. The plugin must not resolve against any other ably-cocoa version.Package.resolved/ workspacePackage.resolved: pin updated to ably-cocoa 1.2.62 (the maximum of the range).CHANGELOG.md: 0.4.1 entry noting this is the final release and explaining the dependency restriction.Why cap the dependency (from ably/ably-cocoa#2222, "Release coordination")
Without the cap, users who bump ably-cocoa to 1.3.0 while still depending on this plugin would hit conflicting-target errors at package-graph load (
multiple packages declare targets with a conflicting name: 'AblyLiveObjects'); with it, they get a clear, actionable version conflict instead.Verification
swift run BuildTool test-library --platform macOS --only-unit-tests).swift run BuildTool lint).