Skip to content

Commit b0dc527

Browse files
committed
MINOR: Scala, Scalafmt and Scalac SCoverage plugin version updates
details: - Scala: 2.13.17 -->> 2.13.18 (note: Java compatible versions: from 8 to 26) - Scalafmt: 3.10.0 -->> 3.10.2 - Scalac SCoverage plugin: 2.4.0 -->> 2.5.0 release notes: - Scala: - https://github.com/scala/scala/releases/tag/v2.13.18 - Scalafmt: - https://github.com/scalameta/scalafmt/releases/tag/v3.10.1 - https://github.com/scalameta/scalafmt/releases/tag/v3.10.2 - Scalac SCoverage plugin: - https://github.com/scoverage/scalac-scoverage-plugin/releases/tag/v2.4.1 - https://github.com/scoverage/scalac-scoverage-plugin/releases/tag/v2.4.2 - https://github.com/scoverage/scalac-scoverage-plugin/releases/tag/v2.5.0 .........
1 parent 71299c2 commit b0dc527

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

LICENSE-binary

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,9 +248,9 @@ License Version 2.0:
248248
- opentelemetry-proto-1.3.2-alpha
249249
- plexus-utils-3.5.1
250250
- rocksdbjni-10.1.3
251-
- scala-library-2.13.17
251+
- scala-library-2.13.18
252252
- scala-logging_2.13-3.9.6
253-
- scala-reflect-2.13.17
253+
- scala-reflect-2.13.18
254254
- snappy-java-1.1.10.7
255255
- snakeyaml-2.4
256256
- swagger-annotations-2.2.39

bin/kafka-run-class.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ should_include_file() {
4949
base_dir=$(dirname $0)/..
5050

5151
if [ -z "$SCALA_VERSION" ]; then
52-
SCALA_VERSION=2.13.17
52+
SCALA_VERSION=2.13.18
5353
if [[ -f "$base_dir/gradle.properties" ]]; then
5454
SCALA_VERSION=`grep "^scalaVersion=" "$base_dir/gradle.properties" | cut -d= -f 2`
5555
fi

bin/windows/kafka-run-class.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ set BASE_DIR=%CD%
2727
popd
2828

2929
IF ["%SCALA_VERSION%"] EQU [""] (
30-
set SCALA_VERSION=2.13.17
30+
set SCALA_VERSION=2.13.18
3131
)
3232

3333
IF ["%SCALA_BINARY_VERSION%"] EQU [""] (

checkstyle/.scalafmt.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
15-
version = 3.10.0
15+
version = 3.10.2
1616
runner.dialect = scala213
1717
docstrings.style = Asterisk
1818
docstrings.wrap = false

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ group=org.apache.kafka
2424
# - streams/quickstart/java/src/main/resources/archetype-resources/pom.xml
2525
# - streams/quickstart/java/pom.xml
2626
version=4.3.0-SNAPSHOT
27-
scalaVersion=2.13.17
27+
scalaVersion=2.13.18
2828
# Adding swaggerVersion in gradle.properties to have a single version in place for swagger
2929
swaggerVersion=2.2.39
3030
task=build

gradle/dependencies.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ ext {
2323
}
2424

2525
// Add Scala version
26-
def defaultScala213Version = '2.13.17'
26+
def defaultScala213Version = '2.13.18'
2727
if (hasProperty('scalaVersion')) {
2828
if (scalaVersion == '2.13') {
2929
versions["scala"] = defaultScala213Version
@@ -120,8 +120,8 @@ versions += [
120120
// When updating the scalafmt version please also update the version field in checkstyle/.scalafmt.conf. scalafmt now
121121
// has the version field as mandatory in its configuration, see
122122
// https://github.com/scalameta/scalafmt/releases/tag/v3.1.0.
123-
scalafmt: "3.10.0",
124-
scoverage: "2.4.0",
123+
scalafmt: "3.10.2",
124+
scoverage: "2.5.0",
125125
slf4j: "1.7.36",
126126
snappy: "1.1.10.7",
127127
spotbugs: "4.9.8",

0 commit comments

Comments
 (0)