Will Paginate Versions Save

Pagination library for Rails and other Ruby applications

v2.3.17

7 years ago
  • Avoid unintentional SQL queries being triggered by defining respond_to_missing? alongside method_missing?

v3.0.10

7 years ago
  • Fix locale load path so that application can override will_paginate's built-in translations.

v3.1.3

7 years ago
  • Rails 5 compatibility for inheriting query params in pagination links
  • Fix locale load path so that application can override will_paginate's built-in translations.

v3.0.9

7 years ago

Further fix security vulnerability when generating pagination URLs in Rails.

v3.1.2

7 years ago

Further fix security vulnerability when generating pagination URLs in Rails.

v3.1.1

7 years ago

Fixed security vulnerability when generating pagination URLs in Rails.

v3.0.8

7 years ago

Fixed security vulnerability when generating pagination URLs in Rails.

v3.1.0

8 years ago
  • Rails 5.0 support

  • Drop support for old Active Record finder params to paginate():

    # now unsupported:
    User.paginate(:page => 1, :order => 'created_at DESC', :conditions => ...)
    
    # convert to Arel syntax instead:
    User.order('created_at DESC').where(...).paginate(:page => 1)
    # or, even better:
    User.order('created_at DESC').where(...).page(1)
    
  • Add support for pagination with Mongoid


will_paginate is compatible with:

  • Ruby 1.8.7, 1.9.3, 2.0, 2.1, 2.2, 2.3
  • Rails 3.0, 3.1, 3.2, 4.0, 4.1, 4.2, 5.0
  • Active Record, DataMapper, Sequel, Mongoid
  • Database adapters: mysql, mysql2, postgres, sqlite3

v3.0.7

8 years ago
  • Fix count method to work with select statement.

v3.0.6

8 years ago
  • Rails 4.1 compatibility
  • Accept arguments for Relation#count