Skip to content

v2.3.43

Latest

Choose a tag to compare

@se7enxweb se7enxweb released this 12 Apr 07:08

Release Notes — se7enxweb/ezplatform-admin-ui v2.3.43

Bug fixes

  • replace value corrected: "self.version""*" — The replace declaration for ezsystems/ezplatform-admin-ui was set to "self.version" in v2.3.42. This only satisfies Composer constraints that exactly match the fork version (e.g. ^2.3). Any project or meta-package that required a different version range of the original (e.g. ^2.3.x-dev, ~2.3.0) risked Composer resolving both packages simultaneously. Using "*" unconditionally tells Composer this fork supersedes all versions of ezsystems/ezplatform-admin-ui, eliminating the 889-class classmap conflict on every install.

What changed

// before (v2.3.42)
"replace": { "ezsystems/ezplatform-admin-ui": "self.version" }

// after (v2.3.43)
"replace": { "ezsystems/ezplatform-admin-ui": "*" }

Upgrade notes
Run composer update se7enxweb/ezplatform-admin-ui. No API or template changes.

Related releases in this series

Full Changelog: v2.3.42...v2.3.43