Bump ordo-one/equatable from 1.0.10 to 1.4.1 - #159
Merged
Conversation
equatable 1.0.10 constrains swift-syntax to 600.0.0..<602.0.0, which conflicts with consumer packages that require swift-syntax 602+. equatable 1.4.1 widens the range to 600.0.0..<604.0.0, unblocking resolution in shared dependency graphs. Closes #151 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
There was a problem hiding this comment.
Pull request overview
This PR updates the Swift Package dependency graph by bumping ordo-one/equatable to a newer pinned release in order to widen its swift-syntax compatibility range and avoid SwiftPM resolution conflicts for downstream consumers.
Changes:
- Bumped
ordo-one/equatablefromexact: "1.0.10"toexact: "1.4.1"inPackage.swift. - Regenerated
Package.resolvedto reflect the updatedequatablepin (and resulting resolution).
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| Package.swift | Updates the pinned equatable dependency version to widen swift-syntax compatibility for consumers. |
| Package.resolved | Regenerated lockfile reflecting equatable at 1.4.1 (with swift-syntax resolving to 600.0.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
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.
Summary
Bump the
ordo-one/equatabledependency fromexact: "1.0.10"toexact: "1.4.1".equatable1.0.10 constrainsswift-syntaxto600.0.0 ..< 602.0.0. Consumers that also depend on packages requiringswift-syntax602+ (e.g.mlx-swift-lm3.31.4) hit a hard SwiftPM resolution conflict.equatable1.4.1 widens the range to600.0.0 ..< 604.0.0, which overlaps both sides and unblocks resolution.Package.swift:exact: "1.0.10"→exact: "1.4.1"Package.resolved: regenerated (equatable pinned at 1.4.1)Closes #151
Validation
swift package resolve— resolves cleanly;equatableat 1.4.1,swift-syntaxat 600.0.1swift build— build complete, no new warnings from the bumpOSS readiness