Skip to content

Releases: spiral/keeper

v0.11.0

22 Oct 10:37
7a4025c
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.10.0...v0.11.0

v0.10.0

11 Sep 19:09
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.9.1...v0.10.0

v0.9.0

25 May 08:14
c3bd1a3
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.8.3...v0.9.0

v0.8.0

23 Dec 16:05
f5d7bda
Compare
Choose a tag to compare
  • bump spiral/framework dependency to ^2.7
  • convert the default controller.action guard check to a fallback option for @Guarded annotation

v0.7.3

23 Dec 10:09
Compare
Choose a tag to compare
  • introduce condition attribute for ui:tab element, it will allow hiding tabs:
<extends:keeper:layout.tabs/>
<use:bundle path="keeper:bundle"/>

<?php
/**
 * @var bool $condition
 */
?>

<ui:tab id="first" title="[[1st]]" active="true">
    First tab
</ui:tab>

<ui:tab id="second" title="[[2nd]]" condition="{{ $condition }}">
    Second tab
</ui:tab>
  • add permission attribute for @Link annotation. Permissions for links (sidebar and breadcrumbs) will be generated using that property, as a fallback @Guarded permission or method name will be used. This update will help to handle cases when a method is protected by a context-based permission rule, but for rendering such links in the sidebar and breadcrumbs the context can't be passed, so all you need is add an additional @Link permission and register it with allow rule

v0.7.2

21 Dec 09:56
Compare
Choose a tag to compare
  • fix route defaults

v0.7.1

15 Dec 09:39
Compare
Choose a tag to compare
  • Fix @GuardNamespace annotation fallback - now sitemap permission uses the namespace.name from the @Controller annotation, not only name

v0.7.0

15 Dec 07:37
0a64b0a
Compare
Choose a tag to compare
  • refactor sidebar templates (+add explicit root/group rendering)
  • add sorting for classes found in the locator
  • fix sitemap permissions namespace bug
  • refactor sitemap bootloader+annotations sync

v0.6.0

01 Dec 10:29
c9c9cde
Compare
Choose a tag to compare

v0.5.11a

07 Jul 13:48
Compare
Choose a tag to compare
  • do not double add namespace prefix to sitemap checker (fixes the breadcrumps)