From 5a958e46e8620fba320e04347d326d058c07d396 Mon Sep 17 00:00:00 2001 From: Mitsuhiro Shibuya Date: Thu, 23 Mar 2023 14:25:24 +0900 Subject: [PATCH] Version 3.1.2 --- CHANGELOG.md | 14 +++++++++++++- lib/rails_admin/version.rb | 2 +- package.json | 2 +- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d23eb4245..ce6fbed3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,19 @@ ## [Unreleased](https://github.com/railsadminteam/rails_admin/tree/HEAD) -[Full Changelog](https://github.com/railsadminteam/rails_admin/compare/v3.1.1...HEAD) +[Full Changelog](https://github.com/railsadminteam/rails_admin/compare/v3.1.2...HEAD) + +## [3.1.2](https://github.com/railsadminteam/rails_admin/tree/v3.1.2) - 2023-03-23 + +[Full Changelog](https://github.com/railsadminteam/rails_admin/compare/v3.1.1...v3.1.2) + +### Fixed + +- Fix install failing with importmap setup ([aca22b6](https://github.com/railsadminteam/rails_admin/commit/aca22b6ba1eca1ac618525334cf14fc946e1c99e), [#3609](https://github.com/railsadminteam/rails_admin/issues/3609)) +- Fix to show non-eager-loaded models which are explicitly configured ([87c9d5b](https://github.com/railsadminteam/rails_admin/commit/87c9d5bc5b6ffb423e72054b3cfe8f949c12c178), [#3604](https://github.com/railsadminteam/rails_admin/issues/3604)) +- Fix `rails_admin.dom_ready` event not triggered with jQuery `on` ([2ee43de](https://github.com/railsadminteam/rails_admin/commit/2ee43deb1fa8d3a9e3ea0e589c1687d684e19ad6), [33773d7](https://github.com/railsadminteam/rails_admin/commit/33773d7f8dd43eeb0f6a7c125c4bee170132e5d2), [#3600](https://github.com/railsadminteam/rails_admin/discussions/3600)) +- Restore caching in RailsAdmin::Config::Model#excluded? ([#3587](https://github.com/railsadminteam/rails_admin/pull/3587)) +- Optimize/simplify viable_models file path to class name logic ([#3589](https://github.com/railsadminteam/rails_admin/pull/3589)) ## [3.1.1](https://github.com/railsadminteam/rails_admin/tree/v3.1.1) - 2022-12-18 diff --git a/lib/rails_admin/version.rb b/lib/rails_admin/version.rb index d48c0729e..1b09a721f 100644 --- a/lib/rails_admin/version.rb +++ b/lib/rails_admin/version.rb @@ -4,7 +4,7 @@ module RailsAdmin class Version MAJOR = 3 MINOR = 1 - PATCH = 1 + PATCH = 2 PRE = nil class << self diff --git a/package.json b/package.json index 9c2487dcd..19b126676 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rails_admin", - "version": "3.1.1", + "version": "3.1.2", "description": "RailsAdmin is a Rails engine that provides an easy-to-use interface for managing your data.", "homepage": "https://github.com/railsadminteam/rails_admin", "license": "MIT",