Skip to content

Releases: contributte/doctrine-orm

v0.8.4

10 Jun 15:48
d253e20
Compare
Choose a tag to compare

Bumped! 🇰🇮

Diff: v0.8.3...v0.8.4

Maintenance:

v0.8.3

10 Feb 16:00
04bf4ac
Compare
Choose a tag to compare

Bumped! 🇵🇷

Diff: v0.8.2...v0.8.3

Changes:

v0.8.2

07 Sep 14:28
fc84bcc
Compare
Choose a tag to compare

Bumped! 🚋

Diff: v0.8.1...v0.8.2

Changes:

v0.8.1

09 Jan 17:12
a86e9ec
Compare
Choose a tag to compare

Bumped! 🚔

Diff: v0.8.0...v0.8.1

Changes:

v0.8.0

11 Dec 16:36
5c15f30
Compare
Choose a tag to compare

Bumped! 👨🏽

Diff: v0.7.1...v0.8.0

Changes:

  • PHP 8
  • Travis -> Github Actions
  • PHPUnit -> Nette Tester

v0.7.1

07 Aug 13:17
9c02f6f
Compare
Choose a tag to compare

Bumped! 🈺

Diff: v0.7.0...v0.7.1

Changes:

  • Extension configuration supports string/service/reference at definition:
    • namingStrategy
    • quoteStrategy
    • entityListenerResolver
    • repositoryFactory
  • Better docs
  • Better tests
  • Allow PHP >=7.2

v0.7.0

16 Jun 15:24
9948401
Compare
Choose a tag to compare

Bumped! 💅

Diff: v0.6.1...v0.7.0

Changes:

  • Rework mapping [BC break] [#75]

Configuration for annotation and xml changed.

Before

nettrine.orm.annotations:
  namespaces: [App\Model\Database]
  paths: [%appDir%/Model/Database]

After

nettrine.orm.annotations:
  mapping:
    App\Model\Database: %appDir%/Model/Database

Dropped TEntityMapping, introduced more powerfull EntityHelper.

Before

class CategoryExtension extends CompilerExtension
{
  use TEntityMapping;

  public function beforeCompile(): void
  {
    $this->setEntityMappings([
      'Forum' => __DIR__ . '/../Entity',
    ]);
  }
}

After

class CategoryExtension extends CompilerExtension
{
  public function beforeCompile(): void
  {
    MappingHelper::of($this)
        ->addAnnotation( __DIR__ . '/../app/Model/Database', 'App\Model\Database')
        ->addAnnotation( __DIR__ . '/../../modules/Forum/Database', 'Forum\Modules\Database');
  }
}

v0.3.1

07 Jun 12:14
v0.3.1
d2bcc6a
Compare
Choose a tag to compare

Bumped! 🇯🇴

Diff: v0.3.0...v0.3.1

Changes:

v0.6.1

07 Jun 12:09
Compare
Choose a tag to compare

Bumped! 🇯🇴

Diff: v0.6.0...v0.6.1

Changes:

v0.6.0

10 Apr 09:06
a536700
Compare
Choose a tag to compare

Bumped! 😂

Diff: v0.5.0...v0.6.0

Changes:

  • Allow to register filters [#72] 9fe0db4
  • Simplify EntityManagerDecorator 1004c72
  • Switch mappingDriver to MappingDriverChain [#27]
  • Fix secondLevelCache schema b2fa8b9
  • Sync entityNamespaces schema
  • Polished readme
  • Polished tests