Skip to content

Commit 4ffc435

Browse files
committed
Release version 0.18.0
1 parent efe7aa6 commit 4ffc435

File tree

3 files changed

+76
-3
lines changed

3 files changed

+76
-3
lines changed

CHANGELOG.md

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

1818
## Changes
1919

20+
### 0.18.0 (August 12, 2022)
21+
22+
This is a general catchup release. We've added `dart-sass` compatibility,
23+
improved a i18n handling, dropped support for Rails 5.x and Ruby 2.6, dropped
24+
`datetime_picker_rails` because now browser support is good enough, plus many
25+
others.
26+
27+
The following templates have changed since v0.17.0:
28+
29+
app/views/administrate/application/_collection.html.erb
30+
app/views/administrate/application/_collection_header_actions.html.erb
31+
app/views/administrate/application/_collection_item_actions.html.erb
32+
app/views/administrate/application/_index_header.html.erb
33+
app/views/administrate/application/_navigation.html.erb
34+
app/views/administrate/application/_pagination.html.erb
35+
app/views/administrate/application/edit.html.erb
36+
app/views/administrate/application/index.html.erb
37+
app/views/administrate/application/show.html.erb
38+
app/views/fields/belongs_to/_index.html.erb
39+
app/views/fields/belongs_to/_show.html.erb
40+
app/views/fields/date/_form.html.erb
41+
app/views/fields/date_time/_form.html.erb
42+
app/views/fields/has_many/_index.html.erb
43+
app/views/fields/has_one/_form.html.erb
44+
app/views/fields/has_one/_index.html.erb
45+
app/views/fields/has_one/_show.html.erb
46+
app/views/fields/polymorphic/_index.html.erb
47+
app/views/fields/polymorphic/_show.html.erb
48+
app/views/fields/time/_form.html.erb
49+
app/views/fields/url/_index.html.erb
50+
app/views/fields/url/_show.html.erb
51+
52+
If your application overrides any of them, make sure to review your
53+
custom templates to ensure that they remain compatible.
54+
55+
* [DOC] [#2154] Ensure we read from sanitised paths
56+
* [FEATURE] [#2154] Try out GitHub's code scanning tool
57+
* [DOC] [#2243] Add guide on how to scope has_many relations
58+
* [UI] [#2239] Move pagination into partial
59+
* [FEATURE] [#2237] Move bundle-audit to GitHub Actions
60+
* [i18n] [#2200] Fix HasOne association translations
61+
* BUGFIX] [#2235] Guess correct name for namespaced associations
62+
* [BUGFIX] [#2215] Fix typos and formatting in hiding dashboard docs
63+
* [FEATURE] [#1941] Unify Action Checks
64+
* [FEATURE] [#2181] Allow overriding the sample app database config
65+
* [COMPAT] [#2201] Drop support for Rails 5.x
66+
* [DOC] [#2225] Document how to customize Field::Select option labels
67+
* [SECURITY] [#2227] Update Rails out of CVE-2022-32224
68+
* [FEATURE] [#2216] Move pagination into private method for overriding
69+
* [FEATURE] [#2208] Enable ordering the BelongsTo fields by using `order` option.
70+
* [i18n] [#2219] Add Slovenian translations
71+
* [FEATURE] [#2211] Improve index eager load performance
72+
* [COMPAT] [#2198] Dart-sass compatibility
73+
* [COMPAT] [#2194] Drop support for Ruby 2.6, which reached EOL
74+
* [i18n] [#2186] Correct grammar on German error messages
75+
* [i18n] [#2183] Only include locales when bundling
76+
* [OPTIM] [#2182] Change ApplicationController's routes's class to Set to speed up "valid_action?"
77+
* [DOC] [#2153] How to customise the search
78+
* [BUGFIX] [#2164] Use field.name rather than resource_name for has_one relationships
79+
* [BUGFIX] [#2163] Check the routes before render link in collection.html
80+
* [COMPAT] [#2161] Bump Rails dependencies from 6.1.4.6 to 6.1.5
81+
* [FEATURE] [#2133] Sort dashboard attributes
82+
* [BUGFIX] [#2152] Fix typos in example view for Adding Controllers
83+
* [UI] [#2146] Add destroy link in the show template
84+
* [BUGFIX] [#2145] Fix table header classes of has_many field
85+
* [COMPAT] [#2141] Fix Pundit >2.2.0 include
86+
* [UI] [#2139] Add HTML options to the URL field
87+
* [COMPAT] [#2144] Update Rails to 6.1.4.6
88+
* [UI] [#2136] Drop datetime_picker_rails and use browser fields
89+
* [CHANGE] [#2138] Provide a stylelint config that we can tweak
90+
* [CHANGE] [#2096] Make search easier to override and adapt to custom use cases
91+
* [i18n] [#2114] Add i18n support for Field::HasMany
92+
2093
### 0.17.0 (January 31, 2022)
2194

2295
This release incorporates nearly a year of minor changes, starts testing

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
administrate (0.17.0)
4+
administrate (0.18.0)
55
actionpack (>= 5.0)
66
actionview (>= 5.0)
77
activerecord (>= 5.0)
@@ -297,7 +297,7 @@ GEM
297297
terminal-table (3.0.2)
298298
unicode-display_width (>= 1.1.1, < 3)
299299
thor (1.2.1)
300-
tilt (2.0.10)
300+
tilt (2.0.11)
301301
timecop (0.9.5)
302302
tzinfo (2.0.5)
303303
concurrent-ruby (~> 1.0)

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.17.0".freeze
2+
VERSION = "0.18.0".freeze
33
end

0 commit comments

Comments
 (0)