From 6a51bd5b8d80d5b07b2dc92e78068286e4595f2a Mon Sep 17 00:00:00 2001 From: Stephen Afam-Osemene Date: Fri, 3 Jan 2025 16:01:40 +0000 Subject: [PATCH] Update CHANGELOG and Bump Version --- CHANGELOG.md | 6 ++++++ go.mod | 2 ++ 2 files changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2df01e9b..b97213cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [4.17.2] - 2025-01-03 + +### Fixed + +- Revert change to `DeleteAll` method. The change causes incorrect changes on tables with multi-column primary keys + ## [4.17.1] - 2024-11-11 ### Fixed diff --git a/go.mod b/go.mod index 5b1d2496..0a88e56d 100644 --- a/go.mod +++ b/go.mod @@ -46,6 +46,8 @@ require ( ) retract ( + v4.17.1 // Generates faulty code for DeleteAll if the table has multiple foreign keys + v4.17.0 // Generates faulty code for DeleteAll if the table has multiple foreign keys v4.10.0 // Generated models are invalid due to a wrong assignment v4.9.0 // Generated code shows v4.8.6, messed up commit tagging and untidy go.mod )