Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: spotify/scio
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.14.13
Choose a base ref
...
head repository: spotify/scio
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.14.14
Choose a head ref
  • 14 commits
  • 12 files changed
  • 1 contributor

Commits on Mar 4, 2025

  1. Fall back to TableRow representation for typed BQ writes containing a…

    … LocalDateTime field (#5623)
    clairemcginty authored Mar 4, 2025
    Copy the full SHA
    d0a572d View commit details
  2. Document Scala Steward usage on Github site (#5639)

    clairemcginty authored Mar 4, 2025
    Copy the full SHA
    28cd188 View commit details
  3. Update sbt-scoverage to 2.3.1 (#5637)

    clairemcginty authored Mar 4, 2025
    Copy the full SHA
    a01f7e8 View commit details
  4. Update scalafmt-core to 3.9.2 (#5636)

    clairemcginty authored Mar 4, 2025
    Copy the full SHA
    2b5b784 View commit details
  5. Update sbt, sbt-dependency-tree, ... to 1.10.10 (#5634)

    clairemcginty authored Mar 4, 2025
    Copy the full SHA
    8611faf View commit details
  6. Update cassandra-all to 3.11.19 (#5631)

    clairemcginty authored Mar 4, 2025
    Copy the full SHA
    7404cbd View commit details
  7. Update elasticsearch-java to 8.17.3 (#5625)

    clairemcginty authored Mar 4, 2025
    Copy the full SHA
    20a21f6 View commit details
  8. Copy the full SHA
    0fb2b61 View commit details
  9. Copy the full SHA
    788a336 View commit details
  10. Copy the full SHA
    ab109be View commit details
  11. Copy the full SHA
    d5198a2 View commit details
  12. Copy the full SHA
    93a8793 View commit details
  13. Copy the full SHA
    bec2e76 View commit details

Commits on Mar 5, 2025

  1. Copy the full SHA
    640d575 View commit details
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "3.8.6"
version = "3.9.2"
runner.dialect = scala213

fileOverride {
16 changes: 8 additions & 8 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -81,13 +81,13 @@ val annoyVersion = "0.2.6"
val breezeVersion = "2.1.0"
val caffeineVersion = "2.9.3"
val cassandraDriverVersion = "3.11.5"
val cassandraVersion = "3.11.17"
val cassandraVersion = "3.11.19"
val catsVersion = "2.13.0"
val chillVersion = "0.10.0"
val circeVersion = "0.14.10"
val commonsTextVersion = "1.10.0"
val elasticsearch7Version = "7.17.21"
val elasticsearch8Version = "8.17.1"
val elasticsearch8Version = "8.17.3"
val fansiVersion = "0.5.0"
val featranVersion = "0.8.0"
val httpAsyncClientVersion = "4.1.5"
@@ -97,14 +97,14 @@ val jedisVersion = "5.2.0"
val jnaVersion = "5.16.0"
val junitInterfaceVersion = "0.13.3"
val junitVersion = "4.13.2"
val kantanCodecsVersion = "0.5.3"
val kantanCsvVersion = "0.7.0"
val kantanCodecsVersion = "0.6.0"
val kantanCsvVersion = "0.8.0"
val kryoVersion = "4.0.3"
val magnoliaVersion = "1.1.10"
val magnolifyVersion = "0.7.4"
val metricsVersion = "4.2.30"
val munitVersion = "1.1.0"
val neo4jDriverVersion = "4.4.19"
val neo4jDriverVersion = "4.4.20"
val ndArrayVersion = "0.3.3"
val parquetExtraVersion = "0.4.3"
val parquetVersion = "1.15.0"
@@ -114,7 +114,7 @@ val scalacheckVersion = "1.18.1"
val scalaCollectionCompatVersion = "2.13.0"
val scalaMacrosVersion = "2.1.1"
val scalatestVersion = "3.2.19"
val shapelessVersion = "2.3.12"
val shapelessVersion = "2.3.13"
val sparkeyVersion = "3.2.5"
val tensorFlowVersion = "0.4.2"
val tensorFlowMetadataVersion = "1.16.1"
@@ -1547,7 +1547,7 @@ lazy val `scio-examples` = project
"redis.clients" % "jedis" % jedisVersion,
// runtime
"com.google.cloud.bigdataoss" % "gcs-connector" % s"hadoop2-$bigdataossVersion" % Runtime,
"com.google.cloud.sql" % "mysql-socket-factory-connector-j-8" % "1.23.0" % Runtime,
"com.google.cloud.sql" % "mysql-socket-factory-connector-j-8" % "1.23.1" % Runtime,
// test
"org.scalacheck" %% "scalacheck" % scalacheckVersion % Test
),
@@ -1855,7 +1855,7 @@ lazy val integration = project
"org.apache.beam" % "beam-sdks-java-io-google-cloud-platform" % beamVersion,
"org.slf4j" % "slf4j-api" % slf4jVersion,
// runtime
"com.google.cloud.sql" % "cloud-sql-connector-jdbc-sqlserver" % "1.23.0" % Runtime,
"com.google.cloud.sql" % "cloud-sql-connector-jdbc-sqlserver" % "1.23.1" % Runtime,
"org.apache.beam" % "beam-runners-direct-java" % beamVersion % Runtime,
"org.slf4j" % "slf4j-simple" % slf4jVersion % Runtime,
// test
Loading