Skip to content

Releases: b13/masi

[RELEASE] Bugfix release

06 Dec 08:43
a920e2a
Compare
Choose a tag to compare

What's Changed

  • [BUGFIX] fix incoming record being overwritten from DB, stringify pieces by @fwg in #37
  • Improve UX by avoiding to shorten slug field by @franzkugelmann in #35

New Contributors

Full Changelog: 2.0.2...2.0.3

[RELEASE] 2.0.2

29 Nov 10:31
d895b26
Compare
Choose a tag to compare

What's Changed

  • [BUGFIX] Upgrade wizard SQL error when there is nothing to migrate by @baschny in #36
  • [BUGFIX] dbal fetch method for non-composer mode by @bmack in #32

Full Changelog: 2.0.1...2.0.2

[RELEASE] 2.0.1

23 Dec 12:27
Compare
Choose a tag to compare

What's Changed

  • [BUGFIX] do not try to fetch new record from database by @achimfritz in #31

Full Changelog: 2.0.0...2.0.1

[RELASE] 2.0.0

13 Dec 06:49
e9c7608
Compare
Choose a tag to compare

What's Changed

  • [!!!][TASK] change dependencies in #29
    • drop TYPO3 v9 Support
    • add TYPO3 v12 Support
    • add PHP 7.4 as min requirement
    • fetch full page record in SlugModifier

Full Changelog: 1.2.2...2.0.0

Update extension version to 1.2.2

09 May 13:43
Compare
Choose a tag to compare

[RELEASE] Added compatibility for TYPO3 v10 LTS

02 Jun 14:27
43f21d7
Compare
Choose a tag to compare
v1.1.0

[TASK] Update extension version to v1.1.0

[RELEASE] Initial release

26 Aug 11:35
Compare
Choose a tag to compare
[BUGFIX] Use static prefix as documented

The documentation says:

    TCEMAIN.pages.slug.generatorOptions {
        prefix = /wishlist/
    }

but the code worked like this:

    TCEMAIN.pages.slug {
        prefix = /wishlist/
    }

The bugfix makes it consistent in the
"generatorOptions" namespace, as this
option is fully related for the
generation of a URL. This way,
the documentation does not need adaption.

THE CORRECT WAY NOW IS THIS:

    TCEMAIN.pages.slug.generatorOptions {
        prefix = /wishlist/
    }