This is an automated email from the ASF dual-hosted git repository.
jongyoul pushed a commit to branch branch-0.12
in repository https://gitbox.apache.org/repos/asf/zeppelin.git
The following commit(s) were added to refs/heads/branch-0.12 by this push:
new b67f0dadfa [MINOR] upgrade scala
b67f0dadfa is described below
commit b67f0dadfa5130f1b3136339373b32177b5bffb3
Author: PJ Fanning <[email protected]>
AuthorDate: Mon Jul 14 07:48:11 2025 +0100
[MINOR] upgrade scala
### What is this PR for?
Upgrade scala and related libs and plugins.
### What type of PR is it?
Bug Fix
Improvement
Feature
Documentation
Hot Fix
Refactoring
*Please leave your type of PR only*
### Todos
* [ ] - Task
### What is the Jira issue?
* Open an issue on Jira https://issues.apache.org/jira/browse/ZEPPELIN/
* Put link here, and add [ZEPPELIN-*Jira number*] in PR title, eg.
[ZEPPELIN-533]
### How should this be tested?
* Strongly recommended: add automated unit tests for any new or changed
behavior
* Outline any manual steps to test the PR here.
### Screenshots (if appropriate)
### Questions:
* Does the license files need to update?
* Is there breaking changes for older versions?
* Does this needs documentation?
Closes #4964 from pjfanning/scala-upgrade.
Signed-off-by: Jongyoul Lee <[email protected]>
(cherry picked from commit d7740440d1992606c577e1e0d5f884d3d4bb3286)
Signed-off-by: Jongyoul Lee <[email protected]>
---
pom.xml | 8 ++++----
spark/interpreter/pom.xml | 6 +++---
spark/pom.xml | 2 +-
spark/scala-2.12/pom.xml | 2 +-
spark/scala-2.13/pom.xml | 2 +-
spark/spark-scala-parent/pom.xml | 2 +-
6 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/pom.xml b/pom.xml
index 4717b9bc05..fe49e50f9a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -103,9 +103,9 @@
<maven.compiler.target>${java.version}</maven.compiler.target>
<scala.version>${scala.2.12.version}</scala.version>
<scala.binary.version>2.12</scala.binary.version>
- <scala.2.12.version>2.12.18</scala.2.12.version>
- <scalatest.version>3.2.16</scalatest.version>
- <scalacheck.version>1.17.0</scalacheck.version>
+ <scala.2.12.version>2.12.20</scala.2.12.version>
+ <scalatest.version>3.2.19</scalatest.version>
+ <scalacheck.version>1.18.1</scalacheck.version>
<!-- frontend maven plugin related versions-->
<node.version>v16.20.2</node.version>
@@ -174,7 +174,7 @@
<plugin.protobuf.version>3.11.4</plugin.protobuf.version>
<plugin.resource.version>3.1.0</plugin.resource.version>
<plugin.s3.upload.version>1.4</plugin.s3.upload.version>
- <plugin.scala.alchim31.version>4.8.0</plugin.scala.alchim31.version>
+ <plugin.scala.alchim31.version>4.9.2</plugin.scala.alchim31.version>
<plugin.scalate.version>1.7.1</plugin.scalate.version>
<plugin.scalatest.version>2.2.0</plugin.scalatest.version>
<plugin.scm.version>1.11.2</plugin.scm.version>
diff --git a/spark/interpreter/pom.xml b/spark/interpreter/pom.xml
index 4eb8a8cb5b..4bb085816e 100644
--- a/spark/interpreter/pom.xml
+++ b/spark/interpreter/pom.xml
@@ -43,7 +43,7 @@
<spark.version>3.5.3</spark.version>
<protobuf.version>3.21.12</protobuf.version>
<py4j.version>0.10.9.7</py4j.version>
- <spark.scala.version>2.12.18</spark.scala.version>
+ <spark.scala.version>2.12.20</spark.scala.version>
<spark.scala.binary.version>2.12</spark.scala.binary.version>
<spark.archive>spark-${spark.version}</spark.archive>
@@ -550,7 +550,7 @@
<profile>
<id>spark-scala-2.13</id>
<properties>
- <spark.scala.version>2.13.8</spark.scala.version>
+ <spark.scala.version>2.13.16</spark.scala.version>
<spark.scala.binary.version>2.13</spark.scala.binary.version>
</properties>
</profile>
@@ -561,7 +561,7 @@
<activeByDefault>true</activeByDefault>
</activation>
<properties>
- <spark.scala.version>2.12.18</spark.scala.version>
+ <spark.scala.version>2.12.20</spark.scala.version>
<spark.scala.binary.version>2.12</spark.scala.binary.version>
</properties>
</profile>
diff --git a/spark/pom.xml b/spark/pom.xml
index 87de223b1e..8e5759c284 100644
--- a/spark/pom.xml
+++ b/spark/pom.xml
@@ -38,7 +38,7 @@
<spark.version>3.5.3</spark.version>
<protobuf.version>3.21.12</protobuf.version>
<py4j.version>0.10.9.7</py4j.version>
- <spark.scala.version>2.12.18</spark.scala.version>
+ <spark.scala.version>2.12.20</spark.scala.version>
<spark.scala.binary.version>2.12</spark.scala.binary.version>
<scala.compile.version>${spark.scala.version}</scala.compile.version>
diff --git a/spark/scala-2.12/pom.xml b/spark/scala-2.12/pom.xml
index 2131aaf9c9..cc8c2f3c60 100644
--- a/spark/scala-2.12/pom.xml
+++ b/spark/scala-2.12/pom.xml
@@ -32,7 +32,7 @@
<properties>
<spark.version>3.5.3</spark.version>
- <spark.scala.version>2.12.18</spark.scala.version>
+ <spark.scala.version>2.12.20</spark.scala.version>
<spark.scala.binary.version>2.12</spark.scala.binary.version>
<spark.scala.compile.version>${spark.scala.version}</spark.scala.compile.version>
</properties>
diff --git a/spark/scala-2.13/pom.xml b/spark/scala-2.13/pom.xml
index 2648127a36..95d64ab79c 100644
--- a/spark/scala-2.13/pom.xml
+++ b/spark/scala-2.13/pom.xml
@@ -32,7 +32,7 @@
<properties>
<spark.version>3.5.3</spark.version>
- <spark.scala.version>2.13.8</spark.scala.version>
+ <spark.scala.version>2.13.16</spark.scala.version>
<spark.scala.binary.version>2.13</spark.scala.binary.version>
<spark.scala.compile.version>${spark.scala.version}</spark.scala.compile.version>
</properties>
diff --git a/spark/spark-scala-parent/pom.xml b/spark/spark-scala-parent/pom.xml
index f623b88266..6dcc9cfc75 100644
--- a/spark/spark-scala-parent/pom.xml
+++ b/spark/spark-scala-parent/pom.xml
@@ -34,7 +34,7 @@
<properties>
<spark.version>3.4.1</spark.version>
<spark.scala.binary.version>2.12</spark.scala.binary.version>
- <spark.scala.version>2.12.18</spark.scala.version>
+ <spark.scala.version>2.12.20</spark.scala.version>
<spark.scala.compile.version>${spark.scala.binary.version}</spark.scala.compile.version>
</properties>