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 java group across 1 directory with 5 updates #1201

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 16, 2024

Bumps the java group with 5 updates in the /java directory:

Package From To
org.apache.maven.plugins:maven-javadoc-plugin 3.11.1 3.11.2
com.google.protobuf:protobuf-java 4.28.3 4.29.1
com.google.protobuf:protobuf-java-util 4.28.3 4.29.1
io.grpc:grpc-bom 1.68.1 1.69.0
com.google.api.grpc:proto-google-common-protos 2.49.0 2.50.0

Updates org.apache.maven.plugins:maven-javadoc-plugin from 3.11.1 to 3.11.2

Release notes

Sourced from org.apache.maven.plugins:maven-javadoc-plugin's releases.

3.11.2

🚀 New features and improvements

📦 Dependency updates

👻 Maintenance

Commits
  • 44cbab7 [maven-release-plugin] prepare release maven-javadoc-plugin-3.11.2
  • 3de45d8 use github for scm
  • 45ccf06 Bump com.thoughtworks.qdox:qdox from 2.1.0 to 2.2.0
  • 530fa01 [MJAVADOC-823] legacyMode keeps using module-info.java (-sourcedirectory stil...
  • 3a16d92 Bump commons-io:commons-io from 2.17.0 to 2.18.0
  • 69c1ba7 Migrate from Plexus to Sisu Guice (#341)
  • 39857ea Remove usages of deprecated ReaderFactory class (#339)
  • 314203a [MJAVADOC-814] handle parameters such packages with multi lines (#337)
  • 3bb982d refactor: Replace Plexus AbstractLogEnabled with SLF4J (#338)
  • 76826c8 [MJAVADOC-822] skippedModules should be more scalable and support regex (#336)
  • Additional commits viewable in compare view

Updates com.google.protobuf:protobuf-java from 4.28.3 to 4.29.1

Commits

Updates com.google.protobuf:protobuf-java-util from 4.28.3 to 4.29.1

Updates com.google.protobuf:protobuf-java-util from 4.28.3 to 4.29.1

Updates io.grpc:grpc-bom from 1.68.1 to 1.69.0

Release notes

Sourced from io.grpc:grpc-bom's releases.

v1.69.0

v1.69.0

New Features

  • api: Allow LoadBalancers to specify an authority per-RPC.(#11631) (c167ead85) CallOptions.withAuthority() has higher precedence.
  • netty: Add soft Metadata size limit enforcement. (#11603) (735b3f3fe) The soft limit is a lower size limit that fails an increasing percentage of RPCs as the Metadata size approaches the upper limit. This can be used as an “early warning” that the Metadata size is growing too large
  • alts: support altsCallCredentials in GoogleDefaultChannelCredentials (#11634) (ba8ab796e)
  • xds: Add grpc.xds_client metrics, as documented by OpenTelemetry Metrics (#11661) (20d09cee5). grpc.xds.authority is not yet available

Bug Fixes

  • api: When forwarding from Listener onAddresses to Listener2 continue to use onResult (#11666) (dae078c0a). This fixes a 1.68.1 "IllegalStateException: Not called from the SynchronizationContext" regression (#11662) that could be seen in certain custom NameResolvers
  • okhttp: If the frame handler thread is null do not schedule it on the executor (ef1fe8737). This fixes a 1.68.1 NullPointerException regression when a custom transportExecutor was provided to the channel and it did not have enough threads to run new tasks

Improvements

  • api: Add java.time.Duration overloads to CallOptions, AbstractStub methods that take TimeUnit and a time value (#11562) (766b92379)
  • core: Make timestamp usage in Channelz use nanos from Java.time.Instant when available (#11604) (9176b5528). This increases the timestamp precision from milliseconds
  • okhttp: Fix for ipv6 link local with scope (#11725) (e98e7445b)
  • binder: Let AndroidComponentAddress specify a target UserHandle (#11670) (e58c998a4)
  • servlet: Deframe failures should be logged on the server as warnings (#11645) (a5db67d0c)
  • s2a: Rename the Bazel target s2av2_credentials to s2a (29dd9bad3). The target s2a had been referenced by IO_GRPC_GRPC_JAVA_OVERRIDE_TARGETS but didn’t previously exist
  • services: Make channelz work with proto lite (#11685) (b1703345f). This compatibility is on the source level. There is not a pre-built binary on Maven Central that supports proto lite
  • services: Deprecate ProtoReflectionService (#11681) (921f88ae3). The class implements the deprecated v1alpha of the reflection protocol. Prefer ProtoReflectionServiceV1, which implements the v1 version of the reflection protocol

Dependencies

  • Upgrade proto-google-common-protos to 2.48.0 (1993e68b0)
  • Upgrade google-auth-library to 1.24.1 (1993e68b0)
  • Upgrade error_prone_annotations to 2.30.0 (1993e68b0)
  • Upgrade Guava to 33.3.1-android (1993e68b0)
  • Upgrade opentelemetry-api to 1.43.0 (1993e68b0)
  • xds: Remove Bazel dependency on xds v2 (664f1fcf8). This had been done for the Maven Central binaries in 1.63.0, but had been missed for Bazel builds

Documentation

  • binder: Update error codes doc for new "Safer Intent" rules. (#11639) (fe350cfd5)
  • examples: Use xds-enabled server and xds credentials in example-gcp-csm-observability (#11706) (a79982c7f)

Thanks to
@​niloc132
@​rockspore
@​SreeramdasLavanya
@​vinodhabib

v1.68.2

Bug Fixes

  • api: When forwarding from Listener onAddresses to Listener2 continue to use onResult (grpc/grpc-java#11688). This fixes a 1.68.1 "IllegalStateException: Not called from the SynchronizationContext" regression (#11662) that could be seen in certain custom NameResolvers
  • okhttp: If the frame handler thread is null do not schedule it on the executor (grpc/grpc-java#11716). This fixes a 1.68.1 NullPointerException regression when a custom transportExecutor was provided to the channel and it did not have enough threads to run new tasks

... (truncated)

Commits
  • 34a7cff Bump version to 1.69.0
  • ddc3163 Update README etc to reference 1.69.0
  • e98e744 okhttp: Fix for ipv6 link local with scope (#11725) (#11729)
  • 29dd9ba change s2av2_credentials to s2a
  • a79982c [CSM] Use xds-enabled server and xds credentials in examples (#11706)
  • 20d09ce xds: Add counter and gauge metrics (#11661)
  • 92de2f3 testing: enabled smallLatency test (#11671)
  • 32f4cf4 gae-interop-testing: Upgrade to Java 17
  • e58c998 AndroidComponentAddress includes a target UserHandle (#11670)
  • 6a92a2a interop-testing: Add concurrency condition to the soak test using existing bl...
  • Additional commits viewable in compare view

Updates com.google.api.grpc:proto-google-common-protos from 2.49.0 to 2.50.0

Release notes

Sourced from com.google.api.grpc:proto-google-common-protos's releases.

v2.50.0

2.50.0 (2024-11-14)

Features

  • Add experimental S2A integration in client libraries grpc transport (#3326) (1138ca6)
  • enable selective generation based on service config include list (#3323) (0cddadb)
  • introduce java.time to java-core (#3330) (f202c3b)
  • Update Gapic-Generator to generate libraries using java.time methods (#3321) (b21c9a4)

Bug Fixes

  • Fix flaky test ScheduledRetryingExecutorTest.testCancelOuterFutureAfterStart (#3335) (e73740d)
  • httpjson callables to trace attempts (started, failed) (#3300) (15a64ee)
  • instantiate GaxProperties at build time to ensure we get the protobuf version (#3365) (bb2a3be)
  • protobuf version not always getting set in headers (#3322) (7f6e470)
  • use BuildKit instead of legacy builder to build the Hermetic Build images (#3338) (222fb45)

Dependencies

  • update google auth library dependencies to v1.30.0 (#3367) (a31c682)
  • update grpc dependencies to v1.68.1 (#3240) (c8e3941)

Documentation

Changelog

Sourced from com.google.api.grpc:proto-google-common-protos's changelog.

2.50.0 (2024-11-14)

Features

  • Add experimental S2A integration in client libraries grpc transport (#3326) (1138ca6)
  • enable selective generation based on service config include list (#3323) (0cddadb)
  • introduce java.time to java-core (#3330) (f202c3b)
  • Update Gapic-Generator to generate libraries using java.time methods (#3321) (b21c9a4)

Bug Fixes

  • Fix flaky test ScheduledRetryingExecutorTest.testCancelOuterFutureAfterStart (#3335) (e73740d)
  • httpjson callables to trace attempts (started, failed) (#3300) (15a64ee)
  • instantiate GaxProperties at build time to ensure we get the protobuf version (#3365) (bb2a3be)
  • protobuf version not always getting set in headers (#3322) (7f6e470)
  • use BuildKit instead of legacy builder to build the Hermetic Build images (#3338) (222fb45)

Dependencies

  • update google auth library dependencies to v1.30.0 (#3367) (a31c682)
  • update grpc dependencies to v1.68.1 (#3240) (c8e3941)

Documentation

Commits
  • 137dc4b chore(main): release 2.50.0 (#3327)
  • f202c3b feat: introduce java.time to java-core (#3330)
  • c624b89 build(deps): update dependency com.google.cloud:google-cloud-shared-config to...
  • 18b1bb5 chore: replace graalvm cloud-devrel-kokoro-resources with java-graalvm-ci-pro...
  • 0262dcb chore: update googleapis commit at Sat Oct 26 02:24:11 UTC 2024 (#3318)
  • 1138ca6 feat: Add experimental S2A integration in client libraries grpc transport (#3...
  • b20624c chore: explicitly specify maven central location for renovate-bot version loo...
  • 15a64ee fix: httpjson callables to trace attempts (started, failed) (#3300)
  • 4c5a43c chore: use java-graalvm-ci-prod gcp project for running tests (#3349)
  • bb2a3be fix: instantiate GaxProperties at build time to ensure we get the protobuf ve...
  • Additional commits viewable in compare view

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 java group with 5 updates in the /java directory:

| Package | From | To |
| --- | --- | --- |
| [org.apache.maven.plugins:maven-javadoc-plugin](https://github.com/apache/maven-javadoc-plugin) | `3.11.1` | `3.11.2` |
| [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf) | `4.28.3` | `4.29.1` |
| com.google.protobuf:protobuf-java-util | `4.28.3` | `4.29.1` |
| [io.grpc:grpc-bom](https://github.com/grpc/grpc-java) | `1.68.1` | `1.69.0` |
| [com.google.api.grpc:proto-google-common-protos](https://github.com/googleapis/sdk-platform-java) | `2.49.0` | `2.50.0` |



Updates `org.apache.maven.plugins:maven-javadoc-plugin` from 3.11.1 to 3.11.2
- [Release notes](https://github.com/apache/maven-javadoc-plugin/releases)
- [Commits](apache/maven-javadoc-plugin@maven-javadoc-plugin-3.11.1...maven-javadoc-plugin-3.11.2)

Updates `com.google.protobuf:protobuf-java` from 4.28.3 to 4.29.1
- [Release notes](https://github.com/protocolbuffers/protobuf/releases)
- [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl)
- [Commits](https://github.com/protocolbuffers/protobuf/commits)

Updates `com.google.protobuf:protobuf-java-util` from 4.28.3 to 4.29.1

Updates `com.google.protobuf:protobuf-java-util` from 4.28.3 to 4.29.1

Updates `io.grpc:grpc-bom` from 1.68.1 to 1.69.0
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.68.1...v1.69.0)

Updates `com.google.api.grpc:proto-google-common-protos` from 2.49.0 to 2.50.0
- [Release notes](https://github.com/googleapis/sdk-platform-java/releases)
- [Changelog](https://github.com/googleapis/sdk-platform-java/blob/main/CHANGELOG.md)
- [Commits](googleapis/sdk-platform-java@v2.49.0...v2.50.0)

---
updated-dependencies:
- dependency-name: org.apache.maven.plugins:maven-javadoc-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: java
- dependency-name: com.google.protobuf:protobuf-java
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: java
- dependency-name: com.google.protobuf:protobuf-java-util
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: java
- dependency-name: com.google.protobuf:protobuf-java-util
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: java
- dependency-name: io.grpc:grpc-bom
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: java
- dependency-name: com.google.api.grpc:proto-google-common-protos
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: java
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added Dependencies Updates a dependency Java Java/JVM language support labels Dec 16, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 23, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Dec 23, 2024
@dependabot dependabot bot deleted the dependabot/maven/java/java-51129f1085 branch December 23, 2024 11:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Dependencies Updates a dependency Java Java/JVM language support
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants