Skip to content

Commit 314ca04

Browse files
authored
Merge pull request #2243 from danicheg/fix-scaladoc-link
Fix dead link to the 'Preserving Time Instants' article
2 parents 67a44cf + 49dca68 commit 314ca04

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

build.sbt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ ThisBuild / crossScalaVersions := Seq(scala212Version, scala213Version, scala3Ve
4141
ThisBuild / developers += tlGitHubDev("tpolecat", "Rob Norris")
4242
ThisBuild / tpolecatDefaultOptionsMode :=
4343
(if (sys.env.contains("CI")) CiMode else DevMode)
44-
ThisBuild / tlSonatypeUseLegacyHost := false
4544
ThisBuild / githubWorkflowJavaVersions := Seq(JavaSpec.temurin("11"))
4645
ThisBuild / githubWorkflowBuildPreamble ++= Seq(
4746
WorkflowStep.Run(

modules/mysql/src/main/scala/doobie/mysql/MysqlJavaTimeInstances.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import java.time.ZoneOffset
1818
/** Instances for JSR-310 date time types.
1919
*
2020
* Note that to ensure instants are preserved you may need to use one of the solutions described in
21-
* [[https://docs.oracle.com/cd/E17952_01/connector-j-8.0-en/connector-j-time-instants.html]].
21+
* [[https://docs.oracle.com/cd/E17952_01/connector-j-en/connector-j-time-instants.html]].
2222
*
2323
* OffsetTime instance is not supported as there is no semantically equivalent type on the MySQL side.
2424
*/

modules/mysql/src/test/scala/doobie/mysql/MySQLTestTransactor.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ object MySQLTestTransactor {
1111

1212
val xa = Transactor.fromDriverManager[IO](
1313
"com.mysql.cj.jdbc.Driver",
14-
// args from solution 2a https://docs.oracle.com/cd/E17952_01/connector-j-8.0-en/connector-j-time-instants.html
14+
// args from solution 2a https://docs.oracle.com/cd/E17952_01/connector-j-en/connector-j-time-instants.html
1515
"jdbc:mysql://localhost:3306/world?preserveInstants=true&connectionTimeZone=SERVER",
1616
"root",
1717
"password",

0 commit comments

Comments
 (0)