-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implemented Persistence.createEntityManagerFactory(PersistenceConfiguration) #8
Commits on Sep 14, 2023
-
Jakarta Persistence 3.2 new feature - JPQL UNION, INTERSECT, EXCEPT, …
…CAST (eclipse-ee4j#1937) This change doesn't create anything new as specified operators/functions were already specified as a part of EclipseLink JPQL extensions from 2.4 version. There is refactoring/movement of affected code related with `org.eclipse.persistence.jpa.jpql.parser.CastExpression`, `org.eclipse.persistence.jpa.jpql.parser.DatabaseType`, `org.eclipse.persistence.jpa.jpql.parser.UnionClause` from `EclipseLink...` classes to default JPQL classes. Due this movement all specified operators/functions are available from Jakarta Persistence/JPQL Grammar 3.2 and still from EclipseLink JPQL extensions 2.4. EclipseLink issue is described at eclipse-ee4j#1885 and Jakarta Persistence specification request at the jakartaee/persistence#395 (cast) and jakartaee/persistence#398 (union, intersect, and except) Signed-off-by: Radek Felcman <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for f7070a1 - Browse repository at this point
Copy the full SHA f7070a1View commit details
Commits on Sep 20, 2023
-
Fixed build issues with JPA API 3.2
Signed-off-by: Tomáš Kraus <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for f24afd7 - Browse repository at this point
Copy the full SHA f24afd7View commit details -
JPA eclipse-ee4j#442 - Overload where(), having(), concat(), and() an…
…d or() to accept List. Signed-off-by: Tomáš Kraus <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 6d4ba8d - Browse repository at this point
Copy the full SHA 6d4ba8dView commit details -
JPA eclipse-ee4j#430 - Fix signatures of operations of entity graphs
Signed-off-by: Tomáš Kraus <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for ed06d2d - Browse repository at this point
Copy the full SHA ed06d2dView commit details -
JPA eclipse-ee4j#441 - Pull getParameters() up from CriteriaQuery to …
…CommonAbstractCriteria Signed-off-by: Tomáš Kraus <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for c89e4b5 - Browse repository at this point
Copy the full SHA c89e4b5View commit details -
Fixed build issues with JPA API 3.2
Signed-off-by: Tomáš Kraus <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for f1fb9f6 - Browse repository at this point
Copy the full SHA f1fb9f6View commit details -
JPA eclipse-ee4j#414 - Add EntityManagerFactory.runInTransaction()/ca…
…llInTransaction() JPA eclipse-ee4j#433 - Add EntityManager.runWithConnection()/callWithConnection() Signed-off-by: Tomáš Kraus <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 1f2fc14 - Browse repository at this point
Copy the full SHA 1f2fc14View commit details -
Fixed build issues with JPA API 3.2
Signed-off-by: Tomáš Kraus <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 82ffef8 - Browse repository at this point
Copy the full SHA 82ffef8View commit details
Commits on Sep 29, 2023
-
GitHub Actions JDK fix (eclipse-ee4j#1952)
Signed-off-by: Radek Felcman <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for fddaf56 - Browse repository at this point
Copy the full SHA fddaf56View commit details
Commits on Oct 3, 2023
-
Duplicate objects in UnitOfWorkImpl.primaryKeyToNewObjects (eclipse-e…
…e4j#1951) * Fixes eclipse-ee4j#1950: Duplicate objects in UnitOfWorkImpl.primaryKeyToNewObjects - no longer add objects to primaryKeyToNewObjects in assignSequenceNumber - use IdentityHashSet instead of ArrayList for primaryKeyToNewObjects to prevent duplicates in the future Signed-off-by: Patrick Schmitt <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for ad93f7a - Browse repository at this point
Copy the full SHA ad93f7aView commit details -
JPA Test Advanced fix (eclipse-ee4j#1955)
It seems, that after transformation from jpa.test to jpa.testapps EntityManagerJUnitTestSuite from jpa.testapps.advanced was excluded from the execution. This change returns this suite back. Signed-off-by: Radek Felcman <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 676506b - Browse repository at this point
Copy the full SHA 676506bView commit details -
avoid unnecessarry reflection calls,
improve codegen to handle Map related mappings Signed-off-by: Lukas Jungmann <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for ba8b71e - Browse repository at this point
Copy the full SHA ba8b71eView commit details
Commits on Oct 5, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 610b9d2 - Browse repository at this point
Copy the full SHA 610b9d2View commit details
Commits on Oct 6, 2023
-
Issue 1957: Presize HashMap allocations in UnitOfWorkImpl (eclipse-ee…
…4j#1958) add initial size to map creation where expected size is known or can be estimated Signed-off-by: Patrick Schmitt <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for c5f1a83 - Browse repository at this point
Copy the full SHA c5f1a83View commit details
Commits on Oct 10, 2023
-
ASM version upgrade to 9.6 (JDK 22 ready) (eclipse-ee4j#1963)
Signed-off-by: Radek Felcman <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for d5b1cbe - Browse repository at this point
Copy the full SHA d5b1cbeView commit details
Commits on Oct 16, 2023
-
Configuration menu - View commit details
-
Copy full SHA for d02ecb8 - Browse repository at this point
Copy the full SHA d02ecb8View commit details
Commits on Oct 17, 2023
-
jakartaee/persistence#465 - Add PersistenceConfiguration
jakartaee/persistence#482 - Improvements to PersistenceConfiguration Signed-off-by: Tomáš Kraus <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e9fe59b - Browse repository at this point
Copy the full SHA e9fe59bView commit details -
jakartaee/persistence#454 - introduce FindOption interface and new ov…
…erloads of EM.find() * implemented public <T> T find(Class<T> entityClass, Object primaryKey, FindOption... options) * added FindOption processing for JPA API enums, Timeout class was not added yet Signed-off-by: Tomáš Kraus <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 2b5bf90 - Browse repository at this point
Copy the full SHA 2b5bf90View commit details -
jakartaee/persistence#440 - add support for 'nulls first' and 'nulls …
…last' in queries Signed-off-by: Tomáš Kraus <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for c899623 - Browse repository at this point
Copy the full SHA c899623View commit details -
jakartaee/persistence#417 - Add left(), right(), and replace() functi…
…ons to JPQL/criteria jakartaee/persistence#356 - Add extract() to CriteriaBuilder Signed-off-by: Tomáš Kraus <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for eada175 - Browse repository at this point
Copy the full SHA eada175View commit details -
jakartaee/persistence#384 - add Query.getSingleResultOrNull()
Signed-off-by: Tomáš Kraus <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e37eb04 - Browse repository at this point
Copy the full SHA e37eb04View commit details -
jakartaee/persistence#395 - JPQL cast() function
jakartaee/persistence#438 - add Expression.equalTo() and Expression.notEqualTo() Signed-off-by: Tomáš Kraus <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 1c38e0f - Browse repository at this point
Copy the full SHA 1c38e0fView commit details -
Code cleanup: generics and warnings removal
Signed-off-by: Tomáš Kraus <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 5b39993 - Browse repository at this point
Copy the full SHA 5b39993View commit details -
OptimisticLockException does not give any details if batch is active (e…
…clipse-ee4j#1936) * Fix for bug 35468915 Signed-off-by: Vaibhav Vishal <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for ae7f32c - Browse repository at this point
Copy the full SHA ae7f32cView commit details
Commits on Oct 19, 2023
-
jakartaee/persistence#454 - introduce FindOption interface and new ov…
…erloads of EM.find() jakartaee/persistence#467 - add joins to entity types (range variables) Signed-off-by: Tomáš Kraus <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for d24cba0 - Browse repository at this point
Copy the full SHA d24cba0View commit details