From 29785895871b1793af34b54b94447f53a5253d0d Mon Sep 17 00:00:00 2001 From: Teo Camarasu Date: Wed, 27 Aug 2025 09:03:27 +0100 Subject: [PATCH] Mention GHC-9.12 in changelog --- Changelog.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index d3e63272..1d24bbec 100644 --- a/Changelog.md +++ b/Changelog.md @@ -12,9 +12,11 @@ - Added new `Encoder` type with three members: `binary`, which is the Hasql binary encoder, `text` which encodes a type in PostgreSQL's text format (needed for nested arrays) and `quote`, which is the does the thing that the function we previously called `encode` does (i.e., `a -> Opaleye.PrimExpr`). +- Add `elem` and `elem1` to `Rel8.Array` for testing if an element is contained in `[]` and `NonEmpty` `Expr`s. + - Support hasql-1.9 -- Add `elem` and `elem1` to `Rel8.Array` for testing if an element is contained in `[]` and `NonEmpty` `Expr`s. +- Support GHC-9.12 ## Changed