dawidwys commented on code in PR #603: URL: https://github.com/apache/flink-web/pull/603#discussion_r1087851914
########## _posts/2023-01-26-release-1.16.1.md: ########## @@ -0,0 +1,258 @@ +--- +layout: post +title: "Apache Flink 1.16.1 Release Announcement" +date: 2023-01-23T22:00:00.000Z +categories: news +authors: +- MartijnVisser: + name: "Martijn Visser" + twitter: "martijnvisser82" + +excerpt: The Apache Flink Community is pleased to announce a bug fix release for Flink 1.16. + +--- + +The Apache Flink Community is pleased to announce the first bug fix release of the Flink 1.16 series. + +This release includes 84 bug fixes, vulnerability fixes, and minor improvements for Flink 1.16. +Below you will find a list of all bugfixes and improvements (excluding improvements to the build infrastructure and build stability). For a complete list of all changes see: +[JIRA](https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12315522&version=12352344). + +We highly recommend all users upgrade to Flink 1.16.1. + +# Release Artifacts + +## Maven Dependencies + +```xml +<dependency> + <groupId>org.apache.flink</groupId> + <artifactId>flink-java</artifactId> + <version>1.16.1</version> +</dependency> +<dependency> + <groupId>org.apache.flink</groupId> + <artifactId>flink-streaming-java</artifactId> + <version>1.16.1</version> +</dependency> +<dependency> + <groupId>org.apache.flink</groupId> + <artifactId>flink-clients</artifactId> + <version>1.16.1</version> +</dependency> +``` + +## Binaries + +You can find the binaries on the updated [Downloads page]({{ site.baseurl }}/downloads.html). + +## Docker Images + +* [library/flink](https://hub.docker.com/_/flink?tab=tags&page=1&name=1.16.1) (official images) +* [apache/flink](https://hub.docker.com/r/apache/flink/tags?page=1&name=1.16.1) (ASF repository) + +## PyPi + +* [apache-flink==1.16.1](https://pypi.org/project/apache-flink/1.16.1/) + +# Upgrade Notes + +[FLINK-28988 - Incorrect result for filter after temporal join](https://issues.apache.org/jira/browse/FLINK-28988) +The filter will not be pushed down into both inputs of the event time temporal join. +This may cause incompatible plan changes compared to Flink 1.16.0, e.g., when the left input is an upsert source +(like upsert-kafka connector), the query plan will remove the ChangelogNormalize node in Flink 1.16.1, while it +did appear in 1.16.0. + +[FLINK-29849 - Event time temporal join on an upsert source may produce incorrect execution plan](https://issues.apache.org/jira/browse/FLINK-29849) +This resolves the correctness issue when do event time temporal join with a versioned table backed by an upsert source. Review Comment: ```suggestion This resolves the correctness issue when doing an event time temporal join with a versioned table backed by an upsert source. ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
