Skip to content

Commit 846231d

Browse files
committed
Flink 1.20.2
1 parent f523eea commit 846231d

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ lazy val commonSettings =
262262
// Note: when updating check versions in 'flink*V' below, because some libraries must be fixed at versions provided
263263
// by Flink, or jobs may fail in runtime when Flink is run with 'classloader.resolve-order: parent-first'.
264264
// You can find versions provided by Flink in it's lib/flink-dist-*.jar/META-INF/DEPENDENCIES file.
265-
val flinkV = "1.20.1"
265+
val flinkV = "1.20.2"
266266
val flinkConnectorKafkaV = "3.3.0-1.20" // 3.4.0-1.20 breaks compilation with Scala 2.12
267267
val jdbcFlinkConnectorV = "3.3.0-1.20"
268268
val flinkCommonsCompressV = "1.26.0"
@@ -347,7 +347,7 @@ val retryV = "0.3.6"
347347
// depending on scala version one of this jar lays in Flink lib dir
348348
def flinkLibScalaDeps(scalaVersion: String, configurations: Option[Configuration] = None) =
349349
Seq(
350-
"pl.touk" %% "flink-scala" % "1.1.3"
350+
"pl.touk" %% "flink-scala" % "1.1.4"
351351
).map(m => configurations.map(m % _).getOrElse(m)).map(_ exclude ("com.esotericsoftware", "kryo-shaded"))
352352

353353
lazy val commonDockerSettings = {

docs/Changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ description: Stay informed with detailed changelogs covering new features, impro
192192
* [#8116](https://github.com/TouK/nussknacker/pull/8116) Improved Kafka metadata caching: common cache and caching topics when schemaless topics are enabled
193193
* [#8123](https://github.com/TouK/nussknacker/pull/8123) For now on, it is possible to deploy and save a scenario at the same time.
194194
* [#8228](https://github.com/TouK/nussknacker/pull/8228) Fixed sorting by scenario status name in component usages view.
195-
* [#7137](https://github.com/TouK/nussknacker/pull/7137) Updated Flink dependency to 1.20.1
195+
* [#7137](https://github.com/TouK/nussknacker/pull/7137)[#8317](https://github.com/TouK/nussknacker/pull/8317) Updated Flink dependency to 1.20.2
196196
* [#8239](https://github.com/TouK/nussknacker/pull/8239) Added a DB reference to the set of services that can be invoked from inside the `CustomHttpServiceProvider` implementation
197197
* [#8242](https://github.com/TouK/nussknacker/pull/8242) Toolbar buttons can be disabled and their tooltip can be customized based on user roles
198198
* Example of button configuration, using new settings:

docs/MigrationGuide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ To see the biggest differences please consult the [changelog](Changelog.md).
220220
Also, if you provide one element in `groupBy` expression, it will be presented as one element list instead of scalar.
221221
* [#8011](https://github.com/TouK/nussknacker/pull/8011) During scenario compilation, redundant parameters used in node are treated only as warning now. They are skipped and compilation passes.
222222
* [#8198](https://github.com/TouK/nussknacker/pull/8198) Support for test data without `sourceId` specified is removed - now, you always have to specify it
223-
* [#7137](https://github.com/TouK/nussknacker/pull/7137) Updated Flink 1.19.2 -> 1.20.1.
223+
* [#7137](https://github.com/TouK/nussknacker/pull/7137)[#8317](https://github.com/TouK/nussknacker/pull/8317) Updated Flink 1.19.2 -> 1.20.2.
224224
* [#8209](https://github.com/TouK/nussknacker/pull/8209) Nussknacker now requires flink to be run with replaced `lib/flink-scala_2.12-x.x.x.jar` by `pl.touk:flink-scala` lib for the same scala version as used Nussknacker distribution. We provide prebuild flink docker images on [Docker Hub](https://hub.docker.com/r/touk/flink)
225225
226226
## In version 1.18.0

e2e-tests/src/test/resources/bootstrap-setup-scenarios.override.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ x-flink-service-with-postgres-driver: &flink-with-postgres-driver
44
context: ./flink/
55
dockerfile: FlinkWithPostgresDriverDockerfile
66
args:
7-
FLINK_VERSION: "1.20.1-scala_2.12-java11"
7+
FLINK_VERSION: "1.20.2-scala_2.12-java11"
88

99
services:
1010

engine/flink/test-utils/src/main/resources/docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM flink:1.20.1-scala_2.12-java11
1+
FROM flink:1.20.2-scala_2.12-java11
22

33
COPY entrypointWithIP.sh /
44
COPY conf.yml /

examples/dev/local-testing.docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ services:
141141
build:
142142
context: flink/
143143
args:
144-
FLINK_VERSION: "1.20.1-scala_2.12-java11"
144+
FLINK_VERSION: "1.20.2-scala_2.12-java11"
145145
restart: unless-stopped
146146
command: jobmanager
147147
ports:
@@ -159,7 +159,7 @@ services:
159159
build:
160160
context: flink/
161161
args:
162-
FLINK_VERSION: "1.20.1-scala_2.12-java11"
162+
FLINK_VERSION: "1.20.2-scala_2.12-java11"
163163
restart: unless-stopped
164164
command: taskmanager
165165
environment:

examples/installation/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ services:
198198
build:
199199
context: ./flink/
200200
args:
201-
FLINK_VERSION: "1.1.3-SNAPSHOT-flink1.20.1-scala_2.12"
201+
TOUK_FLINK_VERSION: "1.1.4-flink1.20.2-scala_2.12"
202202
restart: unless-stopped
203203
command: jobmanager
204204
environment:
@@ -218,7 +218,7 @@ services:
218218
build:
219219
context: ./flink/
220220
args:
221-
FLINK_VERSION: "1.1.3-SNAPSHOT-flink1.20.1-scala_2.12"
221+
TOUK_FLINK_VERSION: "1.1.4-flink1.20.2-scala_2.12"
222222
restart: unless-stopped
223223
command: taskmanager
224224
environment:

examples/installation/flink/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
ARG FLINK_VERSION
1+
ARG TOUK_FLINK_VERSION
22

3-
FROM touk/flink:${FLINK_VERSION}
3+
FROM touk/flink:${TOUK_FLINK_VERSION}
44

55
USER root
66
RUN echo '#!/bin/sh' > /ex-docker-entrypoint.sh && \

0 commit comments

Comments
 (0)