Skip to content

Commit

Permalink
Patch 2.2.2 (#491)
Browse files Browse the repository at this point in the history
  • Loading branch information
cchantep authored Aug 6, 2024
1 parent c02e3a3 commit c81cf6b
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 29 deletions.
36 changes: 18 additions & 18 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ jobs:
play_json_version: 2.8.1
variant: Play 2.8, WS 2.1

common_scala31_play28_jdk11:
common_scala3_play29_jdk11:
docker:
- image: cimg/openjdk:11.0

Expand All @@ -296,11 +296,11 @@ jobs:
- test_suite:
java_version: openjdk11
modules: core vfs play
scala_version: 3.2.1
scala_version: 3.4.2
ws_version: 2.2.0-M1+68-da80b259-SNAPSHOT
play_version: 2.8.11
play_json_version: 2.10.0-RC6
variant: Play 2.8, WS 2.8
play_version: 2.9.5
play_json_version: 2.10.6
variant: Play 2.9, WS 2.8

# --- Integration: S3/Google --- #

Expand Down Expand Up @@ -330,7 +330,7 @@ jobs:
play_version: 2.7.1
variant: Play 2.7, WS 2.0

int_scala31_play28_jdk11:
int_scala3_play29_jdk11:
docker:
- image: cimg/openjdk:11.0

Expand All @@ -340,11 +340,11 @@ jobs:
- test_suite:
java_version: openjdk11
modules: s3 google
scala_version: 3.2.1
scala_version: 3.4.2
ws_version: 2.2.0-M1+68-da80b259-SNAPSHOT
play_version: 2.8.11
play_json_version: 2.10.0-RC6
variant: Play 2.8, WS 2.8
play_version: 2.9.5
play_json_version: 2.10.6
variant: Play 2.9, WS 2.8

# --- Master jobs --- #

Expand Down Expand Up @@ -384,11 +384,11 @@ jobs:
scala_versions: 2.13.14

- publish_snapshots:
release_suffix: play28
release_suffix: play29
ws_version: 2.2.0-M1+68-da80b259-SNAPSHOT
play_version: 2.8.11
play_json_version: 2.10.0-RC6
scala_versions: 3.2.1
play_version: 2.9.5
play_json_version: 2.10.6
scala_versions: 3.4.2
# TODO: play29

- publish_snapshots:
Expand Down Expand Up @@ -427,7 +427,7 @@ workflows:
- common_scala211_jdk8
- common_scala212_play27_jdk8
- common_scala213_play28_jdk9
- common_scala31_play28_jdk11
- common_scala3_play29_jdk11

# S3/Google
- int_scala211_jdk8:
Expand All @@ -437,9 +437,9 @@ workflows:
requires:
- common_scala212_play27_jdk8
- int_scala211_jdk8
- int_scala31_play28_jdk11:
- int_scala3_play29_jdk11:
requires:
- common_scala31_play28_jdk11
- common_scala3_play29_jdk11
- int_scala212_play27_jdk8

# Master
Expand All @@ -451,7 +451,7 @@ workflows:
requires:
- int_scala211_jdk8
- int_scala212_play27_jdk8
- int_scala31_play28_jdk11
- int_scala3_play29_jdk11

- examples:
filters:
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ThisBuild / crossScalaVersions := Seq(
"2.11.12",
scalaVersion.value,
"2.13.14",
"3.2.1"
"3.4.2"
)

lazy val core = project
Expand Down
1 change: 0 additions & 1 deletion core/src/main/scala/Streams.scala
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ private[benji] object Streams {
OutHandler
}
import akka.stream.{ Attributes, FlowShape, Inlet, Outlet }
import akka.util.ByteString

private class ChunkOfAtMost(limit: Int)
extends GraphStage[FlowShape[ByteString, Chunk]] {
Expand Down
6 changes: 5 additions & 1 deletion project/Common.scala
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,11 @@ object Common extends AutoPlugin {
Seq(
"-Wunused:all",
"-language:implicitConversions",
"-Wconf:cat=deprecation&msg=.*(fromFuture|ActorMaterializer).*:s"
"-Wconf:cat=deprecation&msg=.*(fromFuture|ActorMaterializer).*:s",
"-Wconf:msg=.*deprecated\\ for\\ wildcard\\ arguments.*:s",
"-Wconf:msg=.*has\\ been\\ deprecated.*\\ uninitialized.*:s",
"-Wconf:msg=.*should\\ not\\ .*infix\\ operator.*:s",
"-Wconf:msg=.*vararg\\ splices.*:s"
)
}
},
Expand Down
12 changes: 6 additions & 6 deletions project/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
set -e

S2_11="2.11.12"
S2_12="2.12.17"
S2_13="2.13.8"
S3_1="3.2.1"
S2_12="2.12.19"
S2_13="2.13.14"
S3="3.4.2"

# Play 2.6.x
export PLAY_VERSION=2.6.7 PLAY_JSON_VERSION=2.6.7 WS_VERSION=1.1.6
Expand All @@ -17,9 +17,9 @@ export PLAY_VERSION=2.7.1 PLAY_JSON_VERSION=2.7.4 WS_VERSION=2.0.6
sbt ++${S2_12} makePom packageBin packageSrc packageDoc

# Play 2.8.x
export PLAY_VERSION=2.8.0 PLAY_JSON_VERSION=2.8.1 WS_VERSION=2.1.2
export PLAY_VERSION=2.8.11 PLAY_JSON_VERSION=2.8.1 WS_VERSION=2.1.2
sbt ++${S2_13} makePom packageBin packageSrc packageDoc

# Scala 3
export PLAY_VERSION=2.8.11 PLAY_JSON_VERSION=2.10.0-RC5 WS_VERSION=2.2.0-M1+68-da80b259-SNAPSHOT
sbt ++${S3_1} makePom packageBin packageSrc packageDoc
export PLAY_VERSION=2.9.5 PLAY_JSON_VERSION=2.10.6 WS_VERSION=2.2.0-M1+68-da80b259-SNAPSHOT
sbt ++${S3} makePom packageBin packageSrc packageDoc
4 changes: 2 additions & 2 deletions project/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ if [ "x$SCALA_MODULES" = "x" ]; then
SCALA_MODULES="core:benji-core s3:benji-s3 google:benji-google vfs:benji-vfs play:benji-play"
fi

SCALA_VERSIONS="2.11 2.12 2.13 3.2.1"
PLAY_VERSIONS="26 27 28"
SCALA_VERSIONS="2.11 2.12 2.13 3.4.2"
PLAY_VERSIONS="26 27 28 29"

BASES=""

Expand Down

0 comments on commit c81cf6b

Please sign in to comment.