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 2020/08/08 02:48:59 UTC

[beam] tag nightly-master updated (a46fbb8 -> 84cbd9b)

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

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


*** WARNING: tag nightly-master was modified! ***

    from a46fbb8  (commit)
      to 84cbd9b  (commit)
    from a46fbb8  Merge pull request #12472 from davidcavazos/sum-docs
     add fed3763  [BEAM-10630] Check load tests as part of the release process (#12455)
     add c31d2e1  [BEAM-10647] Fixes get_query_location bug in BigQueryWrapper
     add 82a7f62  Merge pull request #12480: [BEAM-10647] Fixes get_query_location bug in BigQueryWrapper
     add 078b55d  [BEAM-7390] Add top code snippets (#12482)
     add f6637f7  GH-Actions workflow checks are GCP variables set [depends on BEAM-10599] (#12381)
     add 2639142  documentation(xlang-java): updating docs as per comments
     add e17cc60  documentation(xlang-python): updating docs as per comments
     add e55ff90  documentation(xlang-python): resolving ascii errors
     add d5d4fb5  Merge pull request #12465: [BEAM-9932] Adding documentation to describe cross-language test pipelines
     add d30c912  Add ElementLimiters to all Cache Managers.
     add af2f071  Merge pull request #12412 from [BEAM-10603] Add ElementLimiters to all Cache Managers.
     add 70ff22d  fix precommit errors (#12500)
     add 99e8c27  Support NULL query parameters in ZetaSQL and fix nullable ARRAY bug
     add 4c36792  Merge pull request #12483 from robinyqiu/param
     add 567652e  [BEAM-10662] Fix GCP variable check in build python wheels workflow
     add a79ec0c  Merge pull request #12501 from TobKed/BEAM-10662-fix-GCP-variable-check-in-build-python-wheels-workflow
     add 9303f65  Merge pull request #12473 from [BEAM-10601] DICOM API Beam IO connector e2e test
     add 73408de  [BEAM-10653] Modularize BeamSqlDslUdfUdafTest.
     add 0d6c6b7  Merge pull request #12484 from ibzib/BEAM-10653
     add c484cdc  [BEAM-10619] Report ratio of implemented pandas tests (#12440)
     add 26f905d  [BEAM-10289] Fixing bug in Go harness split response.
     add e86eb59  Merge pull request #12504 [BEAM-10289] Fixing bug in Go harness split response.
     add 84cbd9b  [BEAM-8460] Exclude category containing failing tests for spark/flink to restore green test signal. (#12503)

No new revisions were added by this update.

Summary of changes:
 .github/workflows/build_wheels.yml                 |  41 +++-
 CHANGES.md                                         |   1 +
 .../core/construction/ValidateRunnerXlangTest.java |  92 ++++++++-
 runners/flink/flink_runner.gradle                  |   1 +
 runners/spark/build.gradle                         |   1 +
 .../ci/ci_check_are_gcp_variables_set.sh           |  50 ++---
 sdks/go/pkg/beam/core/runtime/harness/harness.go   |  31 +--
 .../provider/bigquery/BeamSqlUnparseContext.java   |  52 +++++
 .../sdk/extensions/sql/BeamSqlDslUdfUdafTest.java  | 149 ++++++++------
 .../extensions/sql/zetasql/BeamZetaSqlCalcRel.java |  29 ++-
 .../zetasql/ZetaSqlCalciteTranslationUtils.java    |   9 +-
 .../zetasql/translation/ExpressionConverter.java   |  13 +-
 .../LimitOffsetScanToLimitConverter.java           |   7 +-
 .../sql/zetasql/ZetaSqlDialectSpecTest.java        |   6 +-
 sdks/python/apache_beam/dataframe/doctests.py      |  92 ++++++++-
 sdks/python/apache_beam/dataframe/doctests_test.py |  13 +-
 sdks/python/apache_beam/dataframe/expressions.py   |   1 -
 .../apache_beam/dataframe/pandas_doctests_test.py  |  35 +++-
 sdks/python/apache_beam/io/gcp/bigquery_tools.py   |  39 ++--
 .../apache_beam/io/gcp/bigquery_tools_test.py      |  41 +++-
 sdks/python/apache_beam/io/gcp/dicomclient.py      |   3 -
 .../apache_beam/io/gcp/dicomio_integration_test.py | 227 +++++++++++++++++++++
 .../runners/interactive/cache_manager.py           |  47 ++++-
 .../runners/interactive/cache_manager_test.py      |  28 +++
 .../runners/interactive/caching/streaming_cache.py |  51 ++++-
 .../interactive/caching/streaming_cache_test.py    | 110 ++++++++++
 .../interactive/options/capture_limiters.py        |   4 +-
 .../interactive/options/capture_limiters_test.py   |   2 +-
 .../interactive/testing/test_cache_manager.py      |  18 +-
 .../transforms/validate_runner_xlang_test.py       | 107 ++++++++++
 .../site/content/en/contribute/release-guide.md    |  44 +++-
 .../transforms/python/aggregation/top.md           | 144 +++++++++++--
 32 files changed, 1276 insertions(+), 212 deletions(-)
 copy website/www/build_code_samples.sh => scripts/ci/ci_check_are_gcp_variables_set.sh (52%)
 create mode 100644 sdks/python/apache_beam/io/gcp/dicomio_integration_test.py