Skip to content

Commit 4c7b885

Browse files
datahub-steward[bot]datahub-rewrite-botHenningKoller
authored
Update googleapis-http4s-bigquery to 0.4.5-v2-20240905 (#396)
* Update googleapis-http4s-bigquery to 0.4.5-v2-20240905 * Fix TableFieldSchema match --------- Co-authored-by: datahub-rewrite-bot <datahub-rewrite-bot [email protected]> Co-authored-by: Henning Koller <[email protected]>
1 parent 9f2f663 commit 4c7b885

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ lazy val `http4s-client` = crossProject(JVMPlatform)
172172
// needed because of hard-link in http4s-grpc
173173
// https://github.com/davenverse/http4s-grpc/pull/89
174174
"org.http4s" %% "http4s-ember-core" % "0.23.28",
175-
"net.hamnaberg.googleapis" %% "googleapis-http4s-bigquery" % "0.4.4-v2-20240714",
175+
"net.hamnaberg.googleapis" %% "googleapis-http4s-bigquery" % "0.4.5-v2-20240905",
176176
"com.permutive" %% "gcp-auth" % "1.1.0"
177177
)
178178
},

http4s-client/src/main/scala/no/nrk/bigquery/client/http4s/internal/SchemaHelper.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ object SchemaHelper {
1616

1717
def fromTableFieldSchema(field: TableFieldSchema): BQField =
1818
field match {
19-
case TableFieldSchema(Some(name), _, _, _, tags, desc, _, subFields, _, mode, Some(typ), _, _, _, _) =>
19+
case TableFieldSchema(Some(name), _, _, _, tags, desc, _, subFields, _, mode, Some(typ), _, _, _, _, _) =>
2020
BQField(
2121
name = name,
2222
tpe = BQField.Type.unsafeFromString(typ match {

0 commit comments

Comments
 (0)