Skip to content

Commit

Permalink
bump to 3.7.10
Browse files Browse the repository at this point in the history
  • Loading branch information
scambra committed Dec 13, 2024
1 parent 0224c9b commit eaa62d5
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rdoc
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
= 3.7.10
- Move code from on_create.js.erb to partials, so it's easier to change parts, e.g. how new record is rendered
- Don't reload after deleting last record if pagination is disabled

= 3.7.9
- Add css_class to action links, to avoid changing name, it may result confusing, deprecate name setter.
- Add buttons to check all and uncheck all on :select form ui for collection associations, and draggable lists (active_scaffold_checkbox_list).
- Add hidden field with locking column in base_form partial for persisted records automatically, if model uses optimistic locking.
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ GIT
PATH
remote: .
specs:
active_scaffold (3.7.9)
active_scaffold (3.7.10)
cow_proxy (~> 0.3)
ice_nine (~> 0.11)
rails (>= 5.2.0)
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/Gemfile.rails-5.2.x.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
active_scaffold (3.7.9)
active_scaffold (3.7.10)
cow_proxy (~> 0.3)
ice_nine (~> 0.11)
rails (>= 5.2.0)
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/Gemfile.rails-6.0.x.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
active_scaffold (3.7.9)
active_scaffold (3.7.10)
cow_proxy (~> 0.3)
ice_nine (~> 0.11)
rails (>= 5.2.0)
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/Gemfile.rails-6.1.x.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
active_scaffold (3.7.9)
active_scaffold (3.7.10)
cow_proxy (~> 0.3)
ice_nine (~> 0.11)
rails (>= 5.2.0)
Expand Down
2 changes: 1 addition & 1 deletion lib/active_scaffold/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module ActiveScaffold
module Version
MAJOR = 3
MINOR = 7
PATCH = 9
PATCH = 10
FIX = nil

STRING = [MAJOR, MINOR, PATCH, FIX].compact.join('.')
Expand Down

0 comments on commit eaa62d5

Please sign in to comment.