Robin Bygrave
|
353175626d
|
#733 - RawSqlBuilder.columnMapping() not working using DB column alias ... java.lang.IllegalArgumentException: DB Column [detail_count] not found in mapping.
|
2016-06-07 17:10:37 +12:00 |
|
Robin Bygrave
|
1a3acb86df
|
#732 - NPE in ScalarTypeArrayList.read(ScalarTypeArrayList.java:89) ...
|
2016-06-03 08:09:04 +12:00 |
|
Robin Bygrave
|
1304646cce
|
#731 - ENH: Add support for using ebean.mf manifest file for finding/defining packages to search for entities
|
2016-06-02 17:35:06 +12:00 |
|
Robin Bygrave
|
b3828572fd
|
No effective change - javadoc for ServerConfig
|
2016-06-02 14:08:00 +12:00 |
|
Robin Bygrave
|
eddd48f8ad
|
#730 - Remove unused ServerConfig.classPathReaderClassName ... as replaced by org.avaje.classpath.scanner.ClassPathScanner plugin (in 7.8.1)
|
2016-06-02 14:03:30 +12:00 |
|
Robin Bygrave
|
9797502ef2
|
#729 - Remove unused ServerConfig.addJar(...); serverConfig.setJars(...); ... as "search jars" is no longer used in classpath scanning (since 7.8.1)
|
2016-06-02 13:55:14 +12:00 |
|
Robin Bygrave
|
daba7a11b4
|
No effective change - remove unused code (old ClassPathReader etc)
|
2016-06-01 20:53:07 +12:00 |
|
Robin Bygrave
|
92caf69cb3
|
#728 - Remove Query.where(String) ... migrate to where().raw(...)
|
2016-06-01 19:54:02 +12:00 |
|
Robin Bygrave
|
71f70c01ae
|
#727 - ENH: Add endOr(), endAnd(), endNot() ... to ExpressionList as synonym for endJunction()
|
2016-06-01 16:03:30 +12:00 |
|
Robin Bygrave
|
2442eb017a
|
#725 - L2 cache not updating CacheManyId's entry when Lazy loading on a ToMany relationship, after a prior update, when other ToMany is a vanilla type (like ArrayList)
|
2016-05-30 17:01:20 +12:00 |
|
Robin Bygrave
|
37ea56ad11
|
#724 - NPE when using L2 caching configured with @Cache with queryCaching=true and beanCaching=false
|
2016-05-30 16:56:04 +12:00 |
|
Robin Bygrave
|
6c7074e288
|
#120 - ENH: Add support for using where() on bulk Update statements
|
2016-05-23 22:24:07 +12:00 |
|
Robin Bygrave
|
1c162b9b18
|
#723 - Breaking API - Change BeanPersistListener to return void rather than boolean for inserted(), updated() and deleted()
|
2016-05-23 10:31:24 +12:00 |
|
Robin Bygrave
|
676f0d7a24
|
#722 - NotifyOfCommit failed. L2 Cache potentially not notified. - NullPointerException at BeanDescriptorCacheHelp.java:299
|
2016-05-22 20:20:23 +12:00 |
|
Robin Bygrave
|
46e674db57
|
#721 - Remove EbeanServer saveManyToManyAssociations() and deleteManyToManyAssociations()
|
2016-05-20 23:42:02 +12:00 |
|
Robin Bygrave
|
0e1aacdeee
|
#720 - Remove EbeanServer saveAssociation(Object ownerBean, String propertyName); ... migrate to just save the bean
|
2016-05-20 23:24:37 +12:00 |
|
Robin Bygrave
|
7268890332
|
#719 - Remove deprecated Query.includeSoftDeletes() ... migrate to setIncludeSoftDeletes()
|
2016-05-20 23:08:28 +12:00 |
|
Robin Bygrave
|
b2a3f0c99b
|
#718 - Remove findPagedList(pageIndex, pageSize) ... migrate to setFirstRows().setMaxRows().findPagedList()
|
2016-05-20 23:04:35 +12:00 |
|
Robin Bygrave
|
662be92a16
|
#717 - Remove findIterate() ... migrate to findEach() or findEachWhile()
|
2016-05-20 22:38:07 +12:00 |
|
Robin Bygrave
|
11d623cb69
|
#716 - Remove createNamedQuery() and createQuery(Class<T> beanType, String query) ... use criteria API, query beans and RawSql
|
2016-05-20 22:13:58 +12:00 |
|
Robin Bygrave
|
a20822a9e1
|
#715 - isNull() expression on @OneToMany or @ManyToMany produces incorrect SQL - should translate this to be same as isEmpty() and result in exists subquery
|
2016-05-20 17:53:11 +12:00 |
|
Robin Bygrave
|
5122ea4b4d
|
#416 - RawSql issue with inheritance - PersistenceException: Inheritance type for discriminator value
|
2016-05-19 22:44:55 +12:00 |
|
Robin Bygrave
|
db8dd48e53
|
#513 - Column Constraint for Enum types should cover all Enum values in an inheritance hierachy
|
2016-05-19 20:55:16 +12:00 |
|
Robin Bygrave
|
4606c7c99f
|
No effective change - format and imports
|
2016-05-19 19:58:00 +12:00 |
|
Robin Bygrave
|
cb51ea4238
|
#713 - DB Migration - When change is from Not Null to Null ... this migration is duplicated in subsequent migration generation
|
2016-05-18 21:04:36 +12:00 |
|
Robin Bygrave
|
a1a48dac2c
|
#712 - Refactor: Rename DbMigrationConfig dbUser to dbUsername
|
2016-05-18 20:50:18 +12:00 |
|
Robin Bygrave
|
026f0e161f
|
#711 - Refactor: Extract DB Migration runner as separate module (called avaje-dbmigration)
|
2016-05-18 17:27:54 +12:00 |
|
Robin Bygrave
|
75a2633590
|
#710 - Behavior change - query with invalid fetch path (without properties) now throws PersistenceException
|
2016-05-18 12:34:16 +12:00 |
|
Robin Bygrave
|
362ceea79b
|
#709 - Refactor: BeanCollection internals, rename method isEmptyAndUntouched() to isSkipSave(), remove 'touched' flag
|
2016-05-18 11:19:01 +12:00 |
|
Robin Bygrave
|
1c9b974427
|
#708 - Refactor - Remove BeanCollectionTouched interface
|
2016-05-18 10:13:03 +12:00 |
|
Robin Bygrave
|
08b0a6350d
|
#706 - NPE when using @DbArray with null values
|
2016-05-16 16:54:18 +12:00 |
|
Robin Bygrave
|
ec234f1f39
|
#568 - ENH: Add ability to turn of getGeneratedKeys with @Transactional annotation (Also needs agent update)
|
2016-05-16 15:50:11 +12:00 |
|
Robin Bygrave
|
dd28b28095
|
#704 - Update javadoc for @Cache and @Query.setUseCache()
|
2016-05-13 16:30:43 +12:00 |
|
Robin Bygrave
|
d1d4bf1da8
|
#704 - Internal refactor to use excludeBeanCache in DefaultOrmQuery
|
2016-05-13 15:56:45 +12:00 |
|
Robin Bygrave
|
e344b5c0a1
|
#703 - Refactor - When batch lazy loading hits the L2 bean cache and misses initially, it checks that initial bean again (and should skip the second attempt)
|
2016-05-13 14:12:28 +12:00 |
|
Robin Bygrave
|
0e5859716b
|
#702 - IllegalStateException: No bean cache enabled error ... when updating bean that is not using caching (but is related to a bean with @Cache)
|
2016-05-13 12:52:27 +12:00 |
|
Robin Bygrave
|
90a794fca5
|
No effective change - sys out for CI server - add ReadAuditQueryPlan equals/hashCode for CI issue
|
2016-05-13 11:06:26 +12:00 |
|
Robin Bygrave
|
54706302df
|
#701 - DB Migration - incorrect alter column DDL when removing not null constraint (Postgres specific)
|
2016-05-13 09:07:43 +12:00 |
|
Robin Bygrave
|
8cb8f9eabf
|
#278 - SqlQuery setFirstRow fail - modify SQL using LIMIT/OFFSET etc to support firstRows/maxRows
|
2016-05-12 20:59:52 +12:00 |
|
Robin Bygrave
|
58a36e6b67
|
No effective change - cleanup comment
|
2016-05-12 19:07:52 +12:00 |
|
Robin Bygrave
|
409720d854
|
#700 - Postgres ARRAY and JSON expressions cast Long to ::integer rather than ::bigint
|
2016-05-12 17:38:15 +12:00 |
|
Robin Bygrave
|
1d8bb8c800
|
#700 - Postgres ARRAY and JSON expressions cast Long to ::integer rather than ::bigint
|
2016-05-12 17:22:40 +12:00 |
|
Robin Bygrave
|
b8ecbd507e
|
#522 - DDL - DB migration diff does not include DDL to add comment
|
2016-05-12 16:52:22 +12:00 |
|
Robin Bygrave
|
45453bbcd8
|
No effective change - include the search packages in the classpath scan INFO logging message
|
2016-05-12 16:17:33 +12:00 |
|
Robin Bygrave
|
4ab5cdf841
|
#698 - History DDL generation for Postgres does not respect non-public schema
|
2016-05-12 14:32:38 +12:00 |
|
Robin Bygrave
|
b384cb4043
|
#699 - DB Migration not generating sql to alter check constraints
|
2016-05-12 13:44:30 +12:00 |
|
Robin Bygrave
|
2a323f2256
|
#697 - Refactor - tidy objectMapper detection in DefaultTypeManager
|
2016-05-10 13:00:04 +12:00 |
|
Robin Bygrave
|
8cfba1015f
|
No effective change - remove incorrect comment
|
2016-05-10 11:17:04 +12:00 |
|
Robin Bygrave
|
17042a9faf
|
#696 - ENH: Add fallback for @DbHstore ... fallback to JSON storage in VARCHAR
|
2016-05-09 23:24:13 +12:00 |
|
Robin Bygrave
|
b197d8a637
|
#695 - ENH: Add @DbArray for storing scalar types (UUID, Long, String) to Postgres ARRAY type
|
2016-05-09 22:38:51 +12:00 |
|