Skip to content

Commit

Permalink
Get ready for 3.2.0 release (#8168)
Browse files Browse the repository at this point in the history
  • Loading branch information
mgrunberg committed Dec 11, 2023
1 parent 7af735c commit 37726f4
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 6 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

## Unreleased

## 3.2.0 [](https://github.com/activeadmin/activeadmin/compare/v3.1.0..v3.2.0)

### Security Fixes

* Backport protect against CSV Injection. [#8167] by [@mgrunberg]

### Enhancements

* Backport support citext column type in string filter. [#8165] by [@mgrunberg]
* Backport provide detail in DB statement timeout error for filters. [#8163] by [@mgrunberg]

### Bug Fixes

* Backport make sure menu creation does not modify menu options. [#8166] by [@mgrunberg]
* Backport ransack error with filters when ActiveStorage is used. [#8164] by [@mgrunberg]

## 3.1.0 [](https://github.com/activeadmin/activeadmin/compare/v3.0.0..v3.1.0)

### Enhancements
Expand Down Expand Up @@ -877,6 +893,11 @@ Please check [0-6-stable] for previous changes.
[#8102]: https://github.com/activeadmin/activeadmin/pull/8102
[#8105]: https://github.com/activeadmin/activeadmin/pull/8105
[#8106]: https://github.com/activeadmin/activeadmin/pull/8106
[#8163]: https://github.com/activeadmin/activeadmin/pull/8163
[#8164]: https://github.com/activeadmin/activeadmin/pull/8164
[#8165]: https://github.com/activeadmin/activeadmin/pull/8165
[#8166]: https://github.com/activeadmin/activeadmin/pull/8166
[#8167]: https://github.com/activeadmin/activeadmin/pull/8167

[@1000ship]: https://github.com/1000ship
[@5t111111]: https://github.com/5t111111
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ GIT
PATH
remote: .
specs:
activeadmin (3.1.0)
activeadmin (3.2.0)
arbre (~> 1.2, >= 1.2.1)
formtastic (>= 3.1)
formtastic_i18n (>= 0.4)
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_61/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ../..
specs:
activeadmin (3.1.0)
activeadmin (3.2.0)
arbre (~> 1.2, >= 1.2.1)
formtastic (>= 3.1)
formtastic_i18n (>= 0.4)
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_70/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ../..
specs:
activeadmin (3.1.0)
activeadmin (3.2.0)
arbre (~> 1.2, >= 1.2.1)
formtastic (>= 3.1)
formtastic_i18n (>= 0.4)
Expand Down
2 changes: 1 addition & 1 deletion lib/active_admin/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# frozen_string_literal: true
module ActiveAdmin
VERSION = "3.1.0"
VERSION = "3.2.0"
end
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@activeadmin/activeadmin",
"version": "3.1.0",
"version": "3.2.0",
"description": "The administration framework for Ruby on Rails.",
"main": "app/assets/javascripts/active_admin/base.js",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion tasks/changelog.rb
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def changelog_labels
end

def merged_pr_ids_since(date)
commits = `git log --oneline origin/master --since '#{date}'`.split("\n").map { |l| l.split(/\s/, 2) }
commits = `git log --oneline origin/3-0-stable --since '#{date}'`.split("\n").map { |l| l.split(/\s/, 2) }
commits.map do |_sha, message|
match = /Merge pull request #(\d+)/.match(message)
match ||= /\(#(\d+)\)$/.match(message)
Expand Down

0 comments on commit 37726f4

Please sign in to comment.