diff --git a/.github/.OwlBot.lock.yaml b/.github/.OwlBot.lock.yaml
index 7649651c..66768d0c 100644
--- a/.github/.OwlBot.lock.yaml
+++ b/.github/.OwlBot.lock.yaml
@@ -13,4 +13,4 @@
# limitations under the License.
docker:
image: gcr.io/cloud-devrel-public-resources/owlbot-java:latest
- digest: sha256:264c6d5da60ff1684fbdd2b268d6a3ffca2038246e0948a06f15ca0c3cf28ce8
+ digest: sha256:27d0a1232b3656f0610cc1a55beb157cb3b63b1ca8b3dfba0bcd8b9dfecda4a1
diff --git a/.kokoro/dependencies.sh b/.kokoro/dependencies.sh
index d7476cfe..bd896024 100755
--- a/.kokoro/dependencies.sh
+++ b/.kokoro/dependencies.sh
@@ -57,54 +57,3 @@ retry_with_backoff 3 10 \
-Dclirr.skip=true
mvn -B dependency:analyze -DfailOnWarning=true
-
-echo "****************** DEPENDENCY LIST COMPLETENESS CHECK *******************"
-## Run dependency list completeness check
-function completenessCheck() {
- # Output dep list with compile scope generated using the original pom
- # Running mvn dependency:list on Java versions that support modules will also include the module of the dependency.
- # This is stripped from the output as it is not present in the flattened pom.
- # Only dependencies with 'compile' or 'runtime' scope are included from original dependency list.
- msg "Generating dependency list using original pom..."
- mvn dependency:list -f pom.xml -DincludeScope=runtime -Dsort=true | grep '\[INFO] .*:.*:.*:.*:.*' | sed -e 's/ --.*//' >.org-list.txt
-
- # Output dep list generated using the flattened pom (only 'compile' and 'runtime' scopes)
- msg "Generating dependency list using flattened pom..."
- mvn dependency:list -f .flattened-pom.xml -DincludeScope=runtime -Dsort=true | grep '\[INFO] .*:.*:.*:.*:.*' >.new-list.txt
-
- # Compare two dependency lists
- msg "Comparing dependency lists..."
- diff .org-list.txt .new-list.txt >.diff.txt
- if [[ $? == 0 ]]
- then
- msg "Success. No diff!"
- else
- msg "Diff found. See below: "
- msg "You can also check .diff.txt file located in $1."
- cat .diff.txt
- return 1
- fi
-}
-
-# Allow failures to continue running the script
-set +e
-
-error_count=0
-for path in **/.flattened-pom.xml
-do
- # Check flattened pom in each dir that contains it for completeness
- dir=$(dirname "$path")
- pushd "$dir"
- completenessCheck "$dir"
- error_count=$(($error_count + $?))
- popd
-done
-
-if [[ $error_count == 0 ]]
-then
- msg "All checks passed."
- exit 0
-else
- msg "Errors found. See log statements above."
- exit 1
-fi
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1ea24398..ad33908a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,29 @@
# Changelog
+## [3.0.6](https://github.com/googleapis/java-shared-dependencies/compare/v3.0.5...v3.0.6) (2022-11-07)
+
+
+### Dependencies
+
+* Update dependency com.fasterxml.jackson:jackson-bom to v2.14.0 ([#901](https://github.com/googleapis/java-shared-dependencies/issues/901)) ([33c5511](https://github.com/googleapis/java-shared-dependencies/commit/33c55112ff485da1d7a0a32d8b6dade33aa04ff8))
+* Update dependency com.google.api-client:google-api-client-bom to v2.0.1 ([#899](https://github.com/googleapis/java-shared-dependencies/issues/899)) ([4029e89](https://github.com/googleapis/java-shared-dependencies/commit/4029e89be507ddfa030515565fdb6fbf8997324e))
+* Update dependency com.google.api:api-common to v2.2.2 ([#892](https://github.com/googleapis/java-shared-dependencies/issues/892)) ([5c59fbd](https://github.com/googleapis/java-shared-dependencies/commit/5c59fbd3c3cf3efbfda50420c8048e3ff257084c))
+* Update dependency com.google.cloud:grpc-gcp to v1.3.1 ([#884](https://github.com/googleapis/java-shared-dependencies/issues/884)) ([9fffe24](https://github.com/googleapis/java-shared-dependencies/commit/9fffe243b631565a00b0a848a6c73163b1dd33a4))
+* Update dependency com.google.code.gson:gson to v2.10 ([#887](https://github.com/googleapis/java-shared-dependencies/issues/887)) ([15017de](https://github.com/googleapis/java-shared-dependencies/commit/15017de39a35f90bc1b38b828edc23fdce524a07))
+* Update dependency com.google.http-client:google-http-client-bom to v1.42.3 ([#893](https://github.com/googleapis/java-shared-dependencies/issues/893)) ([4c0de9b](https://github.com/googleapis/java-shared-dependencies/commit/4c0de9bd188bfab5fe126c8b01b4d7168f8a5079))
+* Update dependency com.google.protobuf:protobuf-bom to v3.21.9 ([#889](https://github.com/googleapis/java-shared-dependencies/issues/889)) ([8576271](https://github.com/googleapis/java-shared-dependencies/commit/85762716d1bbb97c447f86451094fb8af2528470))
+* Update dependency io.grpc:grpc-bom to v1.50.2 ([#878](https://github.com/googleapis/java-shared-dependencies/issues/878)) ([fd569af](https://github.com/googleapis/java-shared-dependencies/commit/fd569af1e5f1b195e2421fc9e02d8b67afe1c638))
+* Update dependency org.checkerframework:checker-qual to v3.27.0 ([#896](https://github.com/googleapis/java-shared-dependencies/issues/896)) ([f0f7931](https://github.com/googleapis/java-shared-dependencies/commit/f0f7931937a0ed9a32fd87cd58c82b787d368242))
+* Update dependency org.threeten:threetenbp to v1.6.4 ([#894](https://github.com/googleapis/java-shared-dependencies/issues/894)) ([899682d](https://github.com/googleapis/java-shared-dependencies/commit/899682d0405645d9d5288b298af2fda228414669))
+* Update gax.version to v2.19.5 ([#903](https://github.com/googleapis/java-shared-dependencies/issues/903)) ([3e4d8b3](https://github.com/googleapis/java-shared-dependencies/commit/3e4d8b35d3f682b07326ffa0a3e552d097f25a65))
+* Update google.common-protos.version to v2.10.0 ([#900](https://github.com/googleapis/java-shared-dependencies/issues/900)) ([53b54c3](https://github.com/googleapis/java-shared-dependencies/commit/53b54c35f3a7c19df488921a6077e7a9bfb0b103))
+* Update google.core.version to v2.8.23 ([#885](https://github.com/googleapis/java-shared-dependencies/issues/885)) ([686dd7c](https://github.com/googleapis/java-shared-dependencies/commit/686dd7c8f541189302e8cac4ae72ed7d967b5b3f))
+* Update google.core.version to v2.8.24 ([#890](https://github.com/googleapis/java-shared-dependencies/issues/890)) ([1effda3](https://github.com/googleapis/java-shared-dependencies/commit/1effda381c7b886f5ae4d2dac9473da821e655fe))
+* Update google.core.version to v2.8.27 ([#902](https://github.com/googleapis/java-shared-dependencies/issues/902)) ([3bcb804](https://github.com/googleapis/java-shared-dependencies/commit/3bcb804dec4358ed0a9c6c35cf4c35f817821e9a))
+* Update iam.version to v1.6.6 ([#886](https://github.com/googleapis/java-shared-dependencies/issues/886)) ([03d0690](https://github.com/googleapis/java-shared-dependencies/commit/03d0690f01f9217e31dd65d55c28a47f2f2deb22))
+* Update iam.version to v1.6.7 ([#895](https://github.com/googleapis/java-shared-dependencies/issues/895)) ([6cebc20](https://github.com/googleapis/java-shared-dependencies/commit/6cebc205daa98b96a8b27b3fc3cd222319b27e59))
+
## [3.0.5](https://github.com/googleapis/java-shared-dependencies/compare/v3.0.4...v3.0.5) (2022-10-20)
diff --git a/dependency-convergence-check/pom.xml b/dependency-convergence-check/pom.xml
index ca981bcb..1651aee4 100644
--- a/dependency-convergence-check/pom.xml
+++ b/dependency-convergence-check/pom.xml
@@ -3,7 +3,7 @@
4.0.0
com.google.cloud
shared-dependencies-dependency-convergence-test
- 3.0.5
+ 3.0.6
Dependency convergence test for certain artifacts in Google Cloud Shared Dependencies
https://github.com/googleapis/java-shared-dependencies
@@ -46,7 +46,7 @@
com.google.cloud
google-cloud-shared-dependencies
- 3.0.5
+ 3.0.6
pom
import
diff --git a/first-party-dependencies/pom.xml b/first-party-dependencies/pom.xml
index 8421640c..4346ed7b 100644
--- a/first-party-dependencies/pom.xml
+++ b/first-party-dependencies/pom.xml
@@ -6,7 +6,7 @@
com.google.cloud
first-party-dependencies
pom
- 3.0.5
+ 3.0.6
Google Cloud First-party Shared Dependencies
https://github.com/googleapis/java-shared-dependencies
@@ -55,20 +55,20 @@
UTF-8
${project.artifactId}
- 1.50.1
- 2.19.4
- 1.3.0
- 2.9.1
+ 1.50.2
+ 2.19.5
+ 1.3.1
+ 2.10
31.1-jre
- 3.21.8
- 2.2.1
- 2.9.6
- 2.8.22
+ 3.21.9
+ 2.2.2
+ 2.10.0
+ 2.8.27
1.12.1
- 1.42.2
+ 1.42.3
1.34.1
- 2.0.0
- 1.6.4
+ 2.0.1
+ 1.6.7
diff --git a/pom.xml b/pom.xml
index 247b4008..cbf68bca 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
com.google.cloud
google-cloud-shared-dependencies
pom
- 3.0.5
+ 3.0.6
first-party-dependencies
third-party-dependencies
@@ -65,14 +65,14 @@
com.google.cloud
first-party-dependencies
- 3.0.5
+ 3.0.6
pom
import
com.google.cloud
third-party-dependencies
- 3.0.5
+ 3.0.6
pom
import
diff --git a/third-party-dependencies/pom.xml b/third-party-dependencies/pom.xml
index 1a87e94e..ab70eb41 100644
--- a/third-party-dependencies/pom.xml
+++ b/third-party-dependencies/pom.xml
@@ -6,7 +6,7 @@
com.google.cloud
third-party-dependencies
pom
- 3.0.5
+ 3.0.6
Google Cloud Third-party Shared Dependencies
https://github.com/googleapis/java-shared-dependencies
@@ -57,18 +57,18 @@
UTF-8
${project.artifactId}
- 1.6.3
+ 1.6.4
1.3.2
1.22
0.31.1
3.0.2
2.16
- 2.13.4.20221013
+ 2.14.0
1.15
4.4.15
4.5.13
- 3.26.0
+ 3.27.0
0.25.0
diff --git a/upper-bound-check/pom.xml b/upper-bound-check/pom.xml
index 67af97d6..f7e978ed 100644
--- a/upper-bound-check/pom.xml
+++ b/upper-bound-check/pom.xml
@@ -4,7 +4,7 @@
com.google.cloud
shared-dependencies-upper-bound-test
pom
- 3.0.5
+ 3.0.6
Upper bound test for Google Cloud Shared Dependencies
https://github.com/googleapis/java-shared-dependencies
@@ -53,7 +53,7 @@
com.google.cloud
google-cloud-shared-dependencies
- 3.0.5
+ 3.0.6
pom
import
diff --git a/versions.txt b/versions.txt
index 39077dba..69c2f702 100644
--- a/versions.txt
+++ b/versions.txt
@@ -1,4 +1,4 @@
# Format:
# module:released-version:current-version
-google-cloud-shared-dependencies:3.0.5:3.0.5
+google-cloud-shared-dependencies:3.0.6:3.0.6