CHANGELOG.md 7.5 KB
Newer Older
S
st0012 已提交
1 2 3 4 5 6 7
*   Fix partial caching skips same item issue

    If we render cached collection partials with repeated items, those repeated items
    will get skipped. For example, if you have 5 identical items in your collection, Rails
    only renders the first one when `cached` is set to true. But it should render all
    5 items instead.

8
    Fixes #35114.
S
st0012 已提交
9 10 11

    *Stan Lo*

12 13 14 15
*   Only clear ActionView cache in development on file changes

    To speed up development mode, view caches are only cleared when files in
    the view paths have changed. Applications which have implemented custom
16
    `ActionView::Resolver` subclasses may need to add their own cache clearing.
17 18 19

    *John Hawthorn*

20 21 22 23
*   Fix `ActionView::FixtureResolver` so that it handles template variants correctly.

    *Edward Rudd*

24

E
eileencodes 已提交
25 26
## Rails 6.0.0.beta3 (March 11, 2019) ##

27 28
*   Only accept formats from registered mime types

S
Shailesh Kalamkar 已提交
29
    A lack of filtering on mime types could allow an attacker to read
30 31 32 33 34 35 36
    arbitrary files on the target server or to perform a denial of service
    attack.

    Fixes CVE-2019-5418
    Fixes CVE-2019-5419

    *John Hawthorn*, *Eileen M. Uchitelle*, *Aaron Patterson*
E
eileencodes 已提交
37 38


39 40
## Rails 6.0.0.beta2 (February 25, 2019) ##

41
*   `ActionView::Template.finalize_compiled_template_methods` is deprecated with
42 43
    no replacement.

A
Aaron Patterson 已提交
44 45
    *tenderlove*

46
*   `config.action_view.finalize_compiled_template_methods` is deprecated with
47 48
    no replacement.

A
Aaron Patterson 已提交
49 50
    *tenderlove*

51
*   Ensure unique DOM IDs for collection inputs with float values.
52 53

    Fixes #34974.
54 55 56

    *Mark Edmondson*

G
Gannon McGibbon 已提交
57

58 59
## Rails 6.0.0.beta1 (January 18, 2019) ##

