Releases: xiaohutai/bolt-hierarchicalroutes
Releases · xiaohutai/bolt-hierarchicalroutes
v1.1.0
- Fix "Build Hierarchy" inconsistency. Building from CLI versus via admin panel resulted in different hierarchies (7373d1d). Hierarchy generation via back-end includes all items, including non-published ones. Outside the back-end (i.e. CLI) would only include published items. This has now been fixed to always include all items.
- Fix URL Generation issue because of a thinking error in matching route requirements (1771c59). This bug only occurs on sites with a lot of routes where routes are split dynamically into smaller groups. A wrong match could be made at the cut-off. This check has been fixed.
v1.0.1
Changelog
- Add custom
permission
setting (default remains extensions
)
When updating from v1.0.0
or lower
Simply add permission
in hierarchicalroutes.twokings.yml
if you want to use this setting.
v1.0.0
- Fixed a bug when a site has too many records in the hierarchy resulting in a regular expression error.
- Integration with Bolt Translate will most likely not be done anymore.
v0.2.5
Add option enable-routing
(defaults to true
) to disable overriding of links. You can still make use of the hierarchy in templates. This option is set to false
when using Bolt Translate so that its routing can take over.
v0.2.4
Fix a bug when a listing page was inside a menu. Then the back-end can't render the tree, because an array is returned instead of a single record. See 96f1b68.
This was noticable when installing it in a new Bolt site. First impressions matter :')
v0.2.3
- Generate URLs via the decorated/wrapped
UrlGenerator
so that other options still work; e.g. absolute URLs for canonical URLs
v0.2.2
- Add Bolt's
before
and after
handlers to our routes
- Now properly handles Bolt's
maintenance_mode
settings for own routes
v0.2.1
- Fix issue with
overwrite-duplicates: true
, See #19
v0.2.0
- Fix
query
feature with override-duplicates
feature when records already existed in the lookup.
v0.1.3
- Better performance by limiting one rebuild per request cycle
- Add hint for putting
app/config/extensions/hierarchicalroutes/
into .gitignore