Skip to content

Commit 54ca9b4

Browse files
authored
Merge pull request #1 from findify/fix/adt-061
upgrade flink-adt to 0.6.1
2 parents 87da1ca + b40512c commit 54ca9b4

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,12 @@ With this approach:
4949
* slower serialization type due to frequent Kryo fallback
5050
* larger savepoint size (again, due to Kryo)
5151

52+
### Closure cleaner from Spark 3.x
53+
54+
Flink historically used quite an old forked version of the ClosureCleaner for scala lambdas, which has some minor
55+
compatibility issues with Java 17 and Scala 2.13+. This project uses a more recent version, hopefully with less
56+
compatibility issues.
57+
5258
### No Legacy DataSet API
5359

5460
Sorry, but it's already deprecated and as a community project we have no resources to support it. If you need it,

build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ThisBuild / version := "1.15-1"
1+
ThisBuild / version := "1.15-2"
22

33
lazy val root = (project in file("."))
44
.settings(
@@ -8,11 +8,11 @@ lazy val root = (project in file("."))
88
libraryDependencies ++= Seq(
99
"org.apache.flink" % "flink-streaming-java" % "1.15.0",
1010
"org.apache.flink" % "flink-java" % "1.15.0",
11-
"io.findify" %% "flink-adt" % "0.6.0",
11+
"io.findify" %% "flink-adt" % "0.6.1",
1212
"org.scalatest" %% "scalatest" % "3.2.12" % Test,
1313
"org.apache.flink" % "flink-test-utils" % "1.15.0" % Test,
1414
"org.apache.flink" % "flink-test-utils-junit" % "1.15.0" % Test,
15-
"com.github.sbt" % "junit-interface" % "0.13.2" % Test,
15+
"com.github.sbt" % "junit-interface" % "0.13.3" % Test,
1616
"org.scala-lang.modules" %% "scala-collection-compat" % "2.7.0"
1717
),
1818
libraryDependencies += {

0 commit comments

Comments
 (0)