Skip to content

0.7.0

Compare
Choose a tag to compare
@josegonzalez josegonzalez released this 27 Jun 20:06
· 442 commits to master since this release

Deprecations

Warnings may be emitted for all deprecated functionality usage. Deprecated functionality will be removed in the next release.

  • Deprecate scaffold.index_blog_title_field in favor of scaffold.index_title_field
  • Deprecate scaffold.index_blog_body_field in favor of scaffold.index_body_field
  • Replaced the after_form/before_form view blocks with form.after_end/form.before_create viewblocks
  • Namespaced the submit_button_text and enable_dirty_check options with the word form.
  • Replaced scaffold.disable_extra_buttons and scaffold.extra_buttons_blacklist with scaffold.form_submit_extra_buttons

Bugs

  • Ensure input generated by DateTimeWidget passes SecurityComponent #178
  • Remove scrutinizer warnings #179 #180
  • Drop messages from options sent to the view layer #167

Features

  • Add support for BootstrapUI Breadcrumbs #168
    • upgrade to at least bootstrap-ui 1.2
    • pull blockquotes from scaffold.breadcrumbs configuration key
    • introduce Breadcrumb and ActiveBreadcrumb classes
    • add docs for all blockquote-related functionality
  • Clean up index action button implementation #170
    • Add documentation!
    • Cleanup action groups
    • Add the ability to specify where the primaryKey will appear in the generated url
  • Add gallery index type #177
    • Deprecate scaffold.index_blog_title_field in favor of scaffold.index_title_field
    • Deprecate scaffold.index_blog_body_field in favor of scaffold.index_body_field
  • Implement finder scopes #182
  • Add the ability to specify "format as" buttons #181
  • refactor: Simplify forms #166
    • Adds much-needed documentation. I consider anything documented stable, and all else refactorable/removable.
    • Replaced the after_form/before_form view blocks with form.after_end/form.before_create viewblocks. The old ones will render but will trigger a deprecation notice.
    • Added form.after_create/form.before_end viewblocks.
    • Namespaced the submit_button_text and enable_dirty_check options with the word form. Also changed the variable in use. The old variables will still take affect but will emit a deprecation notice.
    • Created a new scaffold.form_submit_extra_buttons configuration key. This allows total control of the form submit buttons. The configuration keys scaffold.disable_extra_buttons and scaffold.extra_buttons_blacklist will still take effect but will emit a deprecation notice.

Documentation

  • Add documentation to index page surrounding bulk actions #188
  • Cleanup navigation docs #169