typelevel / cats

Lightweight, modular, and extensible library for functional programming.
https://typelevel.org/cats/
Other
5.26k stars 1.21k forks source link

Update sbt-typelevel, sbt-typelevel-site to 0.7.3 #4651

Closed typelevel-steward[bot] closed 2 months ago

typelevel-steward[bot] commented 2 months ago

About this PR

📦 Updates

📜 GitHub Release Notes - Version Diff

Usage

Please merge!

I'll automatically update this PR to resolve conflicts as long as you don't change it yourself.

If you'd like to skip this version, you can just close this PR. If you have any feedback, just mention me in the comments below.

Configure Scala Steward for your repository with a .scala-steward.conf file.

Have a fantastic day writing Scala!

🔍 Files still referring to the old version number The following files still refer to the old version number (0.7.2). You might want to review and update them manually. ``` CHANGES.md ```
⚙ Adjust future updates Add this to your `.scala-steward.conf` file to ignore future updates of this dependency: ``` updates.ignore = [ { groupId = "org.typelevel" } ] ``` Or, add this to slow down future updates of this dependency: ``` dependencyOverrides = [{ pullRequests = { frequency = "30 days" }, dependency = { groupId = "org.typelevel" } }] ```

labels: sbt-plugin-update, early-semver-minor, semver-spec-patch, version-scheme:early-semver, old-version-remains, commit-count:1

satorg commented 2 months ago

Looks like this update breaks the project entirely – SBT cannot even start:

[error] java.lang.RuntimeException: found version conflict(s) in library dependencies; some are suspected to be binary incompatible:
[error] 
[error]     * com.lihaoyi:geny_2.12:1.1.0 (early-semver) is selected over 0.6.5
[error]         +- com.lihaoyi:upickle-core_2.12:3.3.1                (depends on 1.1.0)
[error]         +- org.scalameta:fastparse-v2_2.12:2.3.1              (depends on 0.6.5)
mzuehlke commented 2 months ago

It's the same problem as at fs2, the same fix should work: https://github.com/typelevel/fs2/pull/3471

satorg commented 2 months ago

Thank you @mzuehlke , @danicheg !