You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by hx...@apache.org on 2022/09/05 03:22:48 UTC

[flink] branch release-1.16 created (now bf3896b556a)

This is an automated email from the ASF dual-hosted git repository.

hxb pushed a change to branch release-1.16
in repository https://gitbox.apache.org/repos/asf/flink.git


      at bf3896b556a Update for 1.16.0

This branch includes the following new commits:

     new bf3896b556a Update for 1.16.0

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[flink] 01/01: Update for 1.16.0

Posted by hx...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

hxb pushed a commit to branch release-1.16
in repository https://gitbox.apache.org/repos/asf/flink.git

commit bf3896b556a30efebf290a836c476096b73e0bb4
Author: huangxingbo <hx...@apache.org>
AuthorDate: Mon Sep 5 10:29:06 2022 +0800

    Update for 1.16.0
---
 docs/config.toml                                   | 23 +++++++++++-----------
 .../test-scripts/common_docker.sh                  |  2 +-
 2 files changed, 13 insertions(+), 12 deletions(-)

diff --git a/docs/config.toml b/docs/config.toml
index d321ea6a582..fb118409659 100644
--- a/docs/config.toml
+++ b/docs/config.toml
@@ -14,7 +14,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-baseURL = '//nightlies.apache.org/flink/flink-docs-master'
+baseURL = '//nightlies.apache.org/flink/flink-docs-release-1.16'
 languageCode = "en-us"
 title = "Apache Flink"
 enableGitInfo = false
@@ -24,7 +24,7 @@ pygmentsUseClasses = true
 [params]
   # Flag whether this is a stable version or not.
   # Used for the quickstart page.
-  IsStable = false
+  IsStable = true
 
   # Flag to indicate whether an outdated warning should be shown.
   ShowOutDatedWarning = false
@@ -34,14 +34,14 @@ pygmentsUseClasses = true
   # we change the version for the complete docs when forking of a release branch
   # etc.
   # The full version string as referenced in Maven (e.g. 1.2.1)
-  Version = "1.16-SNAPSHOT"
+  Version = "1.16.0"
 
   # For stable releases, leave the bugfix version out (e.g. 1.2). For snapshot
   # release this should be the same as the regular version
-  VersionTitle = "1.16-SNAPSHOT"
+  VersionTitle = "1.16"
 
   # The branch for this version of Apache Flink
-  Branch = "master"
+  Branch = "release-1.16"
 
   # The github repository for Apache Flink
   Repo = "//github.com/apache/flink"
@@ -60,22 +60,23 @@ pygmentsUseClasses = true
 
   ZhDownloadPage = "//flink.apache.org/zh/downloads.html"
 
-  JavaDocs = "//nightlies.apache.org/flink/flink-docs-master/api/java/"
+  JavaDocs = "//nightlies.apache.org/flink/flink-docs-release-1.16/api/java/"
 
-  ScalaDocs = "//nightlies.apache.org/flink/flink-docs-master/api/scala/index.html#org.apache.flink.api.scala.package"
+  ScalaDocs = "//nightlies.apache.org/flink/flink-docs-release-1.16/api/scala/index.html#org.apache.flink.api.scala.package"
 
-  PyDocs = "//nightlies.apache.org/flink/flink-docs-master/api/python/"
+  PyDocs = "//nightlies.apache.org/flink/flink-docs-release-1.16/api/python/"
 
   # External links at the bottom
   # of the menu
   MenuLinks = [
     ["Project Homepage", "//flink.apache.org"],
-    ["JavaDocs", "//nightlies.apache.org/flink/flink-docs-master/api/java/"],
-    ["ScalaDocs", "//nightlies.apache.org/flink/flink-docs-master/api/scala/index.html#org.apache.flink.api.scala.package"],
-    ["PyDocs", "//nightlies.apache.org/flink/flink-docs-master/api/python/"]
+    ["JavaDocs", "//nightlies.apache.org/flink/flink-docs-release-1.16/api/java/"],
+    ["ScalaDocs", "//nightlies.apache.org/flink/flink-docs-release-1.16/api/scala/index.html#org.apache.flink.api.scala.package/"]
+    ["PyDocs", "//nightlies.apache.org/flink/flink-docs-release-1.16/api/python/"]
   ]
 
   PreviousDocs = [
+    ["1.16", "http://nightlies.apache.org/flink/flink-docs-release-1.16"],
     ["1.15", "http://nightlies.apache.org/flink/flink-docs-release-1.15"],
     ["1.14", "http://nightlies.apache.org/flink/flink-docs-release-1.14"],
     ["1.13", "http://nightlies.apache.org/flink/flink-docs-release-1.13"],
diff --git a/flink-end-to-end-tests/test-scripts/common_docker.sh b/flink-end-to-end-tests/test-scripts/common_docker.sh
index 43c387c1fd8..09b6d95c3b9 100644
--- a/flink-end-to-end-tests/test-scripts/common_docker.sh
+++ b/flink-end-to-end-tests/test-scripts/common_docker.sh
@@ -48,7 +48,7 @@ function build_image() {
     local server_pid=$!
 
     echo "Preparing Dockeriles"
-    retry_times_with_exponential_backoff 5 git clone https://github.com/apache/flink-docker.git --branch dev-master --single-branch
+    retry_times_with_exponential_backoff 5 git clone https://github.com/apache/flink-docker.git --branch dev-1.16 --single-branch
 
     local java_version=8
     if [[ ${PROFILE} == *"jdk11"* ]]; then