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/10/18 15:48:16 UTC

[beam] branch dependabot/go_modules/sdks/golang.org/x/text-0.4.0 updated (3d08f9bf857 -> 23f93aea8b4)

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

github-bot pushed a change to branch dependabot/go_modules/sdks/golang.org/x/text-0.4.0
in repository https://gitbox.apache.org/repos/asf/beam.git


 discard 3d08f9bf857 Bump golang.org/x/text from 0.3.7 to 0.4.0 in /sdks
     add 2b4bb6b683f Update scopes to match the existing set and update test to clear credentials during failure (#23677)
     add df80a0599c4 [TPC-DS] Use "nonpartitioned" input for Jenkins jobs
     add fe41855c322 Merge pull request #23665: [TPC-DS] Use "nonpartitioned" input for Jenkins jobs
     add 5d735aef207 [GitHub Actions] - Run RC Validations Workflow  (#23531)
     add 5cd7dd74c84 Add workflow to update milestone on issue close (#23629)
     add 107a43d27ea add website page about data processing for ML (#23552)
     add 78e1c0a0184 [Go SDK] Dataframe API wrapper  (#23450)
     add fac0d03fd56 [Go SDK]: Adds Automated Python Expansion Service (#23582)
     add 116327c52a7 Include CombineFn's in __all__ (#23685)
     add bd8110c765d Bump google.golang.org/grpc from 1.50.0 to 1.50.1 in /sdks (#23654)
     add 23f93aea8b4 Bump golang.org/x/text from 0.3.7 to 0.4.0 in /sdks

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (3d08f9bf857)
            \
             N -- N -- N   refs/heads/dependabot/go_modules/sdks/golang.org/x/text-0.4.0 (23f93aea8b4)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .github/actions/common-rc-validation/action.yaml   |  54 ++
 .github/workflows/assign_milestone.yml             |  84 ++++
 .github/workflows/run_rc_validation.yml            | 559 +++++++++++++++++++++
 .../job_PostCommit_Java_Tpcds_Dataflow.groovy      |   4 +-
 .../jenkins/job_PostCommit_Java_Tpcds_Flink.groovy |   4 +-
 .../jenkins/job_PostCommit_Java_Tpcds_Spark.groovy |   8 +-
 CHANGES.md                                         |   1 +
 CI.md                                              |  15 +
 sdks/go.mod                                        |   2 +-
 sdks/go.sum                                        |   4 +-
 sdks/go/pkg/beam/core/runtime/xlangx/expand.go     |  71 +++
 .../xlangx/{payload_test.go => expand_test.go}     |  31 +-
 .../core/runtime/xlangx/expansionx/download.go     |  72 ++-
 .../beam/core/runtime/xlangx/expansionx/process.go |  21 +-
 .../core/runtime/xlangx/expansionx/process_test.go |   4 +-
 sdks/go/pkg/beam/core/runtime/xlangx/registry.go   |  17 +-
 sdks/go/pkg/beam/schema.go                         |  17 +
 .../beam/transforms/xlang/dataframe/dataframe.go   |  87 ++++
 .../pkg/beam/transforms/xlang/python/external.go   | 129 +++++
 sdks/go/test/integration/integration.go            |   1 +
 .../xlang/dataframe/dataframe.go}                  |  38 +-
 .../transforms/xlang/dataframe/dataframe_test.go}  |  54 +-
 .../apache_beam/examples/wordcount_it_test.py      |  41 +-
 .../python/apache_beam/options/pipeline_options.py |   3 +-
 sdks/python/apache_beam/transforms/combiners.py    |  17 +-
 .../content/en/documentation/ml/data-processing.md | 116 +++++
 .../site/content/en/documentation/ml/overview.md   |   3 +
 .../partials/section-menu/en/documentation.html    |   1 +
 28 files changed, 1354 insertions(+), 104 deletions(-)
 create mode 100644 .github/actions/common-rc-validation/action.yaml
 create mode 100644 .github/workflows/assign_milestone.yml
 create mode 100644 .github/workflows/run_rc_validation.yml
 copy sdks/go/pkg/beam/core/runtime/xlangx/{payload_test.go => expand_test.go} (64%)
 create mode 100644 sdks/go/pkg/beam/transforms/xlang/dataframe/dataframe.go
 create mode 100644 sdks/go/pkg/beam/transforms/xlang/python/external.go
 copy sdks/go/test/integration/{primitives/flatten.go => transforms/xlang/dataframe/dataframe.go} (56%)
 copy sdks/go/test/{regression/pardo_test.go => integration/transforms/xlang/dataframe/dataframe_test.go} (57%)
 create mode 100755 website/www/site/content/en/documentation/ml/data-processing.md