Skip to content

Bump Scala patch versions #1535

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .evergreen/.evg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1857,11 +1857,11 @@ axes:
- id: "2.12"
display_name: "Scala 2.12"
variables:
SCALA: "2.12.15"
SCALA: "2.12.20"
- id: "2.13"
display_name: "Scala 2.13"
variables:
SCALA: "2.13.6"
SCALA: "2.13.15"

# Choice of MongoDB storage engine
- id: storage-engine
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ configure(scalaProjects) {
"-feature",
"-unchecked",
"-language:reflectiveCalls",
"-Wconf:cat=deprecation:ws,any:e",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Any reason why we're removing the previous flag to report other warnings as error ?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For some reason that now turned all warnings into errors - so that caused the compile to fail. Where as in 2.13.6 it didnt.

"-Wconf:cat=deprecation:ws",
"-Wconf:msg=While parsing annotations in:silent",
"-Xlint:strict-unsealed-patmat"
]
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@

org.gradle.daemon=true
org.gradle.jvmargs=-Duser.country=US -Duser.language=en
scalaVersions=2.11.12,2.12.15,2.13.6
defaultScalaVersions=2.13.6
scalaVersions=2.11.12,2.12.20,2.13.15
defaultScalaVersions=2.13.15
runOnceTasks=clean,release
org.gradle.java.installations.auto-download=false
org.gradle.java.installations.fromEnv=JDK8,JDK11,JDK17,JDK21,JDK21_GRAALVM