Releases: snelg/cakephp-3-oracle
CakePHP 3.6+ compatibility
NUMBER format edge cases
Fixed a few edge cases for the Oracle NUMBER format, thanks to @alphp
Now correctly covers all examples from Table 26-1 in the Oracle docs
CakePHP 3.5+ compatibility
Updated deprecated classes/functions for compatibility with CakePHP 3.5+
Autoincrement
If you have a working "auto-increment" implementation inside your database that uses a sequence named {tablename}_ID_SEQ
to populate the column via an INSERT TRIGGER, then Cake will check that sequence's CURRVAL for its "last insert id" function.
Dependency fixed
Dependency package has been fixed, so bumping up version number.
Temporary Fix for buggy dependency
Bug in yajra 1.0.3, so temporarily forcing this project to be dependent on 1.0.2
Handle OFFSET with no LIMIT
Fixed probably-rare case where an OFFSET is specified without a LIMIT
Pagination fixed
Fixed OFFSET and LIMIT additions from previous release so they work properly with Paginator component
LIMIT and OFFSET support
Added LIMIT and OFFSET support, even for Oracle server 11g and earlier (which do not have native LIMIT/OFFSET functionality)