Robin Bygrave
|
014a9aef6f
|
#826 - Remove deprecated methods - migrate findRowCount() to findCount() & findFutureRowCount() to findFutureCount()
|
2016-10-03 22:31:33 +13:00 |
|
Robin Bygrave
|
43afaf1344
|
#811 - ENH: Restore findIterate() as alternative to findEach / findEachWhile
|
2016-08-05 13:01:42 +12:00 |
|
Robin Bygrave
|
81de83a6e7
|
#803 - Fix generics on findMap() to ... <K> Map<K, T> findMap();
|
2016-08-04 20:23:11 +12:00 |
|
Robin Bygrave
|
3c6eab6c85
|
#802 - Find generics on findIds() - refactor internals of find ids to use find single attribute
|
2016-08-04 17:28:41 +12:00 |
|
Robin Bygrave
|
1be30f1671
|
#125 - ENH: Add support for query returning a List of single Attribute type
|
2016-08-04 16:41:50 +12:00 |
|
Robin Bygrave
|
7c83010df1
|
#788 - Deprecate findRowCount() ... add findCount(). Effectively renaming findRowCount() to findCount()
|
2016-07-31 16:39:23 +12:00 |
|
Robin Bygrave
|
474c2d5595
|
EQL - Add / expose via EbeanServer.createQuery(type, eql) method
|
2016-07-13 16:40:52 +12:00 |
|
Robin Bygrave
|
c7c6410cd9
|
#765 - ENH: Add ebean.xml with support for named RawSql, also adds EbeanServer.createNamedQuery()
|
2016-07-08 22:35: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
|
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
|
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
|
5cf2d3c39a
|
#680 - Remove deprecated SqlQuery.findFutureList()
|
2016-04-29 08:49:07 +12:00 |
|
Robin Bygrave
|
f867cd4c01
|
#678 - Remove SqlQuery.findSet() and SqlQuery.findMap() ... migrate to use SlqQuery.findList()
|
2016-04-29 08:37:52 +12:00 |
|
Robin Bygrave
|
8a84eaf7a7
|
#675 - ENH: Add SqlQuery.findEach() and SqlQuery.findEachWhile() methods ... to replace setListener()
|
2016-04-28 22:15:41 +12:00 |
|
Robin Bygrave
|
f8b5a7f312
|
#666 - deleteAll(beans) return int , but deleteAll(beanType,ids) return void in EbeanServer
|
2016-04-27 08:04:43 +12:00 |
|
Robin Bygrave
|
03189ac92a
|
#661 - ENH: Add deletePermanent(beanType, id) and deleteAllPermanent(beanType, ids) ... (basically missing API)
|
2016-04-26 21:30:52 +12:00 |
|
Robin Bygrave
|
4cec878242
|
#662 - Postgres Timestamp with time zone testing
|
2016-04-26 16:41:11 +12:00 |
|
Robin Bygrave
|
3fb9a7414c
|
#647 - REFACTOR: L2 cache - remove cache warming support (from @CacheStrategy and API)
|
2016-04-12 23:44:24 +12:00 |
|
Robin Bygrave
|
524be4ce55
|
#641 - ENH: Add EbeanServer.setBeanId(bean, id) ... to make it easy to convert id value to appropriate type and set
|
2016-04-08 01:15:34 +12:00 |
|
Robin Bygrave
|
8d3b4a0407
|
#304 - ElasticSearch integration part 1 / doc store integration
|
2016-03-01 15:36:44 +13:00 |
|
Robin Bygrave
|
4df2d4020e
|
#566 - Refactor internals - SpiExpression, add prepareExpression() to merge queryAutoTuneHash() and queryPlanHash() - tidy up createQueryRequest
|
2016-02-16 08:57:12 +13:00 |
|
Robin Bygrave
|
3639c2a540
|
#518 - Refactor: Remove getDdlGenerator() from SpiEbeanServer.
|
2016-01-07 14:27:27 +13:00 |
|
Robin Bygrave
|
e4fa031cd3
|
#494 - ENH: Support findPagingList() ... that uses firstRow & maxRows (rather than pageIndex, pageSize)
|
2015-12-10 14:52:27 +13:00 |
|
Robin Bygrave
|
aea7a7fd65
|
#118 - ENH: Add support for for Soft Deletes (Logical Deletion) ...
|
2015-12-02 23:46:26 +13:00 |
|
Robin Bygrave
|
fae39fe650
|
#291 - ENH: Add ability to validate a query or property expression - Was Please check column exist on entity
|
2015-11-30 15:10:22 +13:00 |
|
Robin Bygrave
|
a578eda2b1
|
#467 - Delete bean with unloaded version property throws OptimisticLockException - API Change, return boolean
|
2015-11-26 16:09:25 +13:00 |
|
Robin Bygrave
|
8620dbf337
|
#464 - ENH: Add draftRestore(Class<?> beanType, Object id) ... to refresh a draft from the live (@Draftable feature)
|
2015-11-25 23:36:17 +13:00 |
|
Robin Bygrave
|
555e5ba6fd
|
#461 - ENH: Add @Draftable support - API sans transaction
|
2015-11-24 01:01:14 +13:00 |
|
Robin Bygrave
|
db371cbc6a
|
#461 - ENH: Add @Draftable support - publish
|
2015-11-23 21:28:58 +13:00 |
|
Robin Bygrave
|
7b76e13bce
|
#461 - ENH: Add @Draftable support - phase 1
|
2015-11-19 20:44:25 +13:00 |
|
Robin Bygrave
|
262d52ed44
|
Merge AutoTune refactor with master
|
2015-09-10 10:27:24 +12:00 |
|
Robin Bygrave
|
71dd0e5728
|
AutoTune update - rename and profiling against original query
|
2015-09-10 00:17:49 +12:00 |
|
Robin Bygrave
|
54172aec6c
|
#405 - ENH: Add @ReadAudit and associated functionality for auditing reads including queries and L2 cache access
|
2015-09-03 13:54:52 +12:00 |
|
Robin Bygrave
|
987fe38618
|
WIP AutoTune refactor
|
2015-09-01 07:55:25 +12:00 |
|
Robin Bygrave
|
1c23720605
|
#398 - ENH: Support delete using a Query instance
|
2015-08-29 00:58:47 +12:00 |
|
Robin Bygrave
|
547fa342c4
|
Internal change only - just reuse class name as bean descriptor key
|
2015-08-21 18:28:10 +12:00 |
|
Robin Bygrave
|
f8b8a41bce
|
#394 - ENH: Add plugin API SpiServer, SpiBeanType ... migrate plugins towards using this API, migrate away from direct use of BeanDescriptor etc.
|
2015-08-21 17:33:43 +12:00 |
|
Robin Bygrave
|
483538bbc1
|
#374 -Move DdlGenerator
|
2015-08-06 12:16:06 +12:00 |
|
Robin Bygrave
|
1eabb7fdb4
|
#373 - Internals for Oracle - Remove the oracle proprietary jdbc batch handling in favour of standard jdbc batch api
|
2015-08-06 08:02:44 +12:00 |
|
Robin Bygrave
|
fceeeacf88
|
#367 - ENH: Add EbeanServer deleteAll() with an explicit transaction
|
2015-08-02 12:43:19 +12:00 |
|
Robin Bygrave
|
3fa8f04a4c
|
#358 - ENH: Add ServerConfig updateAllPropertiesInBatch with a default of true
|
2015-07-27 22:59:18 +12:00 |
|
Robin Bygrave
|
1ec2f74df9
|
#350 - ENH: Add @History findVersions() query ... returning historic versions for a given bean using history view
|
2015-07-24 16:20:15 +12:00 |
|
Robin Bygrave
|
245cbb0ea1
|
#342 - Remove deprecated method - JsonContext createJsonContext() ... migrate to json()
|
2015-07-20 11:27:00 +12:00 |
|
Robin Bygrave
|
dbe984c668
|
#341 - Remove deprecated method - insert(Collection<?> beans); ... migrate to insertAll()
|
2015-07-20 11:22:16 +12:00 |
|
Robin Bygrave
|
89088f9480
|
#340 - Remove deprecated method - update(Collection<?> beans) ... migrate to updateAll()
|
2015-07-20 11:18:51 +12:00 |
|
Robin Bygrave
|
80253c4e07
|
#339 - Remove deprecated method - save(Collection<?> beans, Transaction transaction) ... migrate to saveAll()
|
2015-07-20 11:15:10 +12:00 |
|
Robin Bygrave
|
f96ce11c73
|
#338 - Remove deprecated method - save(Iterator<?> it, Transaction transaction) ... please change to iterate yourself and save.
|
2015-07-20 11:11:45 +12:00 |
|