Skip to content

Commit 7455d26

Browse files
committedAug 25, 2024··
Version 3.2.0.rc
1 parent 7754ac3 commit 7455d26

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed
 

‎CHANGELOG.md

+20-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,26 @@
22

33
## [Unreleased](https://github.com/railsadminteam/rails_admin/tree/HEAD)
44

5-
[Full Changelog](https://github.com/railsadminteam/rails_admin/compare/v3.2.0.beta...HEAD)
5+
[Full Changelog](https://github.com/railsadminteam/rails_admin/compare/v3.2.0.rc...HEAD)
6+
7+
## [3.2.0.rc](https://github.com/railsadminteam/rails_admin/tree/v3.2.0.rc) - 2024-08-25
8+
9+
[Full Changelog](https://github.com/railsadminteam/rails_admin/compare/v3.2.0.beta...v3.2.0.rc)
10+
11+
### Added
12+
13+
- ActiveRecord 7.1 composite primary keys support ([53b89c9](https://github.com/railsadminteam/rails_admin/commit/53b89c9161e48c0f9b4ecd5f544398c9360ea50f))
14+
15+
### Changed
16+
17+
- Introduce SingularAssociation and CollectionAssociation to tidy up the view files ([876be11](https://github.com/railsadminteam/rails_admin/commit/876be11ec01237596b2f27e15239e86418ce7610))
18+
19+
### Fixed
20+
21+
- Fix to show a thumbnail of all representable ActiveStorage attachments ([#3656](https://github.com/railsadminteam/rails_admin/pull/3656), [7754ac3](https://github.com/railsadminteam/rails_admin/commit/7754ac34eb8e0af7605b2e52ae0646b17e9bb0c6))
22+
- Fix to detect images properly in FileUpload and MultipleFileUpload field ([35c8702](https://github.com/railsadminteam/rails_admin/commit/35c8702351aa300bddcc950d36d68b80742f5011), [#3633](https://github.com/railsadminteam/rails_admin/pull/3633))
23+
- Fix to reset polymorphic id selection upon type change ([#3630](https://github.com/railsadminteam/rails_admin/pull/3630), [13114e5](https://github.com/railsadminteam/rails_admin/commit/13114e5629d49eab14d58df1319eb068dacedba7))
24+
- Lock jQuery UI version due to incompatibility with 1.14 ([5245d5b](https://github.com/railsadminteam/rails_admin/commit/5245d5bb91691d646219b5243f3f881a0144a3fd), [#3692](https://github.com/railsadminteam/rails_admin/issues/3692))
625

726
## [3.2.0.beta](https://github.com/railsadminteam/rails_admin/tree/v3.2.0.beta) - 2024-07-13
827

‎lib/rails_admin/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ class Version
55
MAJOR = 3
66
MINOR = 2
77
PATCH = 0
8-
PRE = 'beta'
8+
PRE = 'rc'
99

1010
class << self
1111
# @return [String]

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rails_admin",
3-
"version": "3.2.0-beta",
3+
"version": "3.2.0-rc",
44
"description": "RailsAdmin is a Rails engine that provides an easy-to-use interface for managing your data.",
55
"homepage": "https://github.com/railsadminteam/rails_admin",
66
"license": "MIT",

0 commit comments

Comments
 (0)
Please sign in to comment.