Rob Bygrave
5237e8ba66
#1261 - ENH: Support use of getGeneratedKeys with SqlUpdate
2018-02-16 09:45:49 +13:00
Rob Bygrave
9926cad7f1
#1262 - ENH: Support firstRow maxRows with findNative()
2018-02-16 00:11:27 +13:00
Rob Bygrave
628af31ddd
#1142 - Mapping - Add support for @OrderColumn (Ebean automatically maintains an order column)
2018-02-15 22:31:41 +13:00
Rob Bygrave
31cac60393
#107 - Mapping - Add support for @PrimaryKeyJoinColumn/@PrimaryKeyJoinColumns
...
Adds Bi-directional support
2018-02-15 00:49:51 +13:00
Rob Bygrave
842292ef6b
#107 - Mapping - Add support for @PrimaryKeyJoinColumn/@PrimaryKeyJoinColumns
2018-02-14 22:59:57 +13:00
Rob Bygrave
2a986ab590
#1260 - Mark query.setForUpdate(true) as deprecated - migrate to query.forUpdate()
2018-02-14 15:28:13 +13:00
Rob Bygrave
7c477827fe
#1259 - Throw explicit mapping error when an Enum is mapped to both ORDINAL and STRING
2018-02-14 12:39:35 +13:00
Rob Bygrave
b2967dec1e
#1257 - ServerConfig with register = true, defaultServer = false ... fails as it tries to create the default server
2018-02-13 16:22:52 +13:00
Rob Bygrave
a95fd063ae
#1256 - Query where many isNotEmpty() ... on ManyToMany with SoftDelete produces incorrect SQL (Part 2)
2018-02-13 14:52:18 +13:00
Rob Bygrave
f1c2f134ad
#1255 - Regression on raw LIKE expression with slashes on Postgres
...
Related update for Sqlite
2018-02-10 00:56:05 +13:00
Rob Bygrave
175714046a
#1254 - SpringJdbcTransactionManager inifinite recursion #1254
...
Yeah, nah. This is the real fix. Expose:
SpiTransaction TransctionManager.getInScope();
... and have ebean-spring-txn SpringJdbcTransactionManager call it instead of getActive().
2018-02-09 23:03:07 +13:00
Rob Bygrave
73b2cc55f3
#1254 - SpringJdbcTransactionManager inifinite recursion #1254
...
Fix. Note tested in ebean-spring-txn.
2018-02-09 22:22:08 +13:00
Rob Bygrave
2f47235018
#1255 - Regression on raw LIKE expression with slashes on Postgres
2018-02-09 21:28:39 +13:00
Rob Bygrave
abcc651e7f
#1253 - Query where many isNotEmpty() ... on ManyToMany with SoftDelete produces incorrect SQL
...
Fix
2018-02-09 15:00:58 +13:00
Rob Bygrave
9bade12c9d
#1251 - Delete cascade with 11+ and Postgres throws exception
...
Fix
2018-02-07 16:47:59 +13:00
Rob Bygrave
bbef5a6bbb
#1243 - Add IDENTITY support for Oracle platform (since 12c Oracle supports auto generated identity)
2018-02-02 23:18:23 +13:00
Rob Bygrave
b2bbb05b83
#1248 - ENH: Additionally read "db" system property to determine default database (to use when testing with docker against different databases)
2018-02-02 20:49:39 +13:00
Rob Bygrave
5ff71324d0
#1247 - Unique index or primary key violation - when jdbc batch cascading to PrivateOwned child with unique constraint
2018-02-02 20:43:55 +13:00
Rob Bygrave
851f1c98b0
#1245 - Refactor internals - move Transaction ProfileStream creation
...
Stops the profileId parameter pollution, enables to potentially use transaction label
and runtime toggling of collecting transaction profiling detail.
2018-01-31 14:02:50 +13:00
Rob Bygrave
a92e620f7e
#1245 - Refactor internals - move logic to TransactionManager from DefaultServer
2018-01-31 13:36:23 +13:00
Rob Bygrave
f9cd955f7a
#1245 - Refactor internals - Add to TransactionManager externalRemoveTransaction() and externalBeginTransaction()
...
These provide a better/tidier way for external transaction managers (like ebean-spring-txn) to begin and end externally
managed transactions.
2018-01-31 13:28:42 +13:00
Rob Bygrave
71f66005e7
Merge branch 'master' of github.com:ebean-orm/ebean
2018-01-31 11:57:10 +13:00
Rob Bygrave
b682293a32
#1245 - Refactor internals - move logic to TransactionManager from DefaultServer
2018-01-31 11:56:38 +13:00
Rob Bygrave
5bd7853ce8
#1245 - Refactor internals - move TransactionMangerScope to be part of TransactionManager
2018-01-31 11:30:11 +13:00
André Camilo and Rob Bygrave
276c56161a
DiscriminatorColumn length should be 31 ( #1244 )
2018-01-31 08:32:21 +13:00
Rob Bygrave
8495ccced6
#1241 - ENH: Support using ebean_db system property to control docker container for testing
2018-01-24 19:17:14 +13:00
Rob Bygrave
07e2605a30
#1240 - ENH: Add support for @Transactional skipCache and label
2018-01-22 22:57:35 +13:00
Rob Bygrave
bce745e88d
#1240 - ENH: Add support for @Transactional skipCache and label
2018-01-22 15:04:13 +13:00
Rob Bygrave
51d2e4c600
ENH: Add ProfileLocation - Part 2 - performance metrics for transactions with label and profileLocation
2018-01-22 14:54:27 +13:00
Rob Bygrave
0a809b0fb3
#1239 - When Transaction.setSkipCache(true) ... Query with useQueryCache is still use L2 query cache
2018-01-19 10:46:49 +13:00
Rob Bygrave
13ddb915c8
No effective change - add javadoc
2018-01-19 09:38:50 +13:00
Rob Bygrave
07cdf64ece
#1238 - Refactor MetaInfoManager - collect query plan stats, fix collection of stats on UpdateQuery
2018-01-19 01:07:37 +13:00
Rob Bygrave
b9ae76d465
#1237 - ENH: Add ProfileLocation - support for relating performance metrics for queries and transactions back to source line of code
2018-01-18 18:10:03 +13:00
Rob Bygrave
82f5c21d26
No effective change - Improve exception error message when property is not found on a bean type
...
Typically using IDE enhancement plugin with incremental compilation where part of an inheritance
hierarchy has been changed but not all related classes recompiled and re-enhanced.
2018-01-12 01:27:24 +13:00
Rob Bygrave
14105eb1eb
#1236 - ENH: Add Transaction.current() ... as alternative to obtain the current transaction
2018-01-11 22:34:31 +13:00
Rob Bygrave
bb205ced54
#1235 - Thread deadlock on L2 cache load of many property
2018-01-09 23:16:35 +13:00
Rob Bygrave
0d4c50e19c
#1234 - Remove deprecated CacheMode.QUERY_ONLY (migrate to CacheMode.GET)
2018-01-09 19:56:55 +13:00
Rob Bygrave
8cff85fdda
#1233 - Remove deprecated CacheMode.RECACHE (migrate to CacheMode.PUT)
2018-01-09 19:50:26 +13:00
Rob Bygrave
932986a6b5
#1232 - Performance: Add support for a second read-only DataSource (for implicit query-only transactions)
2018-01-09 16:35:22 +13:00
Rob Bygrave
01539091ef
#1231 - Performance: Only use CallStack when using AutoTune (automatic query tuning or profiling)
2018-01-09 13:28:57 +13:00
Rob Bygrave
7e69f71b51
#1230 - Add DB Migration non strict mode - IllegalArgumentException: non-null column has no default value
2018-01-07 15:33:18 +13:00
Rob Bygrave
58d6b2c24e
Merge branch 'master' of github.com:ebean-orm/ebean
2018-01-06 12:52:38 +13:00
Rob Bygrave
3c7ef7d46e
#1229 - Implement equals and hashCode on ModifyAwareMap, ModifyAwareList and ModifyAwareSet
2018-01-06 12:51:50 +13:00
Rob Bygrave
db5db26fca
No effective change - rename parameter fix typo
2018-01-06 12:21:14 +13:00
rob bygrave
7110f4a59b
No effective change - remove unused HashQueryPlan etc
2017-12-28 16:17:00 +13:00
Rob Bygrave
4a4134ee93
#1227 - NPE when using L2 Query cache with findOne() or findOneOrEmpty()
2017-12-13 22:19:25 +13:00
Rob Bygrave
e07bd8f736
#1223 - Support mapping @DbArray to a List or Set of enums
2017-12-13 21:15:19 +13:00
Rob Bygrave
4d0b29624e
#1222 - Extend L2 ServerCache API with putAll(), getAll() and removeAll() methods
2017-12-13 19:58:28 +13:00
Rob Bygrave
c7f4b56dd1
#1225 - ENH: Extend L2 server cache (near caching) for clearing "near caches"
2017-12-13 02:09:10 +13:00
Rob Bygrave
69c045443c
#1218 - ENH: Bump to migration 11.2.1 with support for options patchInsertOn and patchResetChecksumOn
2017-11-23 19:05:35 +13:00