Update Changelog.md

This commit is contained in:
Ollie Charles 2021-06-29 12:42:50 +01:00 committed by GitHub
parent a321ede878
commit 13f6f711f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,7 +6,13 @@
* Rename `whereExists` and `whereNotExists` to `present` and `absent` respectively.
* Require Opaleye 0.7.3.0. This version has better support for lateral queries, which can improve query plans, especially in `optional`/`LEFT JOIN` (https://github.com/circuithub/rel8/issues/72)
* Require Opaleye 0.7.3.0. This version has better support for lateral queries, which can improve query plans, especially in `optional`/`LEFT JOIN` (https://github.com/circuithub/rel8/issues/72)
* `exists` is now implemented in terms of the SQL `EXISTS` keyword (https://github.com/circuithub/rel8/pull/69)
* `alignBy` no longer requires `Table`s. (https://github.com/circuithub/rel8/pull/67)
* The `Labelable` type class has been removed as it's no longer necessary. This class was mostly internal, though was visible in some public API functions. (https://github.com/circuithub/rel8/pull/76)
# 1.0.0.1 (2021-06-21)