This is an automated email from the ASF dual-hosted git repository.
ntimofeev pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cayenne.git
The following commit(s) were added to refs/heads/master by this push:
new 18684c8 CAY-2659 Use new SQLBuilder utility to generate SQL for batch
queries release and upgrade notes
18684c8 is described below
commit 18684c84cf538f531c84b01a2f33ab19b3349c96
Author: Nikita Timofeev <[email protected]>
AuthorDate: Fri May 29 12:03:43 2020 +0300
CAY-2659 Use new SQLBuilder utility to generate SQL for batch queries
release and upgrade notes
---
RELEASE-NOTES.txt | 1 +
UPGRADE.txt | 6 ++++++
2 files changed, 7 insertions(+)
diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt
index 932d086..9858bd3 100644
--- a/RELEASE-NOTES.txt
+++ b/RELEASE-NOTES.txt
@@ -15,6 +15,7 @@ Changes/New Features:
CAY-2338 Support comments in cgen and default templates
CAY-2656 Modeler: option to download required jars directly from maven central
+CAY-2659 Use new SQLBuilder utility to generate SQL for batch queries
Bug Fixes:
diff --git a/UPGRADE.txt b/UPGRADE.txt
index 250250c..e909b00 100644
--- a/UPGRADE.txt
+++ b/UPGRADE.txt
@@ -5,6 +5,12 @@ IMPORTANT: be sure to read all notes for the intermediate
releases between your
current release and the release you are upgrading to.
-------------------------------------------------------------------------------
+UPGRADING TO 4.2.M2
+
+* Per CAY-2659 All batch translators (`InsertBatchTranslator`,
`UpdateBatchTranslator`, etc.) are updated to the new SQLBuilder utility.
+If you are using customized versions of these classes you should either update
them accordingly, or you could keep using
+old versions witch are moved to the
`org.apache.cayenne.access.translator.batch.legacy` package.
+
UPGRADING TO 4.2.M1
* Per CAY-2520 ObjectId can't be instantiated directly, ObjectId.of(..)
methods should be used.