diff --git a/.github/.OwlBot.lock.yaml b/.github/.OwlBot.lock.yaml
index 426cf83e2e..f60d774937 100644
--- a/.github/.OwlBot.lock.yaml
+++ b/.github/.OwlBot.lock.yaml
@@ -13,4 +13,5 @@
# limitations under the License.
docker:
image: gcr.io/cloud-devrel-public-resources/owlbot-java:latest
- digest: sha256:b0b1c1c89570e229b1026372a2b8989ba31495007055b8d30178b7648503eefa
+ digest: sha256:fc52b202aa298a50a12c64efd04fea3884d867947effe2fa85382a246c09e813
+# created: 2022-04-06T16:30:03.627422514Z
diff --git a/.github/auto-label.yaml b/.github/auto-label.yaml
new file mode 100644
index 0000000000..4caef688b7
--- /dev/null
+++ b/.github/auto-label.yaml
@@ -0,0 +1,15 @@
+# Copyright 2021 Google LLC
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+requestsize:
+ enabled: true
diff --git a/CHANGELOG.md b/CHANGELOG.md
index aa6f061c94..2233081833 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,12 @@
# Changelog
+### [2.10.6](https://github.com/googleapis/java-bigquery/compare/v2.10.5...v2.10.6) (2022-04-07)
+
+
+### Dependencies
+
+* update dependency com.google.apis:google-api-services-bigquery to v2-rev20220326-1.32.1 ([#1964](https://github.com/googleapis/java-bigquery/issues/1964)) ([4ff65d6](https://github.com/googleapis/java-bigquery/commit/4ff65d6147c4dc4472a8adfb1840a1d5a3e5a044))
+
### [2.10.5](https://github.com/googleapis/java-bigquery/compare/v2.10.4...v2.10.5) (2022-03-31)
diff --git a/README.md b/README.md
index 7caf2e63ac..6e5d6cd870 100644
--- a/README.md
+++ b/README.md
@@ -21,7 +21,7 @@ See https://github.com/GoogleCloudPlatform/cloud-opensource-java/wiki/The-Google
com.google.cloud
libraries-bom
- 25.0.0
+ 25.1.0
pom
import
@@ -44,7 +44,7 @@ If you are using Maven without BOM, add this to your dependencies:
com.google.cloud
google-cloud-bigquery
- 2.10.4
+ 2.10.5
```
@@ -59,13 +59,13 @@ implementation 'com.google.cloud:google-cloud-bigquery'
If you are using Gradle without BOM, add this to your dependencies
```Groovy
-implementation 'com.google.cloud:google-cloud-bigquery:2.10.4'
+implementation 'com.google.cloud:google-cloud-bigquery:2.10.5'
```
If you are using SBT, add this to your dependencies
```Scala
-libraryDependencies += "com.google.cloud" % "google-cloud-bigquery" % "2.10.4"
+libraryDependencies += "com.google.cloud" % "google-cloud-bigquery" % "2.10.5"
```
## Authentication
diff --git a/benchmark/pom.xml b/benchmark/pom.xml
index bdf7895226..09db7ee3b7 100644
--- a/benchmark/pom.xml
+++ b/benchmark/pom.xml
@@ -6,7 +6,7 @@
google-cloud-bigquery-parent
com.google.cloud
- 2.10.5
+ 2.10.6
diff --git a/google-cloud-bigquery/pom.xml b/google-cloud-bigquery/pom.xml
index 2ebb5644da..8982f70294 100644
--- a/google-cloud-bigquery/pom.xml
+++ b/google-cloud-bigquery/pom.xml
@@ -3,7 +3,7 @@
4.0.0
com.google.cloud
google-cloud-bigquery
- 2.10.5
+ 2.10.6
jar
BigQuery
https://github.com/googleapis/java-bigquery
@@ -11,7 +11,7 @@
com.google.cloud
google-cloud-bigquery-parent
- 2.10.5
+ 2.10.6
google-cloud-bigquery
diff --git a/google-cloud-bigquery/src/test/java/com/google/cloud/bigquery/it/ITBigQueryTest.java b/google-cloud-bigquery/src/test/java/com/google/cloud/bigquery/it/ITBigQueryTest.java
index 9f877cf23c..c8f7ce4fa3 100644
--- a/google-cloud-bigquery/src/test/java/com/google/cloud/bigquery/it/ITBigQueryTest.java
+++ b/google-cloud-bigquery/src/test/java/com/google/cloud/bigquery/it/ITBigQueryTest.java
@@ -943,7 +943,8 @@ public void testCreateAndUpdateTableWithPolicyTags() throws IOException {
.setParent(String.format("projects/%s/locations/%s", PROJECT_ID, "us"))
.setTaxonomy(
Taxonomy.newBuilder()
- .setDisplayName("testing taxonomy")
+ // DisplayName must be unique across org
+ .setDisplayName(String.format("testing taxonomy %s", Instant.now().getNano()))
.setDescription("taxonomy created for integration tests")
.addActivatedPolicyTypes(PolicyType.FINE_GRAINED_ACCESS_CONTROL)
.build())
diff --git a/pom.xml b/pom.xml
index b4a85eca25..1734d40f46 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
com.google.cloud
google-cloud-bigquery-parent
pom
- 2.10.5
+ 2.10.6
BigQuery Parent
https://github.com/googleapis/java-bigquery
@@ -53,7 +53,7 @@
UTF-8
github
google-cloud-bigquery-parent
- v2-rev20220322-1.32.1
+ v2-rev20220326-1.32.1
2.9.0
@@ -84,7 +84,7 @@
com.google.cloud
google-cloud-bigquery
- 2.10.5
+ 2.10.6
diff --git a/samples/install-without-bom/pom.xml b/samples/install-without-bom/pom.xml
index 75bc791710..db59ee8691 100644
--- a/samples/install-without-bom/pom.xml
+++ b/samples/install-without-bom/pom.xml
@@ -45,7 +45,7 @@
com.google.cloud
google-cloud-bigquery
- 2.10.4
+ 2.10.5
diff --git a/samples/native-image-sample/pom.xml b/samples/native-image-sample/pom.xml
index fcad43274a..f4893182a9 100644
--- a/samples/native-image-sample/pom.xml
+++ b/samples/native-image-sample/pom.xml
@@ -39,7 +39,7 @@
com.google.cloud
libraries-bom
- 25.0.0
+ 25.1.0
pom
import
diff --git a/samples/snapshot/pom.xml b/samples/snapshot/pom.xml
index db32f08ab6..209529a340 100644
--- a/samples/snapshot/pom.xml
+++ b/samples/snapshot/pom.xml
@@ -44,7 +44,7 @@
com.google.cloud
google-cloud-bigquery
- 2.10.5
+ 2.10.6
diff --git a/samples/snippets/pom.xml b/samples/snippets/pom.xml
index 63b2bb4c03..01e2977f4c 100644
--- a/samples/snippets/pom.xml
+++ b/samples/snippets/pom.xml
@@ -47,7 +47,7 @@
com.google.cloud
libraries-bom
- 25.0.0
+ 25.1.0
pom
import
diff --git a/versions.txt b/versions.txt
index 864c8eede3..89d6c4b54a 100644
--- a/versions.txt
+++ b/versions.txt
@@ -1,4 +1,4 @@
# Format:
# module:released-version:current-version
-google-cloud-bigquery:2.10.5:2.10.5
\ No newline at end of file
+google-cloud-bigquery:2.10.6:2.10.6
\ No newline at end of file