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/03/05 04:21:22 UTC

[beam] branch nightly-refs/heads/master updated (2aa4da0 -> 45cc2f8)

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 2aa4da0  [BEAM-13857] Add K:V flags for expansion service jars and addresses to Go ITs. (#16908)
     add 133f569  BEAM-14011 fix s3 filesystem multipart copy
     add 80d63c0  Merge pull request #16987: [BEAM-14011] fix s3 filesystem multipart copy
     add 3b5c9bf  Merge pull request #16842 from [BEAM-13932][Playground] Container's user privileges
     add 68a5119  Doc updates and blog post for 2.37.0 (#16887)
     add 3ed277b  Remove resolved issue in docs + update class path on sample (#17018)
     add 31a0922  [BEAM-14016] Fixed flaky postcommit test (#17009)
     add 4163124  [BEAM-13925] months in date constructor are 0 indexed
     add 3d71323  Merge pull request #17013: [BEAM-13925] months in date constructor are 0 indexed
     add 133ef19  [BEAM-13947] Add split() and rsplit(), non-deferred column operations on categorical columns (#16677)
     add cffd6a9  py: Import beam plugins before starting SdkHarness
     add 423bde9  Merge pull request #16998 [BEAM-13993] [BEAM-10039] Import beam plugins before starting SdkHarness
     add bb5dd05  BEAM-14026 - Fixes bug related to Unnesting nested rows in an array (#16988)
     add 87e01f5  Remove resolved issue in notebook
     add 0c21b99  Merge pull request #17021 from davidcavazos/patch-1
     add 2e8cecb  Bump numpy bound to include 1.22 and regenerate container deps.
     add 45cc2f8  [BEAM-13995] [BEAM-13876] [BEAM-14025] Bump numpy bound to include 1.22 and regenerate container deps.

No new revisions were added by this update.

Summary of changes:
 CHANGES.md                                         |   4 +-
 .../transforms/python/elementwise/pardo-py.ipynb   |   2 -
 playground/backend/containers/go/Dockerfile        |  12 +-
 playground/backend/containers/go/build.gradle      |   4 -
 playground/backend/containers/go/entrypoint.sh     |   9 ++
 playground/backend/containers/go/proxy.sh          |  24 ----
 playground/backend/containers/java/Dockerfile      |  13 +-
 playground/backend/containers/java/build.gradle    |   4 -
 playground/backend/containers/java/entrypoint.sh   |   9 ++
 playground/backend/containers/java/proxy.sh        |  24 ----
 playground/backend/containers/python/Dockerfile    |  12 +-
 playground/backend/containers/python/build.gradle  |   4 -
 playground/backend/containers/python/entrypoint.sh |  10 ++
 playground/backend/containers/python/proxy.sh      |  25 ----
 playground/backend/containers/scio/Dockerfile      |  12 +-
 playground/backend/containers/scio/build.gradle    |   4 -
 playground/backend/containers/scio/entrypoint.sh   |   9 ++
 playground/backend/containers/scio/proxy.sh        |  24 ----
 .../infrastructure/proxy/allow_list_proxy.py       |   6 +-
 scripts/ci/pr-bot/processNewPrs.ts                 |  10 +-
 .../sdk/extensions/sql/impl/rel/BeamUnnestRel.java |  35 ++++-
 .../extensions/sql/BeamSqlDslUnnestRowsTest.java   | 142 +++++++++++++++++++++
 .../apache/beam/sdk/io/aws/s3/S3FileSystem.java    |  10 +-
 .../apache/beam/sdk/io/aws2/s3/S3FileSystem.java   |  32 +++--
 .../beam/sdk/io/aws2/s3/S3FileSystemTest.java      |  82 +++++++++---
 sdks/python/apache_beam/dataframe/frames.py        |  71 ++++++++++-
 sdks/python/apache_beam/dataframe/frames_test.py   | 112 ++++++++++++++++
 .../apache_beam/dataframe/pandas_doctests_test.py  |  29 ++++-
 .../snippets/transforms/elementwise/pardo.py       |   2 +-
 .../apache_beam/io/gcp/experimental/spannerio.py   |  27 ++--
 .../python/apache_beam/options/pipeline_options.py |   2 +-
 .../apache_beam/runners/worker/sdk_worker_main.py  |  24 ++++
 .../runners/worker/sdk_worker_main_test.py         |   8 ++
 .../container/py36/base_image_requirements.txt     |  37 +++---
 .../container/py37/base_image_requirements.txt     |  42 +++---
 .../container/py38/base_image_requirements.txt     |  46 +++----
 .../container/py39/base_image_requirements.txt     |  46 +++----
 sdks/python/setup.py                               |   2 +-
 website/www/site/config.toml                       |   2 +-
 website/www/site/content/en/blog/beam-2.37.0.md    | 123 ++++++++++++++++++
 .../transforms/python/elementwise/pardo.md         |   2 -
 .../www/site/content/en/get-started/downloads.md   |   8 ++
 42 files changed, 814 insertions(+), 291 deletions(-)
 delete mode 100644 playground/backend/containers/go/proxy.sh
 delete mode 100644 playground/backend/containers/java/proxy.sh
 delete mode 100644 playground/backend/containers/python/proxy.sh
 delete mode 100644 playground/backend/containers/scio/proxy.sh
 create mode 100644 sdks/java/extensions/sql/src/test/java/org/apache/beam/sdk/extensions/sql/BeamSqlDslUnnestRowsTest.java
 create mode 100644 website/www/site/content/en/blog/beam-2.37.0.md