Version 1.2.1

This commit is contained in:
Akira Matsuda 2020-05-28 02:27:16 +09:00
parent 674aeecbb3
commit ab8b1118bd
5 changed files with 16 additions and 4 deletions

View File

@ -1,3 +1,15 @@
## 1.2.1
### Security Fixes:
* Added `original_script_name` parameter to the ignore list: #1020 [@viseztrance]
See CVE-2020-11082 for full details.
### Bug Fixes:
* Fixed a couple of grouped `total_count` regressions by reverting #979
## 1.2.0
### Deprecations:

View File

@ -2,6 +2,6 @@
module Kaminari
module Actionview
VERSION = '1.2.0'
VERSION = '1.2.1'
end
end

View File

@ -2,6 +2,6 @@
module Kaminari
module Activerecord
VERSION = '1.2.0'
VERSION = '1.2.1'
end
end

View File

@ -2,6 +2,6 @@
module Kaminari
module Core
VERSION = '1.2.0'
VERSION = '1.2.1'
end
end

View File

@ -1,5 +1,5 @@
# frozen_string_literal: true
module Kaminari
VERSION = '1.2.0'
VERSION = '1.2.1'
end