Bump bigquery version to first version that supports SNAPSHOT tables (#22049)
Fixes #19860 SNAPSHOT tables in bigquery hold diffs from an underlying table: https://cloud.google.com/bigquery/docs/table-snapshots-intro. But the support in the sdk only came in 1.135.0 : https://github.com/googleapis/java-bigquery/blob/main/CHANGELOG.md#11350-2021-06-28 I picked the most recent 1.135 version. Running ```shell clj -A:dev:ee:ee-dev:drivers:drivers-dev -Stree ``` Shows conflicts on ``` X google-http-client-jackson2 1.39.2 :older-version ; using 1.39.2-sp.1 from google analytics X com.fasterxml.jackson.core/jackson-core 2.12.3 :older-version ; from cheshire we have 2.12.4 X com.google.http-client/google-http-client 1.39.2 :superseded ; using 1.39.2-sp.1 from google-http-client-jackson2 (1.39.2-sp1) X commons-codec/commons-codec 1.15 :use-top ; pinned to this version at top level X com.google.guava/guava 30.1.1-android :use-top ; pinned to 31.0.1-jre top level ``` So I think this change is quite safe. After the release we should investigate the breaking changes that come in the 2.0.0 release and look into getting onto 2.10.10. This version worked locally for me but I don't want to introduce that into the release just yet.
Please register or sign in to comment