diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f1b005..9cd86e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # CHANGELOG +## 1.1.1 + +* fix uncapped memory growth when importing data via logical replication ([#226][]) +* fix handling of large data columns (e.g. text or json) causing overflow of 1GB + chunk size ([#220][]) +* restrict the maximum singular datum size to 256MB to ensure that the maximum + datum size of 1GB is not exceeded in columnar metadata ([#222][]) +* do not insert vectorization node into the plan if columnar scan isn't being used + ([#228][]) + +[#226]: https://github.com/hydradatabase/hydra/pull/226 +[#220]: https://github.com/hydradatabase/hydra/pull/220 +[#222]: https://github.com/hydradatabase/hydra/pull/222 +[#228]: https://github.com/hydradatabase/hydra/pull/228 + ## 1.1.0 * added support for upserts and other `ON CONFLICT` clauses for `INSERT` diff --git a/VERSION b/VERSION index 9084fa2..524cb55 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.1.0 +1.1.1