Update dependencies for GatOS#69
Open
Hombre-x wants to merge 4 commits intotypelevel:mainfrom
Open
Conversation
armanbilge
reviewed
Apr 28, 2026
| ThisBuild / startYear := Some(2024) | ||
| ThisBuild / licenses := Seq(License.Apache2) | ||
| ThisBuild / tlJdkRelease := Some(11) | ||
| ThisBuild / tlJdkRelease := Some(17) |
Member
There was a problem hiding this comment.
Is it necessary to bump this one for some reason? We should definitely do it if it allows us to use some new features. Otherwise, it is just dropping support for old Java versions. In fact, I wonder why it is 11 in the first place?
Comment on lines
9
to
10
| ThisBuild / developers := List( | ||
| tlGitHubDev("ChristopherDavenport", "Christopher Davenport"), |
Comment on lines
+28
to
+37
| "org.typelevel" %% "cats-core" % "2.13.0", | ||
| "org.typelevel" %% "alleycats-core" % "2.13.0", | ||
| "org.typelevel" %% "cats-effect" % "3.7.0", | ||
| "co.fs2" %% "fs2-core" % "3.13.0", | ||
| "co.fs2" %% "fs2-io" % "3.13.0", | ||
| "co.fs2" %% "fs2-scodec" % "3.13.0", | ||
| "org.scodec" %% "scodec-bits" % "1.2.4", | ||
| "org.scodec" %% "scodec-core" % (if (scalaVersion.value.startsWith("2.")) | ||
| "1.11.10" | ||
| else "2.3.0"), | ||
| else "2.3.3"), |
Member
There was a problem hiding this comment.
Surprised about some of these dependencies, are they actually used in the main library? e.g. scodec-core, fs2-scodec, and alleycats.
I see some are used in the examples.
armanbilge
reviewed
Apr 28, 2026
| "org.typelevel" %% "weaver-cats" % "0.12.0" % Test, | ||
| "org.typelevel" %% "weaver-scalacheck" % "0.12.0" % Test | ||
| ), | ||
| mimaPreviousArtifacts := Set() |
Member
There was a problem hiding this comment.
Should remove this line! This prevents compatibility checking.
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.
Updates SBT, Scala JS, Sacala Native, and most libraries to the latests version!