Skip to content

Commit 45fd2cb

Browse files
authored
fix(deps): update dependency com.google.auth:google-auth-library-oauth2-http to v1.14.0 (#1183)
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.google.auth:google-auth-library-oauth2-http](https://togithub.com/googleapis/google-auth-library-java) | `1.13.0` -> `1.14.0` | [![age](https://badges.renovateapi.com/packages/maven/com.google.auth:google-auth-library-oauth2-http/1.14.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.auth:google-auth-library-oauth2-http/1.14.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.auth:google-auth-library-oauth2-http/1.14.0/compatibility-slim/1.13.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.auth:google-auth-library-oauth2-http/1.14.0/confidence-slim/1.13.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### ⚠ Dependency Lookup Warnings ⚠ Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>googleapis/google-auth-library-java</summary> ### [`v1.14.0`](https://togithub.com/googleapis/google-auth-library-java/blob/HEAD/CHANGELOG.md#&#8203;1140-httpsgithubcomgoogleapisgoogle-auth-library-javacomparev1130v1140-2022-12-06) [Compare Source](https://togithub.com/googleapis/google-auth-library-java/compare/v1.13.0...v1.14.0) ##### Features - Add GDCH support ([#&#8203;1087](https://togithub.com/googleapis/google-auth-library-java/issues/1087)) ([cfafb2d](https://togithub.com/googleapis/google-auth-library-java/commit/cfafb2d4c8d6ab3179e709ff09fc09e6dbc11a70)) - Adding functional tests for Compute Engine ([#&#8203;1105](https://togithub.com/googleapis/google-auth-library-java/issues/1105)) ([6f32ac3](https://togithub.com/googleapis/google-auth-library-java/commit/6f32ac3d4db91ff05fd7134ad6c788a16ffe44f4)) - Introduce Environment Variable for Quota Project Id ([#&#8203;1082](https://togithub.com/googleapis/google-auth-library-java/issues/1082)) ([040acef](https://togithub.com/googleapis/google-auth-library-java/commit/040acefec507f419f6e4ec4eab9645a6e3888a15)) - Next release from main branch is 1.13.0 ([#&#8203;1077](https://togithub.com/googleapis/google-auth-library-java/issues/1077)) ([d56eee0](https://togithub.com/googleapis/google-auth-library-java/commit/d56eee07911ba65a685ccba585e71061037ea756)) ##### Bug Fixes - AwsCredentials should not call metadata server if security creds and region are retrievable through environment vars ([#&#8203;1100](https://togithub.com/googleapis/google-auth-library-java/issues/1100)) ([1ff5772](https://togithub.com/googleapis/google-auth-library-java/commit/1ff57720609fdf27f28b9c543c1ef63b57892593)) - Not loosing the access token when calling UserCredentials#ToBuil… ([#&#8203;993](https://togithub.com/googleapis/google-auth-library-java/issues/993)) ([84afdb8](https://togithub.com/googleapis/google-auth-library-java/commit/84afdb8f8d41e781dc93f04626411e10b35689de)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **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 [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/gapic-generator-java). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4yNC4wIiwidXBkYXRlZEluVmVyIjoiMzQuMjQuMCJ9-->
1 parent 7528b45 commit 45fd2cb

File tree

4 files changed

+31
-19
lines changed

4 files changed

+31
-19
lines changed

gapic-generator-java-bom/pom.xml

+22-3
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,21 @@
2323
<dependencies>
2424
<!-- Major external dependencies -->
2525
<dependency>
26-
<groupId>io.grpc</groupId>
27-
<artifactId>grpc-bom</artifactId>
28-
<version>${grpc.version}</version>
26+
<groupId>com.google.auth</groupId>
27+
<artifactId>google-auth-library-bom</artifactId>
28+
<version>${google.auth.version}</version>
29+
<type>pom</type>
30+
<scope>import</scope>
31+
</dependency>
32+
<dependency>
33+
<groupId>com.google.code.gson</groupId>
34+
<artifactId>gson</artifactId>
35+
<version>${gson.version}</version>
36+
</dependency>
37+
<dependency>
38+
<groupId>com.google.guava</groupId>
39+
<artifactId>guava-bom</artifactId>
40+
<version>${guava.version}</version>
2941
<type>pom</type>
3042
<scope>import</scope>
3143
</dependency>
@@ -36,6 +48,13 @@
3648
<type>pom</type>
3749
<scope>import</scope>
3850
</dependency>
51+
<dependency>
52+
<groupId>io.grpc</groupId>
53+
<artifactId>grpc-bom</artifactId>
54+
<version>${grpc.version}</version>
55+
<type>pom</type>
56+
<scope>import</scope>
57+
</dependency>
3958

4059
<!-- Libraries published from this repositories -->
4160
<dependency>

gapic-generator-java-pom-parent/pom.xml

+2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
consistent across modules in this repository -->
2828
<javax.annotation-api.version>1.3.2</javax.annotation-api.version>
2929
<grpc.version>1.51.1</grpc.version>
30+
<google.auth.version>1.14.0</google.auth.version>
31+
<gson.version>2.10</gson.version>
3032
<guava.version>31.1-jre</guava.version>
3133
<protobuf.version>3.21.10</protobuf.version>
3234
</properties>

gax-java/pom.xml

+6-15
Original file line numberDiff line numberDiff line change
@@ -61,25 +61,16 @@
6161
</dependency>
6262
<dependency>
6363
<groupId>com.google.auth</groupId>
64-
<artifactId>google-auth-library-credentials</artifactId>
65-
<version>1.13.0</version>
64+
<artifactId>google-auth-library-bom</artifactId>
65+
<version>${google.auth.version}</version>
66+
<type>pom</type>
67+
<scope>import</scope>
6668
</dependency>
6769
<dependency>
6870
<groupId>org.threeten</groupId>
6971
<artifactId>threetenbp</artifactId>
7072
<version>1.6.5</version>
7173
</dependency>
72-
<dependency>
73-
<groupId>com.google.auth</groupId>
74-
<artifactId>google-auth-library-oauth2-http</artifactId>
75-
<version>1.13.0</version>
76-
<exclusions>
77-
<exclusion>
78-
<groupId>com.google.errorprone</groupId>
79-
<artifactId>error_prone_annotations</artifactId>
80-
</exclusion>
81-
</exclusions>
82-
</dependency>
8374
<dependency>
8475
<groupId>com.google.code.findbugs</groupId>
8576
<artifactId>jsr305</artifactId>
@@ -88,7 +79,7 @@
8879
<dependency>
8980
<groupId>com.google.guava</groupId>
9081
<artifactId>guava</artifactId>
91-
<version>31.1-jre</version>
82+
<version>${guava.version}</version>
9283
<exclusions>
9384
<exclusion>
9485
<groupId>com.google.errorprone</groupId>
@@ -153,7 +144,7 @@
153144
<dependency>
154145
<groupId>com.google.code.gson</groupId>
155146
<artifactId>gson</artifactId>
156-
<version>2.10</version>
147+
<version>${gson.version}</version>
157148
</dependency>
158149
<dependency>
159150
<groupId>org.graalvm.sdk</groupId>

java-iam/samples/cloud-client/snippets/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<dependency>
3232
<groupId>com.google.auth</groupId>
3333
<artifactId>google-auth-library-oauth2-http</artifactId>
34-
<version>1.13.0</version>
34+
<version>1.14.0</version>
3535
</dependency>
3636
<dependency>
3737
<groupId>com.google.http-client</groupId>

0 commit comments

Comments
 (0)