Skip to content

Commit 2d667c1

Browse files
committed
Release v0.20.0
1 parent cd3cb72 commit 2d667c1

File tree

8 files changed

+48
-7
lines changed

8 files changed

+48
-7
lines changed

CHANGELOG.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,46 @@
1717

1818
## Changes
1919

20+
### 0.20.0 (January 17, 2024)
21+
22+
This is our final release before v1.0.0, which will bring with it a big
23+
change around how we handle our CSS and JS assets. You'll most likely need
24+
to do some work to update, and we'll be publishing release candidate releases
25+
to help learn along the way. If you can, we'd love it if you could give them a
26+
try and report any problems you face!
27+
28+
The following templates have changed since v0.19.0:
29+
30+
app/views/administrate/application/_form.html.erb
31+
app/views/administrate/application/show.html.erb
32+
app/views/fields/has_one/_form.html.erb
33+
app/views/fields/has_one/_show.html.erb
34+
35+
If your application overrides any of them, make sure to review your
36+
custom templates to ensure that they remain compatible.
37+
38+
* [FEATURE] [#2484] Yield created resource if block is given
39+
* [OPTIM] [#2473] Remove CircleCI
40+
* [COMPAT] [#2485] Switch to the Sentry Ruby & Rails gems
41+
* [UI] [#2422] Allow grouping fields (new, edit and show)
42+
* [COMPAT] [#2479] Use a dedicated ActiveSupport::Deprecation instance
43+
* [COMPAT] [#2483] Start testing against Ruby 3.3
44+
* [BUGFIX] [#2480] Fix the bundle audit workflow
45+
* [COMPAT] [#1932] Start testing on GitHub Actions
46+
* [OPTIM] [#2418] Build SQL with Arel instead of from strings
47+
* [UI] [#2405] Add form field hints
48+
* [COMPAT] [#2462] Avoid open-ended dependencies
49+
* [COMPAT] [#2419] Update `selenium-webdriver` and remove `webdrivers`
50+
* [COMPAT] [#2469] Drop support for Ruby 2.7, since it's EOL
51+
* [BUGFIX] [#2427] Support all number helpers of ActiveSupport::NumberHelper
52+
* [DOC] [#2443] Add sample app path to CONTRIBUTING.md
53+
* [FEATURE] [#2415] hasMany collection columns
54+
* [BUGFIX] [#2403] Add Administrate::Punditize methods as module methods
55+
* [COMPAT] [#2433] Add GitHub Actions as an ecosystem for Dependabot
56+
* [COMPAT] [#2428] Enable Rails 7 on CI
57+
* [COMPAT] [#2410] Another year, another change to how to deal with webdrivers
58+
* [DOC] [#2408] Example app: change float column types to decimal
59+
2060
### 0.19.0 (July 18, 2023)
2161

2262
Once again, a big catchup release with lots of miscellaneous compatibility

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
administrate (0.19.0)
4+
administrate (0.20.0)
55
actionpack (>= 6.0, < 8.0)
66
actionview (>= 6.0, < 8.0)
77
activerecord (>= 6.0, < 8.0)

bin/build-changelog

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ if ! command -v gh > /dev/null; then
77
exit 1
88
fi
99

10-
last_release=$(git describe --tag --abbrev=0)
10+
# last_release=$(git describe --tag --abbrev=0)
11+
last_release="482bc010"
1112

1213
template_changes=$(git diff --name-only "${last_release}" | grep html.erb)
1314

gemfiles/pundit21.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ gem "kaminari-i18n"
1212
gem "pg"
1313
gem "pundit", "~> 2.1.0"
1414
gem "redcarpet"
15-
gem "sentry-ruby"
1615
gem "sentry-rails"
16+
gem "sentry-ruby"
1717
gem "unicorn"
1818

1919
group :development, :test do

gemfiles/rails60.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ gem "kaminari-i18n"
1212
gem "pg"
1313
gem "pundit"
1414
gem "redcarpet"
15-
gem "sentry-ruby"
1615
gem "sentry-rails"
16+
gem "sentry-ruby"
1717
gem "unicorn"
1818
gem "rails", "~> 6.0.3.4"
1919

gemfiles/rails61.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ gem "kaminari-i18n"
1212
gem "pg"
1313
gem "pundit"
1414
gem "redcarpet"
15-
gem "sentry-ruby"
1615
gem "sentry-rails"
16+
gem "sentry-ruby"
1717
gem "unicorn"
1818
gem "rails", "~> 6.1"
1919

gemfiles/rails70.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ gem "kaminari-i18n"
1212
gem "pg"
1313
gem "pundit"
1414
gem "redcarpet"
15-
gem "sentry-ruby"
1615
gem "sentry-rails"
16+
gem "sentry-ruby"
1717
gem "unicorn"
1818
gem "rails", "~> 7.0"
1919

lib/administrate/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Administrate
2-
VERSION = "0.19.0".freeze
2+
VERSION = "0.20.0".freeze
33
end

0 commit comments

Comments
 (0)