Skip to content

Latest commit

 

History

History
113 lines (95 loc) · 5.16 KB

CHANGELOG.md

File metadata and controls

113 lines (95 loc) · 5.16 KB

Changelog

1.0.0 (unreleased)

Breaking Changes

Enhancements

Major

Minor

    controller do
      # Redirects to index page instead of rendering updated resource
      def update
        update!{ collection_path }
      end
    end
index download_links: ->{ can?(:view_all_download_links) || [:pdf] }

Security Fixes

Bug Fixes

  • Fixes filters for has_many :through relationships #2541 by @shekibobo
  • "New" action item now only shows up on the index page bf659bc by @seanlinsley
  • Fixes comment creation bug with aliased resources 9a082486 by @seanlinsley
  • Fixes the deletion of :if and :unless from filters #2523 by @PChambino

Deprecations

  • ActiveAdmin::Event (ActiveAdmin::EventDispatcher) [#3435][] by @timoschilling ActiveAdmin::Event will be removed in a future version, ActiveAdmin switched to use ActiveSupport::Notifications. NOTE: The blog parameters has changed:
ActiveSupport::Notifications.subscribe ActiveAdmin::Application::BeforeLoadEvent do |event, *args|
  # some code
end

ActiveSupport::Notifications.publish ActiveAdmin::Application::BeforeLoadEvent, "some data"

Previous Changes

Please check 0-6-stable for previous changes.