60 61 62 63 64 65
*   [Rename npm package](https://github.com/rails/rails/pull/34905) from
    [`rails-ujs`](https://www.npmjs.com/package/rails-ujs) to
    [`@rails/ujs`](https://www.npmjs.com/package/@rails/ujs).

    *Javan Makhmali*

66 67 68 69
*   Remove deprecated `image_alt` helper.

    *Rafael Mendonça França*

70 71 72 73 74
*   Fix the need of `#protect_against_forgery?` method defined in
    `ActionView::Base` subclasses. This prevents the use of forms and buttons.

    *Genadi Samokovarov*

W
WoH 已提交
75
*   Fix UJS permanently showing disabled text in a[data-remote][data-disable-with] elements within forms.
76 77

    Fixes #33889.
W
WoH 已提交
78 79 80

    *Wolfgang Hobmaier*

81 82 83 84 85 86 87 88
*   Prevent non-primary mouse keys from triggering Rails UJS click handlers.
    Firefox fires click events even if the click was triggered by non-primary mouse keys such as right- or scroll-wheel-clicks.
    For example, right-clicking a link such as the one described below (with an underlying ajax request registered on click) should not cause that request to occur.

    ```
    <%= link_to 'Remote', remote_path, class: 'remote', remote: true, data: { type: :json } %>
    ```

89
    Fixes #34541.
90 91 92

    *Wolfgang Hobmaier*

93 94 95 96 97 98 99 100 101 102 103 104 105
*   Prevent `ActionView::TextHelper#word_wrap` from unexpectedly stripping white space from the _left_ side of lines.

    For example, given input like this:

    ```
        This is a paragraph with an initial indent,
    followed by additional lines that are not indented,
    and finally terminated with a blockquote:
      "A pithy saying"
    ```

    Calling `word_wrap` should not trim the indents on the first and last lines.

106
    Fixes #34487.
107 108 109

    *Lyle Mullican*

110 111 112 113 114 115 116 117 118 119 120 121
*   Add allocations to template rendering instrumentation.

    Adds the allocations for template and partial rendering to the server output on render.

    ```
      Rendered posts/_form.html.erb (Duration: 7.1ms | Allocations: 6004)
      Rendered posts/new.html.erb within layouts/application (Duration: 8.3ms | Allocations: 6654)
    Completed 200 OK in 858ms (Views: 848.4ms | ActiveRecord: 0.4ms | Allocations: 1539564)
    ```

    *Eileen M. Uchitelle*, *Aaron Patterson*

122
*   Respect the `only_path` option passed to `url_for` when the options are passed in as an array
123

124 125 126 127
    Fixes #33237.

    *Joel Ambass*

128
*   Deprecate calling private model methods from view helpers.
129

130 131 132
    For example, in methods like `options_from_collection_for_select`
    and `collection_select` it is possible to call private methods from
    the objects used.
133

134
    Fixes #33546.
135

136
    *Ana María Martínez Gómez*
137

138 139 140 141 142 143 144 145 146 147 148
*   Fix issue with `button_to`'s `to_form_params`

    `button_to` was throwing exception when invoked with `params` hash that
    contains symbol and string keys. The reason for the exception was that
    `to_form_params` was comparing the given symbol and string keys.

    The issue is fixed by turning all keys to strings inside
    `to_form_params` before comparing them.

    *Georgi Georgiev*

149 150 151
*   Mark arrays of translations as trusted safe by using the `_html` suffix.

    Example:
152 153 154 155 156 157 158 159 160

        en:
          foo_html:
            - "One"
            - "<strong>Two</strong>"
            - "Three &#128075; &#128578;"

    *Juan Broullon*

161
*   Add `year_format` option to date_select tag. This option makes it possible to customize year
162 163 164
    names. Lambda should be passed to use this option.

    Example:
165 166 167

        date_select('user_birthday', '', start_year: 1998, end_year: 2000, year_format: ->year { "Heisei #{year - 1988}" })

168
    The HTML produced:
169 170 171 172 173 174 175 176 177 178

        <select id="user_birthday__1i" name="user_birthday[(1i)]">
        <option value="1998">Heisei 10</option>
        <option value="1999">Heisei 11</option>
        <option value="2000">Heisei 12</option>
        </select>
        /* The rest is omitted */

    *Koki Ryu*

179 180 181 182 183 184 185
*   Fix JavaScript views rendering does not work with Firefox when using
    Content Security Policy.

    Fixes #32577.

    *Yuji Yaginuma*

186 187 188 189 190 191
*   Add the `nonce: true` option for `javascript_include_tag` helper to
    support automatic nonce generation for Content Security Policy.
    Works the same way as `javascript_tag nonce: true` does.

    *Yaroslav Markin*

B
bogdanvlviv 已提交
192
*   Remove `ActionView::Helpers::RecordTagHelper`.
Y
Yoshiyuki Hirano 已提交
193 194 195

    *Yoshiyuki Hirano*

B
bogdanvlviv 已提交
196
*   Disable `ActionView::Template` finalizers in test environment.
197 198 199 200 201 202 203 204

    Template finalization can be expensive in large view test suites.
    Add a configuration option,
    `action_view.finalize_compiled_template_methods`, and turn it off in
    the test environment.

    *Simon Coffey*

205
*   Extract the `confirm` call in its own, overridable method in `rails_ujs`.
R
Ryuta Kamizono 已提交
206 207 208

    Example:

209 210 211 212 213 214
        Rails.confirm = function(message, element) {
          return (my_bootstrap_modal_confirm(message));
        }

    *Mathieu Mahé*

215
*   Enable select tag helper to mark `prompt` option as `selected` and/or `disabled` for `required`
R
Ryuta Kamizono 已提交
216 217 218
    field.

    Example:
219

B
bogdanvlviv 已提交
220 221 222 223
        select :post,
               :category,
               ["lifestyle", "programming", "spiritual"],
               { selected: "", disabled: "", prompt: "Choose one" },
224
               { required: true }
225

R
Ryuta Kamizono 已提交
226 227 228
    Placeholder option would be selected and disabled.

    The HTML produced:
229

230 231 232 233 234 235 236 237
        <select required="required" name="post[category]" id="post_category">
        <option disabled="disabled" selected="selected" value="">Choose one</option>
        <option value="lifestyle">lifestyle</option>
        <option value="programming">programming</option>
        <option value="spiritual">spiritual</option></select>

    *Sergey Prikhodko*

B
bogdanvlviv 已提交
238
*   Don't enforce UTF-8 by default.
A
Andrew White 已提交
239 240 241 242 243 244 245

    With the disabling of TLS 1.0 by most major websites, continuing to run
    IE8 or lower becomes increasingly difficult so default to not enforcing
    UTF-8 encoding as it's not relevant to other browsers.

    *Andrew White*

246 247 248 249
*   Change translation key of `submit_tag` from `module_name_class_name` to `module_name/class_name`.

    *Rui Onodera*

K
Kasper Timm Hansen 已提交
250
*   Rails 6 requires Ruby 2.5.0 or newer.
J
Jeremy Daer 已提交
251

K
Kasper Timm Hansen 已提交
252
    *Jeremy Daer*, *Kasper Timm Hansen*
253 254


255
Please check [5-2-stable](https://github.com/rails/rails/blob/5-2-stable/actionview/CHANGELOG.md) for previous changes.