We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f4ac37 commit e65da1dCopy full SHA for e65da1d
CHANGELOG.md
@@ -1,5 +1,14 @@
1
# Changelog
2
3
+## 0.18.0
4
+
5
+_2025-09_28_
6
7
+- Upgrade to sbt-houserules 0.11.6
8
+- Upgrade to sbt-ci-release 1.11.2
9
+- Upgrade to sbt 1.11.6
10
+- Upgrade to enumeration-ext 0.5.0
11
12
## 0.17.1
13
14
_2025-07-16_
modules/skunk/src/main/scala/io/taig/sql/ext/skunk/root.scala
@@ -16,7 +16,7 @@ def upsert[F[_]: Monad, A](tx: Tx[F])(
16
update: (Sx[F], A) => F[Unit],
17
hasChanged: (A, A) => Boolean
18
)(a: A): F[Upsert[A]] = create(tx.session, a).flatMap:
19
- case true => Upsert.Created(a).pure
+ case true => Upsert.Created(a).pure
20
case false =>
21
get(tx.session, a).flatMap: current =>
22
if hasChanged(current, a)
0 commit comments