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 c28a243fd clean up docs for 5.0
c28a243fd is described below

commit c28a243fdda90b01021a85dbfb4b79bd308568f6
Author: Nikita Timofeev <stari...@gmail.com>
AuthorDate: Thu Dec 1 09:39:41 2022 +0300

    clean up docs for 5.0
---
 .../docs/asciidoc/_upgrade-guide/new-features.adoc | 42 ++--------------------
 1 file changed, 3 insertions(+), 39 deletions(-)

diff --git 
a/docs/asciidoc/upgrade-guide/src/docs/asciidoc/_upgrade-guide/new-features.adoc
 
b/docs/asciidoc/upgrade-guide/src/docs/asciidoc/_upgrade-guide/new-features.adoc
index ae1305d87..b41ff6d5d 100644
--- 
a/docs/asciidoc/upgrade-guide/src/docs/asciidoc/_upgrade-guide/new-features.adoc
+++ 
b/docs/asciidoc/upgrade-guide/src/docs/asciidoc/_upgrade-guide/new-features.adoc
@@ -11,46 +11,10 @@
 // CONDITIONS OF ANY KIND, either express or implied. See the License for
 // the specific language governing permissions and limitations under the
 // License.
+
 == Java Version
 
-Minimum required JDK version is 1.8 or newer.
-Cayenne 4.2 is fully tested with Java 1.8 and 11.
+Minimum required JDK version is 11 or newer.
+Cayenne 5.0 is fully tested with Java 11 and 17.
 
 == New Features
-
-=== Subqueries
-
-Expressions are now support subqueries.
-
-[source,java]
-----
-ColumnSelect<Long> subQuery = ObjectSelect
-        .columnQuery(Artist.class, Artist.ARTIST_ID_PK_PROPERTY)
-        .where(...);
-List<Artist> artists = ObjectSelect.query(Artist.class)
-        .where(Artist.ARTIST_ID_PK_PROPERTY.in(subQuery))
-        .select(context);
-----
-
-=== New Property API
-
-Property API are greatly revised.
-This API allows to use type aware expression factories aka Properties.
-These properties are normally generated as static constants in model classes, 
but they can also be created manually by
-`PropertyFactory` if needed.
-
-Typical usage in select queries:
-
-[source,java]
-----
-Painting painting = //...
-Artist artist = ObjectSelect.query(Artist.class)
-        .where(Artist.PAINTING_ARRAY.contains(painting))
-        .and(Artist.DATE_OF_BIRTH.year().gt(1950))
-        .and(Artist.ARTIST_NAME.lower().like("pablo%"))
-        .selectOne(context);
-----
-
-//== Internal Changes
-//=== New select query translator
-//=== New Flush Action implementation

Reply via email to