Skip to content

Developer changelog handling

Compare
Choose a tag to compare
@Mistralys Mistralys released this 24 Sep 17:05
· 463 commits to main since this release

Included in this release:

  • Driver: Added missing implementation for the areaExists().
  • Driver: Made the use of the dev-changelog.md file official.
  • Driver: Added the helper class DevChangelog to parse the developer changelog file.
  • Driver: The version file can now optionally be automatically generated.

Update guide

To make use of the new version file generation mechanism, use the following code
for the driver's getExtendedVersion() method:

public function getExtendedVersion() : string
{
    return AppFactory::createDevChangelog()->getCurrentVersion()->getTagVersion();
}