Releases: b13/masi
Releases · b13/masi
[RELEASE] Bugfix Release
What's Changed
- [BUGFIX] Mitigate internal SchemaInformation API changes by @torben-fr in #46
New Contributors
- @torben-fr made their first contribution in #46
Full Changelog: 3.0.0...3.0.1
[RELEASE] 3.0.0
What's Changed
- [TASK] Use Connection instead of PDO by @ErHaWeb in #38
- Translate label into German by @cweiske in #39
- [TASK] Support TYPO3 v13 by @christophlehmann in #40
- !!![TASK] change dependencies by @achimfritz in #43
New Contributors
Full Changelog: 2.0.3...3.0.0
[RELEASE] Bugfix release
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
- @fwg made their first contribution in #37
- @franzkugelmann made their first contribution in #35
Full Changelog: 2.0.2...2.0.3
[RELEASE] 2.0.2
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
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
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
[RELEASE] 1.2.2
[RELEASE] Added compatibility for TYPO3 v10 LTS
v1.1.0 [TASK] Update extension version to v1.1.0
[RELEASE] Initial release
[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/
}