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/11/14 20:21:36 UTC

[beam] branch dependabot/go_modules/sdks/github.com/aws/aws-sdk-go-v2/feature/s3/manager-1.11.39 updated (d7207150067 -> 0a4a351f3f5)

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

github-bot pushed a change to branch dependabot/go_modules/sdks/github.com/aws/aws-sdk-go-v2/feature/s3/manager-1.11.39
in repository https://gitbox.apache.org/repos/asf/beam.git


 discard d7207150067 Bump github.com/aws/aws-sdk-go-v2/feature/s3/manager in /sdks
     add 1ad0cbc4459 Fix checkArgument format in GcsPath
     add 774923e0dd0 Merge pull request #24141: Fix checkArgument format in GcsPath
     add e563b9dd2f3 [Tour Of Beam] verify that unit exists when saving progress (#24118)
     add 5bd75c25de2 Updates Multi-lang Java quickstart
     add 4a044999b8e Merge pull request #24076 from chamikaramj/multilang_java_updates
     add 330cc2010c9 Cleanup stale BQ datasets (#24158)
     add d5d76b97459 Support SqlTypes Date and Timestamp (MicrosInstant) in AvroUtils (#23969)
     add c600444e1df Bump loader-utils
     add 9e9c6d797ba Merge pull request #24029 from apache/dependabot/npm_and_yarn/sdks/python/apache_beam/runners/interactive/extensions/apache-beam-jupyterlab-sidepanel/loader-utils-1.4.1
     add 9c83de646ab Add more tests for S3 filesystem (#24138)
     add 0a4a351f3f5 Bump github.com/aws/aws-sdk-go-v2/feature/s3/manager 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   (d7207150067)
            \
             N -- N -- N   refs/heads/dependabot/go_modules/sdks/github.com/aws/aws-sdk-go-v2/feature/s3/manager-1.11.39 (0a4a351f3f5)

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:
 ...wJobs.groovy => job_CleanUpGCPResources.groovy} |  12 +-
 .test-infra/tools/build.gradle                     |   4 +
 .test-infra/tools/stale_bq_datasets_cleaner.sh     |  44 +++
 learning/tour-of-beam/backend/function.go          |   8 +
 .../backend/integration_tests/auth_test.go         | 111 +++---
 .../backend/integration_tests/client.go            |  23 +-
 .../backend/integration_tests/function_test.go     |  18 +-
 .../backend/internal/service/content.go            |   8 +
 .../backend/internal/storage/datastore.go          |  27 +-
 .../tour-of-beam/backend/internal/storage/iface.go |   2 +
 .../backend/internal/storage/index.yaml            |   5 +
 .../tour-of-beam/backend/internal/storage/mock.go  |   9 +
 .../backend/samples/api/get_user_progress.json     |   4 +-
 sdks/go.mod                                        |   9 +-
 sdks/go.sum                                        |  15 +
 sdks/go/pkg/beam/io/filesystem/s3/helper_test.go   | 154 ++++++++
 sdks/go/pkg/beam/io/filesystem/s3/s3_test.go       | 389 +++++++++++++++++++++
 sdks/go/pkg/beam/io/filesystem/s3/writer_test.go   |  94 +++++
 .../apache/beam/sdk/schemas/utils/AvroUtils.java   |  91 ++++-
 .../beam/sdk/schemas/utils/AvroUtilsTest.java      |  33 ++
 .../sdk/extensions/gcp/util/gcsfs/GcsPath.java     |   2 +-
 .../apache-beam-jupyterlab-sidepanel/yarn.lock     |  13 +-
 .../sdks/java-multi-language-pipelines.md          |  10 +-
 23 files changed, 1006 insertions(+), 79 deletions(-)
 copy .test-infra/jenkins/{job_CancelStaleDataflowJobs.groovy => job_CleanUpGCPResources.groovy} (81%)
 create mode 100755 .test-infra/tools/stale_bq_datasets_cleaner.sh
 create mode 100644 sdks/go/pkg/beam/io/filesystem/s3/helper_test.go
 create mode 100644 sdks/go/pkg/beam/io/filesystem/s3/s3_test.go
 create mode 100644 sdks/go/pkg/beam/io/filesystem/s3/writer_test.go