Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the go-deps group with 5 updates #3550

Merged
merged 1 commit into from
Jul 2, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 1, 2024

Bumps the go-deps group with 5 updates:

Package From To
github.com/apache/beam/sdks/v2 2.56.0 2.57.0
google.golang.org/api 0.185.0 0.187.0
google.golang.org/genproto 0.0.0-20240617180043-68d350f18fd4 0.0.0-20240624140628-dc46fd24d27d
google.golang.org/genproto/googleapis/api 0.0.0-20240610135401-a8a62080eff3 0.0.0-20240617180043-68d350f18fd4
google.golang.org/genproto/googleapis/rpc 0.0.0-20240617180043-68d350f18fd4 0.0.0-20240624140628-dc46fd24d27d

Updates github.com/apache/beam/sdks/v2 from 2.56.0 to 2.57.0

Release notes

Sourced from github.com/apache/beam/sdks/v2's releases.

Beam 2.57.0 Release

We are happy to present the new 2.57.0 release of Beam. This release includes both improvements and new functionality. See the download page for this release.

For more information on changes in 2.57.0, check out the detailed release notes.

Highlights

  • Apache Beam adds Python 3.12 support (#29149).
  • Added FlinkRunner for Flink 1.18 (#30789).

I/Os

  • Ensure that BigtableIO closes the reader streams (#31477).

New Features / Improvements

  • Added Feast feature store handler for enrichment transform (Python) (#30957).
  • BigQuery per-worker metrics are reported by default for Streaming Dataflow Jobs (Java) (#31015)
  • Adds inMemory() variant of Java List and Map side inputs for more efficient lookups when the entire side input fits into memory.
  • Beam YAML now supports the jinja templating syntax. Template variables can be passed with the (json-formatted) --jinja_variables flag.
  • DataFrame API now supports pandas 2.1.x and adds 12 more string functions for Series.(#31185).
  • Added BigQuery handler for enrichment transform (Python) (#31295)
  • Disable soft delete policy when creating the default bucket for a project (Java) (#31324).
  • Added DoFn.SetupContextParam and DoFn.BundleContextParam which can be used as a python DoFn.process, Map, or FlatMap parameter to invoke a context manager per DoFn setup or bundle (analogous to using setup/teardown or start_bundle/finish_bundle respectively.)
  • Go SDK Prism Runner
    • Pre-built Prism binaries are now part of the release and are available via the Github release page. (#29697).
    • Some pipelines will work on Java and Python, but this is in part to prepare for real runner wrappers in 2.58.0
    • ProcessingTime is now handled synthetically with TestStream pipelines and Non-TestStream pipelines, for fast test pipeline execution by default. (#30083).
      • Prism does NOT yet support "real time" execution for this release.
  • Improve processing for large elements to reduce the chances for exceeding 2GB protobuf limits (Python)([https://redirect.github.com/[Bug]: Beam Python pipelines with large elements sometimes fail with: Exception serializing message: Elements exceeds maximum protobuf size of 2GB apache/beam#31607]).

Breaking Changes

  • Java's View.asList() side inputs are now optimized for iterating rather than indexing when in the global window. This new implementation still supports all (immutable) List methods as before, but some of the random access methods like get() and size() will be slower. To use the old implementation one can use View.asList().withRandomAccess().
  • SchemaTransforms implemented with TypedSchemaTransformProvider now produce a configuration Schema with snake_case naming convention (#31374). This will make the following cases problematic:
    • Running a pre-2.57.0 remote SDK pipeline containing a 2.57.0+ Java SchemaTransform, and vice versa:

... (truncated)

Changelog

Sourced from github.com/apache/beam/sdks/v2's changelog.

[2.57.0] - 2024-06-26

Highlights

  • Apache Beam adds Python 3.12 support (#29149).
  • Added FlinkRunner for Flink 1.18 (#30789).

I/Os

  • Ensure that BigtableIO closes the reader streams (#31477).

New Features / Improvements

  • Added Feast feature store handler for enrichment transform (Python) (#30957).
  • BigQuery per-worker metrics are reported by default for Streaming Dataflow Jobs (Java) (#31015)
  • Adds inMemory() variant of Java List and Map side inputs for more efficient lookups when the entire side input fits into memory.
  • Beam YAML now supports the jinja templating syntax. Template variables can be passed with the (json-formatted) --jinja_variables flag.
  • DataFrame API now supports pandas 2.1.x and adds 12 more string functions for Series.(#31185).
  • Added BigQuery handler for enrichment transform (Python) (#31295)
  • Disable soft delete policy when creating the default bucket for a project (Java) (#31324).
  • Added DoFn.SetupContextParam and DoFn.BundleContextParam which can be used as a python DoFn.process, Map, or FlatMap parameter to invoke a context manager per DoFn setup or bundle (analogous to using setup/teardown or start_bundle/finish_bundle respectively.)
  • Go SDK Prism Runner
    • Pre-built Prism binaries are now part of the release and are available via the Github release page. (#29697).
    • ProcessingTime is now handled synthetically with TestStream pipelines and Non-TestStream pipelines, for fast test pipeline execution by default. (#30083).
      • Prism does NOT yet support "real time" execution for this release.
  • Improve processing for large elements to reduce the chances for exceeding 2GB protobuf limits (Python)([https://redirect.github.com/[Bug]: Beam Python pipelines with large elements sometimes fail with: Exception serializing message: Elements exceeds maximum protobuf size of 2GB apache/beam#31607]).

Breaking Changes

  • Java's View.asList() side inputs are now optimized for iterating rather than indexing when in the global window. This new implementation still supports all (immutable) List methods as before, but some of the random access methods like get() and size() will be slower. To use the old implementation one can use View.asList().withRandomAccess().
  • SchemaTransforms implemented with TypedSchemaTransformProvider now produce a configuration Schema with snake_case naming convention (#31374). This will make the following cases problematic:
    • Running a pre-2.57.0 remote SDK pipeline containing a 2.57.0+ Java SchemaTransform, and vice versa:
    • Running a 2.57.0+ remote SDK pipeline containing a pre-2.57.0 Java SchemaTransform
    • All direct uses of Python's SchemaAwareExternalTransform should be updated to use new snake_case parameter names.
  • Upgraded Jackson Databind to 2.15.4 (Java) (#26743). jackson-2.15 has known breaking changes. An important one is it imposed a buffer limit for parser. If your custom PTransform/DoFn are affected, refer to #31580 for mitigation.
Commits

Updates google.golang.org/api from 0.185.0 to 0.187.0

Release notes

Sourced from google.golang.org/api's releases.

v0.187.0

0.187.0 (2024-07-01)

Features

Bug Fixes

  • gensupport: Wrap chunk upload err for retries (#2657) (a758bc1)
  • Pass through gRPC api key option to new auth lib (#2664) (e051997)

v0.186.0

0.186.0 (2024-06-25)

Features

Changelog

Sourced from google.golang.org/api's changelog.

0.187.0 (2024-07-01)

Features

Bug Fixes

  • gensupport: Wrap chunk upload err for retries (#2657) (a758bc1)
  • Pass through gRPC api key option to new auth lib (#2664) (e051997)

0.186.0 (2024-06-25)

Features

Commits

Updates google.golang.org/genproto from 0.0.0-20240617180043-68d350f18fd4 to 0.0.0-20240624140628-dc46fd24d27d

Commits

Updates google.golang.org/genproto/googleapis/api from 0.0.0-20240610135401-a8a62080eff3 to 0.0.0-20240617180043-68d350f18fd4

Commits

Updates google.golang.org/genproto/googleapis/rpc from 0.0.0-20240617180043-68d350f18fd4 to 0.0.0-20240624140628-dc46fd24d27d

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the go-deps group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/apache/beam/sdks/v2](https://github.com/apache/beam) | `2.56.0` | `2.57.0` |
| [google.golang.org/api](https://github.com/googleapis/google-api-go-client) | `0.185.0` | `0.187.0` |
| [google.golang.org/genproto](https://github.com/googleapis/go-genproto) | `0.0.0-20240617180043-68d350f18fd4` | `0.0.0-20240624140628-dc46fd24d27d` |
| [google.golang.org/genproto/googleapis/api](https://github.com/googleapis/go-genproto) | `0.0.0-20240610135401-a8a62080eff3` | `0.0.0-20240617180043-68d350f18fd4` |
| [google.golang.org/genproto/googleapis/rpc](https://github.com/googleapis/go-genproto) | `0.0.0-20240617180043-68d350f18fd4` | `0.0.0-20240624140628-dc46fd24d27d` |


Updates `github.com/apache/beam/sdks/v2` from 2.56.0 to 2.57.0
- [Release notes](https://github.com/apache/beam/releases)
- [Changelog](https://github.com/apache/beam/blob/master/CHANGES.md)
- [Commits](apache/beam@v2.56.0...v2.57.0)

Updates `google.golang.org/api` from 0.185.0 to 0.187.0
- [Release notes](https://github.com/googleapis/google-api-go-client/releases)
- [Changelog](https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md)
- [Commits](googleapis/google-api-go-client@v0.185.0...v0.187.0)

Updates `google.golang.org/genproto` from 0.0.0-20240617180043-68d350f18fd4 to 0.0.0-20240624140628-dc46fd24d27d
- [Commits](https://github.com/googleapis/go-genproto/commits)

Updates `google.golang.org/genproto/googleapis/api` from 0.0.0-20240610135401-a8a62080eff3 to 0.0.0-20240617180043-68d350f18fd4
- [Commits](https://github.com/googleapis/go-genproto/commits)

Updates `google.golang.org/genproto/googleapis/rpc` from 0.0.0-20240617180043-68d350f18fd4 to 0.0.0-20240624140628-dc46fd24d27d
- [Commits](https://github.com/googleapis/go-genproto/commits)

---
updated-dependencies:
- dependency-name: github.com/apache/beam/sdks/v2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
- dependency-name: google.golang.org/api
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
- dependency-name: google.golang.org/genproto
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-deps
- dependency-name: google.golang.org/genproto/googleapis/api
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-deps
- dependency-name: google.golang.org/genproto/googleapis/rpc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner July 1, 2024 21:52
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Jul 1, 2024
@dependabot dependabot bot requested a review from jiggoha July 1, 2024 21:52
@mhutchinson
Copy link
Contributor

/gcbrun

@mhutchinson mhutchinson merged commit f28d227 into master Jul 2, 2024
12 checks passed
@mhutchinson mhutchinson deleted the dependabot/go_modules/go-deps-22c2efd6aa branch July 2, 2024 08:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file go Pull requests that update Go code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant