Skip to content

Releases: ingenerator/kohana-doctrine2

v2.1.0

25 Sep 07:21
33bd367
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.0.0...v2.1.0

Update to doctrine/dbal v3

28 Oct 14:51
37383ee
Compare
Choose a tag to compare

[BREAKING] Update doctrine/dbal to v3

  • This is a major release that introduces a number of breaking changes and deprecations - see the full upgrade notes
    at https://github.com/doctrine/dbal/blob/3.5.x/UPGRADE.md

  • Due to changes in the DBAL driver structure, DoctrineFactory::getRawPDO and the doctrine.pdo_connection service
    now return an actual native PDO object, rather than a doctrine-specific wrapper/extension class. The major
    difference will be that any calls will now throw native PDOException rather than doctrine exceptions. This should
    not affect actual calling code (which presumably expects a PDOException if it is calling methods on a PDO).
    However, things like loggers and global exception handlers will now potentially get two different classes of
    database exceptions.

  • The connection config returned when no database is configured (e.g. in an isolated unit-test environment) has
    changed. We still use our NullPDO fake database connection, but this is now wrapped in a new FakeMysqlDriver class
    as doctrine have split the driver and underlying PDO classes. NullPDO is now hardcoded to report that it is
    connected to mysql 5.7.29.

v1.4.0

14 Oct 20:15
67ae117
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.3.6...v1.4.0

v1.3.6

28 Mar 13:23
eced270
Compare
Choose a tag to compare

What's Changed

  • Add compatibility for doctrine/persistence@2.4 by @acoulton in #14

Full Changelog: v1.3.5...v1.3.6

Ping doctrine/persistence at <2.4

17 Mar 20:21
d731fb2
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.3.4...v1.3.5

Require doctrine/annotations

12 Jan 08:20
653841d
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.3.3...v1.3.4

Pin doctrine/dbal at v2

05 Oct 10:10
67bebf3
Compare
Choose a tag to compare
Merge pull request #11 from ingenerator/pin-doctrine-dbal

Ping doctrine/dbal at v2 until we're ready to upgrade

Pin doctrine/cache at v1

23 Jun 16:48
25fee2a
Compare
Choose a tag to compare

Pin doctrine/cache at v1 until we follow a migration path to using PSR compatible cache adaptors with doctrine/orm

Support PHP 8.0

21 Apr 11:49
990ded7
Compare
Choose a tag to compare
Merge pull request #9 from ingenerator/support-php8

Support PHP8

Support PHP 7.4

02 Nov 15:05
316e191
Compare
Choose a tag to compare
Merge pull request #8 from ingenerator/support-php74

Support php7.4 and test using Github actions