railscasts icon indicating copy to clipboard operation
railscasts copied to clipboard

Bump will_paginate from 3.0.pre2 to 3.1.7

Open dependabot[bot] opened this issue 5 years ago • 0 comments

Bumps will_paginate from 3.0.pre2 to 3.1.7.

Release notes

Sourced from will_paginate's releases.

will_paginate 3.1.7

  • Rails 5.2.2.1 & 6.0.0 compatibility

will_paginate 3.1.6

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

will_paginate 3.1.5

  • 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

will_paginate 3.1.3

  • 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.

will_paginate 3.1.2

Further fix security vulnerability when generating pagination URLs in Rails.

will_paginate 3.1.1

Fixed security vulnerability when generating pagination URLs in Rails.

will_paginate 3.1.0

  • 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

will_paginate 3.0.12

  • No longer generates <a rel="start"> for first page link since "start" is an invalid rel value

will_paginate 3.0.10

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

will_paginate 3.0.9

... (truncated)
Commits
  • 63e84fb will_paginate 3.1.7
  • 2956393 Merge pull request #585 from coderhs/patch-1
  • b6fb7b0 Merge branch 'rails6'
  • 9b22d48 Update PostgreSQL in Travis CI
  • c00a841 Compatibility with Rails 6
  • df2e01e Test against Rails 6 beta
  • 02eea15 Fix test_all for Ruby 2.5
  • 9c9d737 [DOC] README: latest hash format convention in examples.
  • b828d8c Merge branch 'ci-versions'
  • 797e74d Fix primary key for MySQL 5.7
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot ignore this [patch|minor|major] version will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

You can disable automated security fix PRs for this repo from the Security Alerts page.

dependabot[bot] avatar Aug 12 '19 11:08 dependabot[bot]