You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by gi...@apache.org on 2022/02/19 04:00:09 UTC

[beam] branch nightly-refs/heads/master updated (c1525a4 -> 1c579f9)

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

github-bot pushed a change to branch nightly-refs/heads/master
in repository https://gitbox.apache.org/repos/asf/beam.git.


    from c1525a4  Merge pull request #16814 from Simplify README for new users
     add 0037bf3  [release-2.36.0] Fix pickler argument for 2.36 blog (#16774)
     add f87f146  [adhoc] Avoid using SerializablePipelineOptions for testing to minimize dependencies (#16881)
     add f973906  fix: fix bug when retrieving either string or json
     add a354889  Merge pull request #16890 from [BEAM-12164]: fix bug when retrieving either string or json
     add ea97340  [BEAM-13051] Pylint misplaced-bare-raise warning enabled
     add eeabcd0  [BEAM-13051] Added descriptions to Kinesis and PortableRunner exceptions
     add 30b440f  Merge pull request #16526 from roger-mike/fix/pylint/misplaced-bare-raise-and-no-member
     add 0e45de7  [BEAM-13812] Integrate DataprocClusterManager into Interactive Environment
     add c975031  [BEAM-12572] Fix failing python examples tests in Dataflow runner (#16853)
     add 1c579f9  Remove build status from PR (#16902)

No new revisions were added by this update.

Summary of changes:
 .github/PULL_REQUEST_TEMPLATE.md                   | 363 +--------------------
 .../BUILD_STATUS.md                                |  25 +-
 .../beam/sdk/io/aws2/options/AwsOptionsTest.java   |   8 +-
 .../beam/sdk/io/aws2/options/S3OptionsTest.java    |   7 +-
 .../io/aws2/options/SerializationTestUtil.java}    |  26 +-
 .../mapper/ChangeStreamRecordMapper.java           |  21 +-
 sdks/python/.pylintrc                              |   1 -
 ...utocomplete_test.py => autocomplete_it_test.py} |  86 ++---
 .../examples/complete/autocomplete_test.py         |  58 ----
 ...{estimate_pi_test.py => estimate_pi_it_test.py} |  49 ++-
 .../examples/complete/estimate_pi_test.py          |  21 --
 ...s_test.py => top_wikipedia_sessions_it_test.py} |  67 ++--
 .../complete/top_wikipedia_sessions_test.py        |  33 --
 .../examples/cookbook/coders_it_test.py            | 104 ++++++
 .../apache_beam/examples/cookbook/coders_test.py   |  47 ---
 .../io/external/xlang_kinesisio_it_test.py         |   9 +-
 sdks/python/apache_beam/runners/common.py          |   2 +-
 .../interactive/dataproc}/__init__.py              |   0
 .../dataproc/dataproc_cluster_manager.py           | 166 ++++++----
 .../dataproc/dataproc_cluster_manager_test.py      |  58 ++--
 .../runners/interactive/interactive_beam.py        | 113 +++++++
 .../runners/interactive/interactive_beam_test.py   | 130 ++++++++
 .../runners/interactive/interactive_environment.py |  71 ++--
 .../interactive/interactive_environment_test.py    |  69 ++++
 .../runners/interactive/interactive_runner.py      |  70 ++++
 .../runners/interactive/interactive_runner_test.py |  39 +++
 .../apache_beam/runners/interactive/utils.py       |  41 +++
 .../apache_beam/runners/interactive/utils_test.py  |  30 ++
 .../runners/portability/portable_runner.py         |  13 +-
 sdks/python/pytest.ini                             |   1 +
 sdks/python/setup.py                               |   1 +
 sdks/python/test-suites/dataflow/common.gradle     |   4 +-
 website/www/site/content/en/blog/beam-2.36.0.md    |   2 +-
 33 files changed, 933 insertions(+), 802 deletions(-)
 copy .github/PULL_REQUEST_TEMPLATE.md => .test-infra/BUILD_STATUS.md (95%)
 copy sdks/java/io/{synthetic/src/test/java/org/apache/beam/sdk/io/synthetic/SyntheticTestUtils.java => amazon-web-services2/src/test/java/org/apache/beam/sdk/io/aws2/options/SerializationTestUtil.java} (55%)
 copy sdks/python/apache_beam/examples/complete/{autocomplete_test.py => autocomplete_it_test.py} (59%)
 copy sdks/python/apache_beam/examples/complete/{estimate_pi_test.py => estimate_pi_it_test.py} (58%)
 copy sdks/python/apache_beam/examples/complete/{top_wikipedia_sessions_test.py => top_wikipedia_sessions_it_test.py} (65%)
 create mode 100644 sdks/python/apache_beam/examples/cookbook/coders_it_test.py
 copy sdks/python/apache_beam/{testing/load_tests => runners/interactive/dataproc}/__init__.py (100%)