Skip to content

Releases: mislav/will_paginate

will_paginate 4.0.1

Choose a tag to compare

@mislav mislav released this 10 Jun 09:09
50017c3

What's Changed

New Contributors

Full Changelog: v4.0.0...v4.0.1

will_paginate 4.0.0

Choose a tag to compare

@mislav mislav released this 29 May 20:52
4d1e3d4

This release adds only minor new features, but bumps the major version number because some old functionality has been removed due to other frameworks not being maintained anymore. Namely, DataMapper and Merb integrations have been dropped since both projects haven't been maintained in a long while and it's been hard maintaining a test suite for them.

What's New

What's Changed

New Contributors

Full Changelog: v3.3.1...v4.0.0

will_paginate 3.3.1

Choose a tag to compare

@mislav mislav released this 12 Aug 10:00
  • Accessibility fix: add the aria-disabled attribute to the pagination element marked with CSS classname "disabled".

will_paginate 3.3.0

Choose a tag to compare

@mislav mislav released this 26 Feb 00:10
  • ActiveRecord: Avoid a count query in empty? #593

  • Support MS SQL Server #540

  • Avoid Ruby 2.7 warnings about keyword arguments #609

  • Breaking: drop Ruby 1.9 compatibility

will_paginate 3.2.1

Choose a tag to compare

@mislav mislav released this 15 Oct 01:08
  • Ensure PageNumber is serialized as JSON number

will_paginate 3.2.0

Choose a tag to compare

@mislav mislav released this 09 Oct 00:42
  • Performance: avoid extending Numeric with PageNumber logic

    BREAKING: Integer === page_number is no longer true.

  • Make pagination markup more accessible:

    • container div now has role="navigation";
    • container div now has aria-label="Pagination", translatable via will_paginate.container_aria_label i18n key;
    • individual page links now have aria-label="Page {N}", translatable via will_paginate.page_aria_label i18n key;
    • current page now has aria-current="page".
  • Add support for will_paginate view helpers in Hanami View

  • Add total_entries support for Mongoid

  • Rails: avoid circular require warning

  • Rails: fix serving HTTP 404s for WillPaginate::InvalidPage exceptions

will_paginate 3.1.8

Choose a tag to compare

@mislav mislav released this 19 Aug 14:37
  • Avoid warnings on Ruby 2.7

will_paginate 3.1.7

Choose a tag to compare

@mislav mislav released this 18 Mar 21:51
  • Rails 5.2.2.1 & 6.0.0 compatibility

will_paginate 3.1.6

Choose a tag to compare

@mislav mislav released this 07 Jun 22:10

Reference Integer instead of Fixnum to avoid Ruby 2.4 deprecation warning.

will_paginate 3.1.5

Choose a tag to compare

@mislav mislav released this 15 Oct 17:55
  • Avoid Rails 5 deprecation warning about original_exception
  • No longer generates <a rel="start"> for first page link since "start" is an invalid rel value