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

damccorm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
     new 14180309ea9 Add docs/blog for release (#31094)
14180309ea9 is described below

commit 14180309ea997f83c866b9cfd874dbb12b866321
Author: Danny McCormick <[email protected]>
AuthorDate: Thu May 2 12:50:30 2024 -0400

    Add docs/blog for release (#31094)
    
    * Add docs/blog for release
    
    * Fix typo
    
    Co-authored-by: tvalentyn <[email protected]>
    
    * Add date
    
    * Add date
    
    * Remove meaningless line
    
    * Add dates
    
    * Fix links
    
    ---------
    
    Co-authored-by: tvalentyn <[email protected]>
---
 CHANGES.md                                         |  14 +-
 website/www/site/config.toml                       |   2 +-
 website/www/site/content/en/blog/beam-2.56.0.md    | 162 +++++++++++++++++++++
 .../www/site/content/en/get-started/downloads.md   |  19 ++-
 4 files changed, 178 insertions(+), 19 deletions(-)

diff --git a/CHANGES.md b/CHANGES.md
index 7ef18fd32fb..a7395157f86 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -93,7 +93,7 @@
 
 * ([#X](https://github.com/apache/beam/issues/X)).
 
-# [2.56.0] - Unreleased
+# [2.56.0] - 2024-05-01
 
 ## Highlights
 
@@ -113,28 +113,18 @@
 
 ## Breaking Changes
 
-* X behavior was changed ([#X](https://github.com/apache/beam/issues/X)).
 * Default consumer polling timeout for KafkaIO.Read was increased from 1 
second to 2 seconds. Use KafkaIO.read().withConsumerPollingTimeout(Duration 
duration) to configure this timeout value when necessary 
([#30870](https://github.com/apache/beam/issues/30870)).
 * Python Dataflow users no longer need to manually specify --streaming for 
pipelines using unbounded sources such as ReadFromPubSub.
 
-## Deprecations
-
-* X behavior is deprecated and will be removed in X versions 
([#X](https://github.com/apache/beam/issues/X)).
-
 ## Bugfixes
 
 * Fixed locking issue when shutting down inactive bundle processors. Symptoms 
of this issue include slowness or stuckness in long-running jobs (Python) 
([#30679](https://github.com/apache/beam/pull/30679)).
 * Fixed logging issue that caused silecing the pip output when installing of 
dependencies provided in `--requirements_file` (Python).
 * Fixed pipeline stuckness issue by disallowing versions of grpcio that can 
cause the stuckness (Python) 
([#30867](https://github.com/apache/beam/issues/30867)).
 
-## Security Fixes
-* Fixed (CVE-YYYY-NNNN)[https://www.cve.org/CVERecord?id=CVE-YYYY-NNNN] 
(Java/Python/Go) ([#X](https://github.com/apache/beam/issues/X)).
-
 ## Known Issues
 
-* ([#X](https://github.com/apache/beam/issues/X)).
-
-# [2.55.1]
+# [2.55.1] - 2024-04-08
 
 ## Bugfixes
 
diff --git a/website/www/site/config.toml b/website/www/site/config.toml
index 9e29281dd79..4cfa30e2eca 100644
--- a/website/www/site/config.toml
+++ b/website/www/site/config.toml
@@ -104,7 +104,7 @@ github_project_repo = "https://github.com/apache/beam";
 
 [params]
 description = "Apache Beam is an open source, unified model and set of 
language-specific SDKs for defining and executing data processing workflows, 
and also data ingestion and integration flows, supporting Enterprise 
Integration Patterns (EIPs) and Domain Specific Languages (DSLs). Dataflow 
pipelines simplify the mechanics of large-scale batch and streaming data 
processing and can run on a number of runtimes like Apache Flink, Apache Spark, 
and Google Cloud Dataflow (a cloud service). Be [...]
-release_latest = "2.55.1"
+release_latest = "2.56.0"
 # The repository and branch where the files live in Github or Colab. This is 
used
 # to serve and stage from your local branch, but publish to the master branch.
 #   e.g. https://github.com/{{< param branch_repo >}}/path/to/notebook.ipynb
diff --git a/website/www/site/content/en/blog/beam-2.56.0.md 
b/website/www/site/content/en/blog/beam-2.56.0.md
new file mode 100644
index 00000000000..de2671a23fd
--- /dev/null
+++ b/website/www/site/content/en/blog/beam-2.56.0.md
@@ -0,0 +1,162 @@
+---
+title:  "Apache Beam 2.56.0"
+date:   2024-05-01 10:00:00 -0400
+categories:
+  - blog
+  - release
+authors:
+  - damccorm
+---
+<!--
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+http://www.apache.org/licenses/LICENSE-2.0
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+-->
+
+We are happy to present the new 2.56.0 release of Beam.
+This release includes both improvements and new functionality.
+See the [download page](/get-started/downloads/#2550-2023-03-25) for this 
release.
+
+<!--more-->
+
+For more information on changes in 2.56.0, check out the [detailed release 
notes](https://github.com/apache/beam/milestone/20).
+
+## Highlights
+
+* Added FlinkRunner for Flink 1.17, removed support for Flink 1.12 and 1.13. 
Previous version of Pipeline running on Flink 1.16 and below can be upgraded to 
1.17, if the Pipeline is first updated to Beam 2.56.0 with the same Flink 
version. After Pipeline runs with Beam 2.56.0, it should be possible to upgrade 
to FlinkRunner with Flink 1.17. 
([#29939](https://github.com/apache/beam/issues/29939))
+
+## I/Os
+
+* Upgraded Avro version to 1.11.3, kafka-avro-serializer and 
kafka-schema-registry-client versions to 7.6.0 (Java) 
([#30638](https://github.com/apache/beam/pull/30638)).
+  The newer Avro package is known to have breaking changes. If you are 
affected, you can keep pinned to older Avro versions which are also tested with 
Beam.
+
+## New Features / Improvements
+
+* Profiling of Cythonized code has been disabled by default. This might 
improve performance for some Python pipelines 
([#30938](https://github.com/apache/beam/pull/30938)).
+* Bigtable enrichment handler now accepts a custom function to build a 
composite row key. (Python) 
([#30974](https://github.com/apache/beam/issues/30975)).
+
+## Breaking Changes
+
+* Default consumer polling timeout for KafkaIO.Read was increased from 1 
second to 2 seconds. Use KafkaIO.read().withConsumerPollingTimeout(Duration 
duration) to configure this timeout value when necessary 
([#30870](https://github.com/apache/beam/issues/30870)).
+* Python Dataflow users no longer need to manually specify --streaming for 
pipelines using unbounded sources such as ReadFromPubSub.
+
+## Bugfixes
+
+* Fixed locking issue when shutting down inactive bundle processors. Symptoms 
of this issue include slowness or stuckness in long-running jobs (Python) 
([#30679](https://github.com/apache/beam/pull/30679)).
+* Fixed logging issue that caused silecing the pip output when installing of 
dependencies provided in `--requirements_file` (Python).
+
+## List of Contributors
+
+According to git shortlog, the following people contributed to the 
{$RELEASE_VERSION} release. Thank you to all contributors!
+
+Abacn
+
+Ahmed Abualsaud
+
+Andrei Gurau
+
+Andrey Devyatkin
+
+Aravind Pedapudi
+
+Arun Pandian
+
+Arvind Ram
+
+Bartosz Zablocki
+
+Brachi Packter
+
+Byron Ellis
+
+Chamikara Jayalath
+
+Clement DAL PALU
+
+Damon
+
+Danny McCormick
+
+Daria Bezkorovaina
+
+Dip Patel
+
+Evan Burrell
+
+Hai Joey Tran
+
+Jack McCluskey
+
+Jan Lukavský
+
+JayajP
+
+Jeff Kinard
+
+Julien Tournay
+
+Kenneth Knowles
+
+Luís Bianchin
+
+Maciej Szwaja
+
+Melody Shen
+
+Oleh Borysevych
+
+Pablo Estrada
+
+Rebecca Szper
+
+Ritesh Ghorse
+
+Robert Bradshaw
+
+Sam Whittle
+
+Sergei Lilichenko
+
+Shahar Epstein
+
+Shunping Huang
+
+Svetak Sundhar
+
+Timothy Itodo
+
+Veronica Wasson
+
+Vitaly Terentyev
+
+Vlado Djerek
+
+Yi Hu
+
+akashorabek
+
+bzablocki
+
+clmccart
+
+damccorm
+
+dependabot[bot]
+
+dmitryor
+
+github-actions[bot]
+
+liferoad
+
+martin trieu
+
+tvalentyn
+
+xianhualiu
diff --git a/website/www/site/content/en/get-started/downloads.md 
b/website/www/site/content/en/get-started/downloads.md
index d5e04b33403..2f243f07159 100644
--- a/website/www/site/content/en/get-started/downloads.md
+++ b/website/www/site/content/en/get-started/downloads.md
@@ -96,17 +96,24 @@ versions denoted `0.x.y`.
 
 ## Releases
 
+### 2.56.0 (2024-05-01)
+Official [source code 
download](https://downloads.apache.org/beam/2.56.0/apache-beam-2.56.0-source-release.zip).
+[SHA-512](https://downloads.apache.org/beam/2.56.0/apache-beam-2.56.0-source-release.zip.sha512).
+[signature](https://downloads.apache.org/beam/2.56.0/apache-beam-2.56.0-source-release.zip.asc).
+
+[Release notes](https://github.com/apache/beam/releases/tag/v2.56.0)
+
 ### 2.55.1 (2024-03-25)
-Official [source code 
download](https://downloads.apache.org/beam/2.55.1/apache-beam-2.55.1-source-release.zip).
-[SHA-512](https://downloads.apache.org/beam/2.55.1/apache-beam-2.55.1-source-release.zip.sha512).
-[signature](https://downloads.apache.org/beam/2.55.1/apache-beam-2.55.1-source-release.zip.asc).
+Official [source code 
download](https://archive.apache.org/dist/beam/2.55.1/apache-beam-2.55.1-source-release.zip).
+[SHA-512](https://archive.apache.org/dist/beam/2.55.1/apache-beam-2.55.1-source-release.zip.sha512).
+[signature](https://archive.apache.org/dist/beam/2.55.1/apache-beam-2.55.1-source-release.zip.asc).
 
 [Release notes](https://github.com/apache/beam/releases/tag/v2.55.1)
 
 ### 2.55.0 (2024-03-25)
-Official [source code 
download](https://archive.apache.org/beam/2.55.0/apache-beam-2.55.0-source-release.zip).
-[SHA-512](https://archive.apache.org/beam/2.55.0/apache-beam-2.55.0-source-release.zip.sha512).
-[signature](https://archive.apache.org/beam/2.55.0/apache-beam-2.55.0-source-release.zip.asc).
+Official [source code 
download](https://archive.apache.org/dist/beam/2.55.0/apache-beam-2.55.0-source-release.zip).
+[SHA-512](https://archive.apache.org/dist/beam/2.55.0/apache-beam-2.55.0-source-release.zip.sha512).
+[signature](https://archive.apache.org/dist/beam/2.55.0/apache-beam-2.55.0-source-release.zip.asc).
 
 [Release notes](https://github.com/apache/beam/releases/tag/v2.55.0)
 [Blog post](/blog/beam-2.55.0).

Reply via email to