Skip to content

Commit

Permalink
Trigger Release 4.6.1 (#2743)
Browse files Browse the repository at this point in the history
  • Loading branch information
deusaquilus authored May 25, 2023
1 parent 20cd20d commit db720a3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
13 changes: 10 additions & 3 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ id: changelog
title: "Quill Changelog"
---

# 4.6.1

- [Remove support of Scala 2.11 && Update ZIO to 2.0.12](https://github.com/zio/zio-quill/pull/2722)
- Remove support of Scala 2.11
- Update Scala versions
Expand All @@ -12,6 +14,11 @@ title: "Quill Changelog"
- Update sbt-scoverage to 2.0.0
- Update zio-json to 0.5.0

#### Notes:
- Besides for Scala-version support update and the dependency bumps (thank you Guizmaii and Juliano!) the purpose of this
release is to set the stage of future infrastructure changes e.g. adding Scalafmt to do formatting instead
of the long-standing scalariform.

# 4.6.0

- [Implementing Postgres json/jsonb encoding via zio-json](https://github.com/zio/zio-quill/pull/2615)
Expand All @@ -24,9 +31,9 @@ title: "Quill Changelog"
- [jasync zio current schema configuration, jasync version update](https://github.com/zio/zio-quill/pull/2588)

#### Migration Notes:
- It is no longer necessary to do extend `Embedded` for case classes that should be embedded within an entity.
- It is no longer necessary to do extend `Embedded` for case classes that should be embedded within an entity.
In the case that the embedded case class "looks" like it should be encoded/decoded (i.e. it has only one field),
an additional warning has been introduced to notify the user of this potential issue.
an additional warning has been introduced to notify the user of this potential issue.

# 4.4.1

Expand Down Expand Up @@ -55,7 +62,7 @@ title: "Quill Changelog"
#### Migration Notes:
- The `infix` interpolator is now deprecated because in Scala 2, infix is a keyword. Instead of
`infix"MyUdf(${person.name})"` use `sql"MyUdf(${person.name})"`. For contexts such as Doobie that already
have an `sql` interpolator. Import `context.compat._` and use the `qsql` interpolator instead.
have an `sql` interpolator. Import `context.compat._` and use the `qsql` interpolator instead.

# 4.1.0

Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ThisBuild / version := "4.6.1-SNAPSHOT"
ThisBuild / version := "4.6.1"

0 comments on commit db720a3

Please sign in to comment.