Skip to content

Commit

Permalink
Version 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mshibuya committed Feb 28, 2021
1 parent 4474486 commit 4fe2152
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 deletions.
23 changes: 22 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,28 @@

## [Unreleased](https://github.com/sferik/rails_admin/tree/HEAD)

[Full Changelog](https://github.com/sferik/rails_admin/compare/v2.0.2...HEAD)
[Full Changelog](https://github.com/sferik/rails_admin/compare/v2.1.0...HEAD)


## [2.1.0](https://github.com/sferik/rails_admin/tree/v2.1.0) - 2021-02-28

[Full Changelog](https://github.com/sferik/rails_admin/compare/v2.0.2...v2.1.0)

### Added
- Ability to set default filter operator for fields ([#3318](https://github.com/sferik/rails_admin/pull/3318))
- Shrine 3.x support ([#3257](https://github.com/sferik/rails_admin/pull/3257))
- Rails 6.1 compatibility ([f0c46f1e](https://github.com/sferik/rails_admin/commit/f0c46f1e128b5d31d812ff3a80d15db8692c848b))

### Fixed
- Some translation entries of filtering-multiselect weren't localizable ([#3315](https://github.com/sferik/rails_admin/pull/3315))
- Thumbnail generation breaks when used with ActiveStorage 6.x and ruby-vips ([#3255](https://github.com/sferik/rails_admin/pull/3255), [2dba791c](https://github.com/sferik/rails_admin/commit/2dba791c9135b3202d662f90fac443d282869bd6))
- Hide present/blank filter options for required fields ([#3340](https://github.com/sferik/rails_admin/pull/3340))
- Fix to show correct filename for multiple attachments ([#3295](https://github.com/sferik/rails_admin/pull/3295))
- Fix encoding detection was incompatible with DB connection proxies like active_record_host_pool gem ([#3313](https://github.com/sferik/rails_admin/pull/3313))
- Fix hidden fields breaking indentation ([#3278](https://github.com/sferik/rails_admin/pull/3278), [#2487](https://github.com/sferik/rails_admin/issues/2487))

### Removed
- Remove `yell_for_non_accessible_fields` option since it has no effect since 0.5.0 ([#3249](https://github.com/sferik/rails_admin/pull/3249))


## [2.0.2](https://github.com/sferik/rails_admin/tree/v2.0.2) - 2020-03-17
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ This library aims to support and is [tested against][ghactions] the following Ru
* Ruby 2.5
* Ruby 2.6
* Ruby 2.7
* Ruby 3.0
* [JRuby][]

[jruby]: http://jruby.org/
4 changes: 2 additions & 2 deletions lib/rails_admin/version.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module RailsAdmin
class Version
MAJOR = 2
MINOR = 0
PATCH = 2
MINOR = 1
PATCH = 0
PRE = nil

class << self
Expand Down

0 comments on commit 4fe2152

Please sign in to comment.