Skip to content

Releases: netlogix/Netlogix.Migrations

2.1.0 - Drop PHP 7.4 Support and Fix PHP 8 Deprecations

31 Oct 15:37
ecd6300
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.0.2...2.1.0

2.0.2 - Ensure PhpUnit 10 Compatibility

01 Jun 14:07
9debe5d
Compare
Choose a tag to compare

What's Changed

  • BUGFIX: Make phpunit provider methods static by @paxuclus in #13

Full Changelog: 2.0.1...2.0.2

2.0.1 - Fix unit tests

01 Jun 12:57
8bf64af
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.0.0...2.0.1

2.0.0 - Support for Flow 7 and 8

23 May 17:32
e7c6fe7
Compare
Choose a tag to compare

What's Changed

  • !!! FEATURE: Add Support for Neos 7 and 8 by @nlx-lars in #11

Full Changelog: 1.4.2...2.0.0

Fix unit tests for Flow 6.3

14 Jan 16:39
c758685
Compare
Choose a tag to compare
Merge pull request #10 from netlogix/bugfix/add-type-hints-to-tests

BUGFIX: Add missing type hints to tests

Fix unit tests when version numbered class names are not properly formated

11 Nov 13:56
95a40cc
Compare
Choose a tag to compare

Version numbered class names need to be "Version" followed by exactly 14 digits.
Unit tests didn't reflect that.
This also adds an exception when this is not the case, instead of just an "undefined index: dateFormatVersionNumber".

Allow version numbers in full namespace

11 Nov 10:08
3d3ca79
Compare
Choose a tag to compare

Migration classes are usually named like "Version20200911105700" to be
both, naturally sorted and with little chance to conflict.

This patch allows for migration classes with arbitrary names but
living in namespaces that contain the version number part.

This patch does not change how migratins are detected within the file
system.

Introduce output aware migration objects

26 Oct 16:01
1274eb6
Compare
Choose a tag to compare

Migration tasks can now report status to console directly, which aims to eliminate handler objects.

Flow 6 compatibility

09 Sep 18:16
73e5f15
Compare
Choose a tag to compare

This release adds support for Flow Versions 6.X

Additionally, it is now possible to use migrations that reside in non-application (Neos Sites for example) packages. Previously, only packages in Packages/Application were considered.

BUGFIX: Rethrow exception in MigrationsCommandController

12 Aug 19:33
d06b624
Compare
Choose a tag to compare
  • Rethrow exception in MigrationsCommandController instead of quitting for additional error handling when executing migrations in production.
  • Remove xdebug from unit test.