Skip to content

Commit

Permalink
Merge branch 'master' into 639_hikaricp
Browse files Browse the repository at this point in the history
  • Loading branch information
jdegoes authored Aug 11, 2022
2 parents a68eb3c + 421c226 commit e07707f
Show file tree
Hide file tree
Showing 22 changed files with 1,993 additions and 418 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: CI

env:
JDK_JAVA_OPTIONS: -XX:+PrintCommandLineFlags -XX:+UseG1GC -Xmx4g -Xms4g
JVM_OPTS: -XX:+PrintCommandLineFlags -XX:+UseG1GC -Xmx4g -Xms4g

on:
pull_request:
push:
Expand Down Expand Up @@ -31,7 +35,7 @@ jobs:
fail-fast: false
matrix:
java: ['[email protected]', '[email protected]']
scala: ['2.12.15', '2.13.8']
scala: ['2.12.16', '2.13.8']
steps:
- name: Checkout current branch
uses: actions/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "3.5.3"
version = "3.5.8"
maxColumn = 120
align.preset = most
continuationIndent.defnSite = 2
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ Feature | PostgreSQL | SQL Server | Oracle | MySQL
:------------ | :-------------| :-------------|:-------------------| :-------------
Render Read | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
Render Delete | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
Render Update | :heavy_check_mark: | | :heavy_check_mark: | :heavy_check_mark: |
Render Insert | :heavy_check_mark: | | :heavy_check_mark: | :heavy_check_mark: |
Render Update | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
Render Insert | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
Functions | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
Types | :white_check_mark: | | | :white_check_mark: |
Operators | | | | |
Expand Down
12 changes: 6 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ addCommandAlias("check", "all scalafmtSbtCheck scalafmtCheck test:scalafmtCheck"

val zioVersion = "2.0.0"
val zioSchemaVersion = "0.2.0"
val testcontainersVersion = "1.17.2"
val testcontainersScalaVersion = "0.40.8"
val testcontainersVersion = "1.17.3"
val testcontainersScalaVersion = "0.40.10"
val logbackVersion = "1.2.11"

lazy val root = project
Expand Down Expand Up @@ -118,7 +118,7 @@ lazy val jdbc = project
libraryDependencies ++= Seq(
"dev.zio" %% "zio-test" % zioVersion % Test,
"dev.zio" %% "zio-test-sbt" % zioVersion % Test,
"org.postgresql" % "postgresql" % "42.3.6" % Test,
"org.postgresql" % "postgresql" % "42.4.1" % Test,
"com.dimafeng" %% "testcontainers-scala-postgresql" % testcontainersScalaVersion % Test
)
)
Expand Down Expand Up @@ -161,7 +161,7 @@ lazy val mysql = project
"org.testcontainers" % "database-commons" % testcontainersVersion % Test,
"org.testcontainers" % "jdbc" % testcontainersVersion % Test,
"org.testcontainers" % "mysql" % testcontainersVersion % Test,
"mysql" % "mysql-connector-java" % "8.0.29" % Test,
"mysql" % "mysql-connector-java" % "8.0.30" % Test,
"com.dimafeng" %% "testcontainers-scala-mysql" % testcontainersScalaVersion % Test,
"ch.qos.logback" % "logback-classic" % logbackVersion % Test
)
Expand All @@ -180,7 +180,7 @@ lazy val oracle = project
"org.testcontainers" % "database-commons" % testcontainersVersion % Test,
"org.testcontainers" % "oracle-xe" % testcontainersVersion % Test,
"org.testcontainers" % "jdbc" % testcontainersVersion % Test,
"com.oracle.database.jdbc" % "ojdbc8" % "21.5.0.0" % Test,
"com.oracle.database.jdbc" % "ojdbc8" % "21.6.0.0.1" % Test,
"com.dimafeng" %% "testcontainers-scala-oracle-xe" % testcontainersScalaVersion % Test,
"ch.qos.logback" % "logback-classic" % logbackVersion % Test
)
Expand All @@ -199,7 +199,7 @@ lazy val postgres = project
"org.testcontainers" % "database-commons" % testcontainersVersion % Test,
"org.testcontainers" % "postgresql" % testcontainersVersion % Test,
"org.testcontainers" % "jdbc" % testcontainersVersion % Test,
"org.postgresql" % "postgresql" % "42.3.6" % Compile,
"org.postgresql" % "postgresql" % "42.4.1" % Compile,
"com.dimafeng" %% "testcontainers-scala-postgresql" % testcontainersScalaVersion % Test,
"ch.qos.logback" % "logback-classic" % logbackVersion % Test
)
Expand Down
1 change: 0 additions & 1 deletion core/jvm/src/main/scala/zio/sql/expr.scala
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,6 @@ trait ExprModule extends NewtypesModule with FeaturesModule with OpsModule {
val Ascii = FunctionDef[String, Int](FunctionName("ascii"))
val CharLength = FunctionDef[String, Int](FunctionName("character_length"))
val Concat = FunctionDef[(String, String), String](FunctionName("concat")) // todo varargs
val ConcatWs2 = FunctionDef[(String, String), String](FunctionName("concat_ws"))
val ConcatWs3 = FunctionDef[(String, String, String), String](FunctionName("concat_ws"))
val ConcatWs4 = FunctionDef[(String, String, String, String), String](FunctionName("concat_ws"))
val Lower = FunctionDef[String, String](FunctionName("lower"))
Expand Down
2 changes: 1 addition & 1 deletion mysql/project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.6.2
sbt.version=1.7.1
Loading

0 comments on commit e07707f

Please sign in to comment.