Skip to content

Commit

Permalink
deps: update dependencies (#46)
Browse files Browse the repository at this point in the history
* deps: update dependencies

All updates:

| Package | Update | Change |
|---|---|---|
| `com.google.auth:google-auth-library-oauth2-http` | minor | `0.18.0` -> `0.19.0` |
| `com.google.auto.value:auto-value` (jdk 1.8+) | minor | `1.6.6` -> `1.7` |
| `com.google.auto.value:auto-value-annotations` | minor | `1.6.6` -> `1.7` |
| [com.google.api:gax-bom](https://togithub.com/googleapis/gax-java) ([source](https://togithub.com/googleapis/gax-java)) | minor | `1.51.0` -> `1.52.0` |
| [com.google.api:gax-grpc](https://togithub.com/googleapis/gax-java) ([source](https://togithub.com/googleapis/gax-java)) | minor | `1.51.0` -> `1.52.0` |
| [com.google.cloud:google-cloud-core-grpc](https://togithub.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-core-grpc) | minor | `1.91.3` -> `1.92.0` |
| [com.google.cloud:google-cloud-core](https://togithub.com/googleapis/google-cloud-java/tree/master/google-cloud-clients/google-cloud-core) | minor | `1.91.3` -> `1.92.0` |

**manually copied and merged from the following PRs**
* deps: update gax.version to v1.52.0 #31
* deps: update google.core.version to v1.92.0 #35
* deps: update dependency com.google.auth:google-auth-library-oauth2-http to v0.19.0 #30

* deps: fix DEFAULT_CHUNK_SIZE in response to the same change in java-core 1.92.0
  • Loading branch information
stephaniewang526 committed Dec 18, 2019
1 parent d3e5e12 commit fd8ce1a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Expand Up @@ -60,7 +60,7 @@ public class TableDataWriteChannelTest {
.setMaxBadRecords(10)
.build();
private static final int MIN_CHUNK_SIZE = 256 * 1024;
private static final int DEFAULT_CHUNK_SIZE = 8 * MIN_CHUNK_SIZE;
private static final int DEFAULT_CHUNK_SIZE = 60 * MIN_CHUNK_SIZE;
private static final int CUSTOM_CHUNK_SIZE = 4 * MIN_CHUNK_SIZE;
private static final Random RANDOM = new Random();
private static final LoadJobConfiguration JOB_CONFIGURATION =
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Expand Up @@ -63,10 +63,10 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<github.global.server>github</github.global.server>
<site.installationModule>google-cloud-bigquery-parent</site.installationModule>
<google.core.version>1.91.3</google.core.version>
<google.core.version>1.92.0</google.core.version>
<google.api-common.version>1.8.1</google.api-common.version>
<google.common-protos.version>1.17.0</google.common-protos.version>
<gax.version>1.51.0</gax.version>
<gax.version>1.52.0</gax.version>
<grpc.version>1.25.0</grpc.version>
<protobuf.version>3.11.1</protobuf.version>
<junit.version>4.12</junit.version>
Expand Down Expand Up @@ -98,7 +98,7 @@
<dependency>
<groupId>com.google.auth</groupId>
<artifactId>google-auth-library-oauth2-http</artifactId>
<version>0.18.0</version>
<version>0.19.0</version>
</dependency>
<dependency>
<groupId>org.checkerframework</groupId>
Expand Down Expand Up @@ -325,7 +325,7 @@
<jdk>1.7</jdk>
</activation>
<properties>
<auto-value-annotations.version>1.6.6</auto-value-annotations.version>
<auto-value-annotations.version>1.7</auto-value-annotations.version>
<auto-value.version>1.4</auto-value.version>
</properties>
</profile>
Expand All @@ -336,7 +336,7 @@
<jdk>[1.8,)</jdk>
</activation>
<properties>
<auto-value.version>1.6.6</auto-value.version>
<auto-value.version>1.7</auto-value.version>
<auto-value-annotations.version>${auto-value.version}</auto-value-annotations.version>
</properties>
</profile>
Expand Down

0 comments on commit fd8ce1a

Please sign in to comment.