5_0_release_notes.md 32.2 KB
Newer Older
J
Jon Moss 已提交
1 2 3 4 5 6 7
**DO NOT READ THIS FILE ON GITHUB, GUIDES ARE PUBLISHED ON http://guides.rubyonrails.org.**

Ruby on Rails 5.0 Release Notes
===============================

Highlights in Rails 5.0:

8 9
* Action Cable
* Rails API
10
* Active Record Attributes API
11
* Test Runner
J
Jon Moss 已提交
12 13 14
* Exclusive use of `rails` CLI over Rake
* Sprockets 3
* Turbolinks 5
15
* Ruby 2.2.2+ required
J
Jon Moss 已提交
16 17 18 19 20 21 22 23 24 25 26

These release notes cover only the major changes. To learn about various bug
fixes and changes, please refer to the change logs or check out the [list of
commits](https://github.com/rails/rails/commits/5-0-stable) in the main Rails
repository on GitHub.

--------------------------------------------------------------------------------

Upgrading to Rails 5.0
----------------------

27 28 29 30 31 32 33
If you're upgrading an existing application, it's a great idea to have good test
coverage before going in. You should also first upgrade to Rails 4.2 in case you
haven't and make sure your application still runs as expected before attempting
an update to Rails 5.0. A list of things to watch out for when upgrading is
available in the
[Upgrading Ruby on Rails](upgrading_ruby_on_rails.html#upgrading-from-rails-4-2-to-rails-5-0)
guide.
J
Jon Moss 已提交
34 35


36 37
Major Features
--------------
J
Jon Moss 已提交
38

39 40
### Action Cable
[Pull Request](https://github.com/rails/rails/pull/22586)
J
Jon Moss 已提交
41

42
ToDo...
J
Jon Moss 已提交
43

44 45
### Rails API
[Pull Request](https://github.com/rails/rails/pull/19832)
J
Jon Moss 已提交
46

47
ToDo...
J
Jon Moss 已提交
48

49
### Active Record attributes API
J
Jon Moss 已提交
50

51
ToDo...
J
Jon Moss 已提交
52

53 54 55 56 57 58 59 60
### Test Runner
[Pull Request](https://github.com/rails/rails/pull/19216)

ToDo...


Railties
--------
J
Jon Moss 已提交
61

62
Please refer to the [Changelog][railties] for detailed changes.
J
Jon Moss 已提交
63

64
### Removals
J
Jon Moss 已提交
65

66
*   Removed debugger support, use byebug instead. `debugger` is not supported by
67 68 69
    Ruby
    2.2. ([commit](https://github.com/rails/rails/commit/93559da4826546d07014f8cfa399b64b4a143127))

70
*   Removed deprecated `test:all` and `test:all:db` tasks.
71 72
    ([commit](https://github.com/rails/rails/commit/f663132eef0e5d96bf2a58cec9f7c856db20be7c))

73
*   Removed deprecated `Rails::Rack::LogTailer`.
74 75
    ([commit](https://github.com/rails/rails/commit/c564dcb75c191ab3d21cc6f920998b0d6fbca623))

76
*   Removed deprecated `RAILS_CACHE` constant.
77 78
    ([commit](https://github.com/rails/rails/commit/b7f856ce488ef8f6bf4c12bb549f462cb7671c08))

79
*   Removed deprecated `serve_static_assets` configuration.
80 81
    ([commit](https://github.com/rails/rails/commit/463b5d7581ee16bfaddf34ca349b7d1b5878097c))

82
*   Removed the documentation tasks `doc:app`, `doc:rails`, and `doc:guides`.
83
    ([commit](https://github.com/rails/rails/commit/cd7cc5254b090ccbb84dcee4408a5acede25ef2a))
J
Jon Moss 已提交
84

85
### Deprecations
J
Jon Moss 已提交
86

87
*   Deprecated `config.static_cache_control` in favor of
88 89 90
    `config.public_file_server.headers`.
    ([Pull Request](https://github.com/rails/rails/pull/22173))

91
*   Deprecated `config.serve_static_files` in favor of `config.public_file_server.enabled`.
92 93
    ([Pull Request](https://github.com/rails/rails/pull/22173))

94
### Notable changes
J
Jon Moss 已提交
95

96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
*   Added Rails test runner `bin/rails test`.
    ([Pull Request](https://github.com/rails/rails/pull/19216))

*   Newly generated applications and plugins get a `README.md` in Markdown.
    ([commit](https://github.com/rails/rails/commit/89a12c931b1f00b90e74afffcdc2fc21f14ca663),
     [Pull Request](https://github.com/rails/rails/pull/22068))

*   Added `bin/rails restart` task to restart your Rails app by touching `tmp/restart.txt`.
    ([Pull Request](https://github.com/rails/rails/pull/18965))

*   Added `bin/rails initializers` task to print out all defined initializers in
    the order they are invoked by Rails.
    ([Pull Request](https://github.com/rails/rails/pull/19323))

*   Removed `Rack::ContentLength` middleware from the default
111
    stack. ([Commit](https://github.com/rails/rails/commit/56903585a099ab67a7acfaaef0a02db8fe80c450))
J
Jon Moss 已提交
112

113 114 115 116 117 118 119 120 121
*   Added `bin/rails dev:cache` to enable or disable caching in development mode.
    ([Pull Request](https://github.com/rails/rails/pull/20961))

*   Added `bin/update` script to update the development environment automatically.
    ([Pull Request](https://github.com/rails/rails/pull/20972))

*   Proxy Rake tasks through `bin/rails`.
    ([Pull Request](https://github.com/rails/rails/pull/22457),
     [Pull Request](https://github.com/rails/rails/pull/22288))
J
Jon Moss 已提交
122 123


124 125
Action Pack
-----------
J
Jon Moss 已提交
126

127
Please refer to the [Changelog][action-pack] for detailed changes.
J
Jon Moss 已提交
128

129
### Removals
J
Jon Moss 已提交
130

131 132
*   Removed `ActionDispatch::Request::Utils.deep_munge`.
    ([commit](https://github.com/rails/rails/commit/52cf1a71b393486435fab4386a8663b146608996))
J
Jon Moss 已提交
133

134 135 136 137 138 139 140 141 142 143 144
*   Removed `ActionController::HideActions`.
    ([Pull Request](https://github.com/rails/rails/pull/18371))

*   Removed `respond_to` and `respond_with` placeholder methods, this functionality
    has been extracted to the
    [responders](https://github.com/plataformatec/responders) gem.
    ([commit](https://github.com/rails/rails/commit/afd5e9a7ff0072e482b0b0e8e238d21b070b6280))

*   Removed deprecated assertion files.
    ([commit](https://github.com/rails/rails/commit/92e27d30d8112962ee068f7b14aa7b10daf0c976))

145
*   Removed deprecated usage of string keys in URL helpers.
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
    ([commit](https://github.com/rails/rails/commit/34e380764edede47f7ebe0c7671d6f9c9dc7e809))

*   Removed deprecated `only_path` option on `*_path` helpers.
    ([commit](https://github.com/rails/rails/commit/e4e1fd7ade47771067177254cb133564a3422b8a))

*   Removed deprecated `NamedRouteCollection#helpers`.
    ([commit](https://github.com/rails/rails/commit/2cc91c37bc2e32b7a04b2d782fb8f4a69a14503f))

*   Removed deprecated support to define routes with `:to` option that doesn't contain `#`.
    ([commit](https://github.com/rails/rails/commit/1f3b0a8609c00278b9a10076040ac9c90a9cc4a6))

*   Removed deprecated `ActionDispatch::Response#to_ary`.
    ([commit](https://github.com/rails/rails/commit/4b19d5b7bcdf4f11bd1e2e9ed2149a958e338c01))

*   Removed deprecated `ActionDispatch::Request#deep_munge`.
    ([commit](https://github.com/rails/rails/commit/7676659633057dacd97b8da66e0d9119809b343e))

*   Removed deprecated
    `ActionDispatch::Http::Parameters#symbolized_path_parameters`.
    ([commit](https://github.com/rails/rails/commit/7fe7973cd8bd119b724d72c5f617cf94c18edf9e))

*   Removed deprecated option `use_route` in controller tests.
    ([commit](https://github.com/rails/rails/commit/e4cfd353a47369dd32198b0e67b8cbb2f9a1c548))

*   Removed `assigns` and `assert_template`. Both methods have been extracted
    into the
    [rails-controller-testing](https://github.com/rails/rails-controller-testing)
    gem.
    ([Pull Request](https://github.com/rails/rails/pull/20138))

J
Jon Moss 已提交
176 177
### Deprecations

178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
*   Deprecated all `*_filter` callbacks in favor of `*_action` callbacks.
    ([Pull Request](https://github.com/rails/rails/pull/18410))

*   Deprecated `*_via_redirect` integration test methods. Use `follow_redirect!`
    manually after the request call for the same behavior.
    ([Pull Request](https://github.com/rails/rails/pull/18693))

*   Deprecated `AbstractController#skip_action_callback` in favor of individual
    skip_callback methods.
    ([Pull Request](https://github.com/rails/rails/pull/19060))

*   Deprecated `:nothing` option for `render` method.
    ([Pull Request](https://github.com/rails/rails/pull/20336))

*   Deprecated passing first parameter as `Hash` and default status code for
    `head` method.
    ([Pull Request](https://github.com/rails/rails/pull/20407))

*   Deprecated using strings or symbols for middleware class names. Use class
    names instead.
    ([commit](https://github.com/rails/rails/commit/83b767ce))

*   Deprecated accessing mime types via constants (eg. `Mime::HTML`). Use the
    subscript operator with a symbol instead (eg. `Mime[:html]`).
    ([Pull Request](https://github.com/rails/rails/pull/21869))

*   Deprecated `redirect_to :back` in favor of `redirect_back`, which accepts a
    required `fallback_location` argument, thus eliminating the possibility of a
    `RedirectBackError`.
    ([Pull Request](https://github.com/rails/rails/pull/22506))

209 210
### Notable changes

211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
*   Added `ActionController::Renderer` to render arbitrary templates
    outside controller actions.
    ([Pull Request](https://github.com/rails/rails/pull/18546))

*   Migrating to keyword arguments syntax in `ActionController::TestCase` and
    `ActionDispatch::Integration` HTTP request methods.
    ([Pull Request](https://github.com/rails/rails/pull/18323))

*   Added `http_cache_forever` to Action Controller, so we can cache a response
    that never gets expired.
    ([Pull Request](https://github.com/rails/rails/pull/18394))

*   Provide friendlier access to request variants.
    ([Pull Request](https://github.com/rails/rails/pull/18939))

*   For actions with no corresponding templates, render `head :no_content`
    instead of raising an error.
    ([Pull Request](https://github.com/rails/rails/pull/19377))

*   Added the ability to override default form builder for a controller.
    ([Pull Request](https://github.com/rails/rails/pull/19736))

*   Added support for API only apps.
    `ActionController::API` is added as a replacement of
    `ActionController::Base` for this kind of applications.
    ([Pull Request](https://github.com/rails/rails/pull/19832))

238 239 240 241
*   Make `ActionController::Parameters` no longer inherits from
    `HashWithIndifferentAccess`.
    ([Pull Request](https://github.com/rails/rails/pull/20868))

242 243 244 245 246 247 248 249 250 251 252 253 254 255
*   Make it easier to opt in to `config.force_ssl` and `config.ssl_options` by
    making them less dangerous to try and easier to disable.
    ([Pull Request](https://github.com/rails/rails/pull/21520))

*   Added the ability of returning arbitrary headers to `ActionDispatch::Static`.
    ([Pull Request](https://github.com/rails/rails/pull/19135))

*   Changed the `protect_from_forgery` prepend default to `false`.
    ([commit](https://github.com/rails/rails/commit/39794037817703575c35a75f1961b01b83791191))

*   `ActionController::TestCase` will be moved to it's own gem in Rails 5.1. Use
    `ActionDispatch::IntegrationTest` instead.
    ([commit](https://github.com/rails/rails/commit/4414c5d1795e815b102571425974a8b1d46d932d))

256
Action View
J
Jon Moss 已提交
257 258
-------------

259
Please refer to the [Changelog][action-view] for detailed changes.
J
Jon Moss 已提交
260

261
### Removals
J
Jon Moss 已提交
262

263 264 265 266 267 268 269 270 271 272 273
*   Removed deprecated `AbstractController::Base::parent_prefixes`.
    ([commit](https://github.com/rails/rails/commit/34bcbcf35701ca44be559ff391535c0dd865c333))

*   Removed `ActionView::Helpers::RecordTagHelper`, this functionality
    has been extracted to the
    [record_tag_helper](https://github.com/rails/record_tag_helper) gem.
    ([Pull Request](https://github.com/rails/rails/pull/18411))

*   Removed `:rescue_format` option for `translate` helper since it's no longer
    supported by I18n.
    ([Pull Request](https://github.com/rails/rails/pull/20019))
J
Jon Moss 已提交
274

275
### Notable Changes
J
Jon Moss 已提交
276

277 278 279 280 281 282 283 284
*   Changed the default template handler from `ERB` to `Raw`.
    ([commit](https://github.com/rails/rails/commit/4be859f0fdf7b3059a28d03c279f03f5938efc80))

*   Collection rendering automatically caches and fetches multiple partials.
    ([Pull Request](https://github.com/rails/rails/pull/18948))

*   Allow defining explicit collection caching using a `# Template Collection: ...`
    directive inside templates.
285
    ([Pull Request](https://github.com/rails/rails/pull/20781))
J
Jon Moss 已提交
286

287
*   Added wildcard matching to explicit dependencies.
288 289 290 291
    ([Pull Request](https://github.com/rails/rails/pull/20904))

*   Make `disable_with` the default behavior for submit tags. Disables the
    button on submit to prevent double submits.
292 293 294 295 296 297 298 299 300
    ([Pull Request](https://github.com/rails/rails/pull/21135))


Action Mailer
-------------

Please refer to the [Changelog][action-mailer] for detailed changes.

### Removals
J
Jon Moss 已提交
301

302 303 304 305 306
*   Removed deprecated `*_path` helpers in email views.
    ([commit](https://github.com/rails/rails/commit/d282125a18c1697a9b5bb775628a2db239142ac7))

*   Removed deprecated `deliver` and `deliver!` methods.
    ([commit](https://github.com/rails/rails/commit/755dcd0691f74079c24196135f89b917062b0715))
J
Jon Moss 已提交
307

308 309
### Notable changes

310 311 312 313 314 315 316 317 318 319 320 321 322 323
*   Template lookup now respects default locale and I18n fallbacks.
    ([commit](https://github.com/rails/rails/commit/ecb1981b))

*   Added `_mailer` suffix to mailers created via generator, following the same
    naming convention used in controllers and jobs.
    ([Pull Request](https://github.com/rails/rails/pull/18074))

*   Added `assert_enqueued_emails` and `assert_no_enqueued_emails`.
    ([Pull Request](https://github.com/rails/rails/pull/18403))

*   Added `config.action_mailer.deliver_later_queue_name` configuration to set
    the mailer queue name.
    ([Pull Request](https://github.com/rails/rails/pull/18587))

324 325

Active Record
J
Jon Moss 已提交
326 327
-------------

328
Please refer to the [Changelog][active-record] for detailed changes.
J
Jon Moss 已提交
329

330
### Removals
J
Jon Moss 已提交
331

332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377
*   Removed deprecated behavior allowing nested arrays to be passed as query
    values. ([Pull Request](https://github.com/rails/rails/pull/17919))

*   Removed deprecated `ActiveRecord::Tasks::DatabaseTasks#load_schema`. This
    method was replaced by `ActiveRecord::Tasks::DatabaseTasks#load_schema_for`.
    ([commit](https://github.com/rails/rails/commit/ad783136d747f73329350b9bb5a5e17c8f8800da))

*   Removed deprecated `serialized_attributes`.
    ([commit](https://github.com/rails/rails/commit/82043ab53cb186d59b1b3be06122861758f814b2))

*   Removed deprecated automatic counter caches on `has_many :through`.
    ([commit](https://github.com/rails/rails/commit/87c8ce340c6c83342df988df247e9035393ed7a0))

*   Removed deprecated `sanitize_sql_hash_for_conditions`.
    ([commit](https://github.com/rails/rails/commit/3a59dd212315ebb9bae8338b98af259ac00bbef3))

*   Removed deprecated `Reflection#source_macro`.
    ([commit](https://github.com/rails/rails/commit/ede8c199a85cfbb6457d5630ec1e285e5ec49313))

*   Removed deprecated `symbolized_base_class` and `symbolized_sti_name`.
    ([commit](https://github.com/rails/rails/commit/9013e28e52eba3a6ffcede26f85df48d264b8951))

*   Removed deprecated `ActiveRecord::Base.disable_implicit_join_references=`.
    ([commit](https://github.com/rails/rails/commit/0fbd1fc888ffb8cbe1191193bf86933110693dfc))

*   Removed deprecated access to connection specification using a string accessor.
    ([commit](https://github.com/rails/rails/commit/efdc20f36ccc37afbb2705eb9acca76dd8aabd4f))

*   Removed deprecated support to preload instance-dependent associations.
    ([commit](https://github.com/rails/rails/commit/4ed97979d14c5e92eb212b1a629da0a214084078))

*   Removed deprecated support for PostgreSQL ranges with exclusive lower bounds.
    ([commit](https://github.com/rails/rails/commit/a076256d63f64d194b8f634890527a5ed2651115))

*   Removed deprecation when modifying a relation with cached Arel.
    This raises an `ImmutableRelation` error instead.
    ([commit](https://github.com/rails/rails/commit/3ae98181433dda1b5e19910e107494762512a86c))

*   Removed `ActiveRecord::Serialization::XmlSerializer` from core. This feature
    has been extracted into the
    [activemodel-serializers-xml](https://github.com/rails/activemodel-serializers-xml)
    gem. ([Pull Request](https://github.com/rails/rails/pull/21161))

*   Removed support for the legacy `mysql` database adapter from core. It will
    live on in a separate gem for now, but most users should just use `mysql2`.

378
*   Removed support for the `protected_attributes` gem.
379 380
    ([commit](https://github.com/rails/rails/commit/f4fbc0301021f13ae05c8e941c8efc4ae351fdf9))

J
Jon Moss 已提交
381 382
### Deprecations

383 384 385
*   Deprecated passing a class as a value in a query. Users should pass strings
    instead. ([Pull Request](https://github.com/rails/rails/pull/17916))

386 387 388 389
*   Deprecated returning `false` as a way to halt Active Record callback
    chains. The recommended way is to
    `throw(:abort)`. ([Pull Request](https://github.com/rails/rails/pull/17227))

390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411
*   Deprecated `ActiveRecord::Base.errors_in_transactional_callbacks=`.
    ([commit](https://github.com/rails/rails/commit/07d3d402341e81ada0214f2cb2be1da69eadfe72))

*   Deprecated passing of `start` value to `find_in_batches` and `find_each`
    in favour of `begin_at` value.
    ([Pull Request](https://github.com/rails/rails/pull/18961))

*   Deprecated `Relation#uniq` use `Relation#distinct` instead.
    ([commit](https://github.com/rails/rails/commit/adfab2dcf4003ca564d78d4425566dd2d9cd8b4f))

*   Deprecated the PostgreSQL `:point` type in favor of a new one which will return
    `Point` objects instead of an `Array`
    ([Pull Request](https://github.com/rails/rails/pull/20448))

*   Deprecated force association reload by passing a truthy argument to
    association method.
    ([Pull Request](https://github.com/rails/rails/pull/20888))

*   Deprecated the keys for association `restrict_dependent_destroy` errors in favor
    of new key names.
    ([Pull Request](https://github.com/rails/rails/pull/20668))

412 413 414
*   Synchronize behavior of `#tables`.
    ([Pull Request](https://github.com/rails/rails/pull/21601))

415 416 417 418 419
*   Deprecated `SchemaCache#tables`, `SchemaCache#table_exists?` and
    `SchemaCache#clear_table_cache!` in favor of their new data source
    counterparts.
    ([Pull Request](https://github.com/rails/rails/pull/21715))

420
*   Deprecated `connection.tables` on the SQLite3 and MySQL adapters.
421
    ([Pull Request](https://github.com/rails/rails/pull/21601))
422

423
*   Deprecated passing arguments to `#tables` - the `#tables` method of some
424 425 426
    adapters (mysql2, sqlite3) would return both tables and views while others
    (postgresql) just return tables. To make their behavior consistent,
    `#tables` will return only tables in the future.
427
    ([Pull Request](https://github.com/rails/rails/pull/21601))
J
Jon Moss 已提交
428

429
*   Deprecated `table_exists?` - The `#table_exists?` method would check both
430 431
    tables and views. To make their behavior consistent with `#tables`,
    `#table_exists?` will check only tables in the future.
432
    ([Pull Request](https://github.com/rails/rails/pull/21601))
J
Jon Moss 已提交
433 434 435

### Notable changes

436
*   Added a `foreign_key` option to `references` while creating the table.
437 438 439 440 441
    ([commit](https://github.com/rails/rails/commit/99a6f9e60ea55924b44f894a16f8de0162cf2702))

*   New attributes
    API. ([commit](https://github.com/rails/rails/commit/8c752c7ac739d5a86d4136ab1e9d0142c4041e58))

442
*   Added `:enum_prefix`/`:enum_suffix` option to `enum`
443 444
    definition. ([Pull Request](https://github.com/rails/rails/pull/19813))

445
*   Added `#cache_key` to `ActiveRecord::Relation`.
446 447
    ([Pull Request](https://github.com/rails/rails/pull/20884))

448
*   Added `ActiveRecord::Relation#outer_joins`.
449 450 451 452 453 454
    ([Pull Request](https://github.com/rails/rails/pull/12071))

*   Require `belongs_to` by default.
    ([Pull Request](https://github.com/rails/rails/pull/18937)) - Deprecate
    `required` option in favor of `optional` for `belongs_to`

455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537
*   Changed the default `null` value for `timestamps` to `false`.
    ([commit](https://github.com/rails/rails/commit/a939506f297b667291480f26fa32a373a18ae06a))

*   Added `ActiveRecord::SecureToken` in order to encapsulate generation of
    unique tokens for attributes in a model using `SecureRandom`.
    ([Pull Request](https://github.com/rails/rails/pull/18217))

*   Added `:if_exists` option for `drop_table`.
    ([Pull Request](https://github.com/rails/rails/pull/18597))

*   Added `ActiveRecord::Base#accessed_fields`, which can be used to quickly
    discover which fields were read from a model when you are looking to only
    select the data you need from the database.
    ([commit](https://github.com/rails/rails/commit/be9b68038e83a617eb38c26147659162e4ac3d2c))

*   Added the `#or` method on `ActiveRecord::Relation`, allowing use of the OR
    operator to combine WHERE or HAVING clauses.
    ([commit](https://github.com/rails/rails/commit/b0b37942d729b6bdcd2e3178eda7fa1de203b3d0))

*   Added `:time` option added for `#touch`.
    ([Pull Request](https://github.com/rails/rails/pull/18956))

*   Added `ActiveRecord::Base.suppress` to prevent the receiver from being saved
    during the given block.
    ([Pull Request](https://github.com/rails/rails/pull/18910))

*   `belongs_to` will now trigger a validation error by default if the
    association is not present. You can turn this off on a per-association basis
    with `optional: true`.
    ([Pull Request](https://github.com/rails/rails/pull/18937))

*   Added `config.active_record.dump_schemas` to configure the behavior of
    `db:structure:dump`.
    ([Pull Request](https://github.com/rails/rails/pull/19347))

*   Added `config.active_record.warn_on_records_fetched_greater_than` option.
    ([Pull Request](https://github.com/rails/rails/pull/18846))

*   Added `cache_key` to `ActiveRecord::Relation`.
    ([Pull Request](https://github.com/rails/rails/pull/20884))

*   Added a native JSON data type support in MySQL.
    ([Pull Request](https://github.com/rails/rails/pull/21110))

*   Added support for dropping indexes concurrently in PostgreSQL.
    ([Pull Request](https://github.com/rails/rails/pull/21317))

*   Added `#views` and `#view_exists?` methods on connection adapters.
    ([Pull Request](https://github.com/rails/rails/pull/21609))

*   Added `ActiveRecord::Base.ignored_columns` to make some columns
    invisible from Active Record.
    ([Pull Request](https://github.com/rails/rails/pull/21720))

*   Added `connection.data_sources` and `connection.data_source_exists?`.
    These methods determine what relations can be used to back Active Record
    models (usually tables and views).
    ([Pull Request](https://github.com/rails/rails/pull/21715))

*   Allow fixtures files to set the model class in the YAML file itself.
    ([Pull Request](https://github.com/rails/rails/pull/20574))

*   Added ability to default to `uuid` as primary key when generating database
    migrations. ([Pull Request](https://github.com/rails/rails/pull/21762))

*   Added `ActiveRecord::Relation#left_joins` and
    `ActiveRecord::Relation#left_outer_joins`.
    ([Pull Request](https://github.com/rails/rails/pull/12071))

*   Added `after_{create,update,delete}_commit` callbacks.
    ([Pull Request](https://github.com/rails/rails/pull/22516))

*   Version the API presented to migration classes, so we can change parameter
    defaults without breaking existing migrations, or forcing them to be
    rewritten through a deprecation cycle.
    ([Pull Request](https://github.com/rails/rails/pull/21538))

*   `ApplicationRecord` is a new superclass for all app models, analogous to app
    controllers subclassing `ApplicationController` instead of
    `ActionController::Base`. This gives apps a single spot to configure app-wide
    model behavior.
    ([Pull Request](https://github.com/rails/rails/pull/22567))

J
Jon Moss 已提交
538 539 540 541

Active Model
------------

542
Please refer to the [Changelog][active-model] for detailed changes.
J
Jon Moss 已提交
543

544 545
### Removals

546 547 548 549
*   Removed deprecated `ActiveModel::Dirty#reset_#{attribute}` and
    `ActiveModel::Dirty#reset_changes`.
    ([Pull Request](https://github.com/rails/rails/commit/37175a24bd508e2983247ec5d011d57df836c743))

550 551 552
*   Removed XML serialization. This feature has been extracted into the
    [activemodel-serializers-xml](https://github.com/rails/activemodel-serializers-xml) gem.
    ([Pull Request](https://github.com/rails/rails/pull/21161))
J
Jon Moss 已提交
553 554 555

### Deprecations

556
*   Deprecated returning `false` as a way to halt Active Model and
L
Laurier Mantel 已提交
557
    `ActiveModel::Validations` callback chains. The recommended way is to
558
    `throw(:abort)`. ([Pull Request](https://github.com/rails/rails/pull/17227))
J
Jon Moss 已提交
559

560 561 562 563 564 565 566 567 568 569 570 571
*   Deprecated `ActiveModel::Errors#get`, `ActiveModel::Errors#set` and
    `ActiveModel::Errors#[]=` methods that have inconsistent behavior.
    ([Pull Request](https://github.com/rails/rails/pull/18634))

*   Deprecated the `:tokenizer` option for `validates_length_of`, in favor of
    plain Ruby.
    ([Pull Request](https://github.com/rails/rails/pull/19585))

*   Deprecated `ActiveModel::Errors#add_on_empty` and `ActiveModel::Errors#add_on_blank`
    with no replacement.
    ([Pull Request](https://github.com/rails/rails/pull/18996))

572
### Notable changes
J
Jon Moss 已提交
573

574 575 576 577 578 579 580 581 582 583 584 585
*   Added `ActiveModel::Errors#details` to determine what validator has failed.
    ([Pull Request](https://github.com/rails/rails/pull/18322))

*   Extracted `ActiveRecord::AttributeAssignment` to `ActiveModel::AttributeAssignment`
    allowing to use it for any object as an includable module.
    ([Pull Request](https://github.com/rails/rails/pull/10776))

*   Added `ActiveModel::Dirty#[attr_name]_previously_changed?` and
    `ActiveModel::Dirty#[attr_name]_previous_change` to improve access
    to recorded changes after the model has been saved.
    ([Pull Request](https://github.com/rails/rails/pull/19847))

586 587
*   Validate multiple contexts on `valid?` and `invalid?` at once.
    ([Pull Request](https://github.com/rails/rails/pull/21069))
J
Jon Moss 已提交
588 589


590 591 592 593 594
Active Job
-----------

Please refer to the [Changelog][active-job] for detailed changes.

595
### Notable changes
J
Jon Moss 已提交
596

597 598 599 600
*   `ActiveJob::Base.deserialize` delegates to the job class. this allows jobs
    to attach arbitrary metadata when they get serialized and read it back when
    they get performed.
    ([Pull Request](https://github.com/rails/rails/pull/18260))
J
Jon Moss 已提交
601

602 603 604 605 606 607 608 609 610 611 612
*   A generated job now inherits from `app/jobs/application_job.rb` by default.
    ([Pull Request](https://github.com/rails/rails/pull/19034))

*   Allow `DelayedJob`, `Sidekiq`, `qu`, and `que` to report the job id back to
    `ActiveJob::Base` as `provider_job_id`.
    ([Pull Request](https://github.com/rails/rails/pull/20064),
     [Pull Request](https://github.com/rails/rails/pull/20056))

*   Implement a simple `AsyncJob` processor and associated `AsyncAdapter` that
    queue jobs to a `concurrent-ruby` thread pool.
    ([Pull Request](https://github.com/rails/rails/pull/21257))
613

J
Jon Moss 已提交
614 615 616 617

Active Support
--------------

618
Please refer to the [Changelog][active-support] for detailed changes.
J
Jon Moss 已提交
619

620
### Removals
J
Jon Moss 已提交
621

622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648
*   Removed deprecated `ActiveSupport::JSON::Encoding::CircularReferenceError`.
    ([commit](https://github.com/rails/rails/commit/d6e06ea8275cdc3f126f926ed9b5349fde374b10))

*   Removed deprecated methods `ActiveSupport::JSON::Encoding.encode_big_decimal_as_string=`
    and `ActiveSupport::JSON::Encoding.encode_big_decimal_as_string`.
    ([commit](https://github.com/rails/rails/commit/c8019c0611791b2716c6bed48ef8dcb177b7869c))

*   Removed deprecated `ActiveSupport::SafeBuffer#prepend`.
    ([commit](https://github.com/rails/rails/commit/e1c8b9f688c56aaedac9466a4343df955b4a67ec))

*   Removed deprecated methods from `Kernel`. `silence_stderr`, `silence_stream`,
    `capture` and `quietly`.
    ([commit](https://github.com/rails/rails/commit/481e49c64f790e46f4aff3ed539ed227d2eb46cb))

*   Removed deprecated `active_support/core_ext/big_decimal/yaml_conversions`
    file.
    ([commit](https://github.com/rails/rails/commit/98ea19925d6db642731741c3b91bd085fac92241))

*   Removed deprecated methods `ActiveSupport::Cache::Store.instrument` and
    `ActiveSupport::Cache::Store.instrument=`.
    ([commit](https://github.com/rails/rails/commit/a3ce6ca30ed0e77496c63781af596b149687b6d7))

*   Removed deprecated `Class#superclass_delegating_accessor`.
    Use `Class#class_attribute` instead.
    ([Pull Request](https://github.com/rails/rails/pull/16938))

*   Removed deprecated `ThreadSafe::Cache`. Use `Concurrent::Map` instead.
Y
yuuji.yaginuma 已提交
649
    ([Pull Request](https://github.com/rails/rails/pull/21679))
650

J
Jon Moss 已提交
651 652
### Deprecations

653 654 655 656 657 658 659 660
*   Deprecated `MissingSourceFile` in favor of `LoadError`.
    ([commit](https://github.com/rails/rails/commit/734d97d2))

*   Deprecated `alias_method_chain` in favour of `Module#prepend` introduced in
    Ruby 2.0.
    ([Pull Request](https://github.com/rails/rails/pull/19434))

*   Deprecated `ActiveSupport::Concurrency::Latch` in favor of
661 662
    `Concurrent::CountDownLatch` from concurrent-ruby.
    ([Pull Request](https://github.com/rails/rails/pull/20866))
J
Jon Moss 已提交
663

664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681
*   Deprecated `:prefix` option of `number_to_human_size` with no replacement.
    ([Pull Request](https://github.com/rails/rails/pull/21191))

*   Deprecated `Module#qualified_const_` in favour of the builtin
    `Module#const_` methods.
    ([Pull Request](https://github.com/rails/rails/pull/17845))

*   Deprecated passing string to define callback.
    ([Pull Request](https://github.com/rails/rails/pull/22598))

*   Deprecated `ActiveSupport::Cache::Store#namespaced_key`,
    `ActiveSupport::Cache::MemCachedStore#escape_key`, and
    `ActiveSupport::Cache::FileStore#key_file_path`.
    Use `normalize_key` instead.

    Deprecated `ActiveSupport::Cache::LocaleCache#set_cache_value` in favor of `write_cache_value`.
    ([Pull Request](https://github.com/rails/rails/pull/22215))

J
Jon Moss 已提交
682 683
### Notable changes

684 685 686 687 688 689 690 691
*   Added `#verified` and `#valid_message?` methods to
    `ActiveSupport::MessageVerifier`.
    ([Pull Request](https://github.com/rails/rails/pull/17727))

*   Changed the way in which callback chains can be halted. The preferred method
    to halt a callback chain from now on is to explicitly `throw(:abort)`.
    ([Pull Request](https://github.com/rails/rails/pull/17227))

692 693 694 695 696
*   New config option
    `config.active_support.halt_callback_chains_on_return_false` to specify
    whether ActiveRecord, ActiveModel and ActiveModel::Validations callback
    chains can be halted by returning `false` in a 'before' callback.
    ([Pull Request](https://github.com/rails/rails/pull/17227))
J
Jon Moss 已提交
697

698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746
*   Changed the default test order from `:sorted` to `:random`.
    ([commit](https://github.com/rails/rails/commit/5f777e4b5ee2e3e8e6fd0e2a208ec2a4d25a960d))

*   Added `#on_weekend?`, `#next_weekday`, `#prev_weekday` methods to `Date`,
    `Time`, and `DateTime`.
    ([Pull Request](https://github.com/rails/rails/pull/18335))

*   Added `same_time` option to `#next_week` and `#prev_week` for `Date`, `Time`,
    and `DateTime`.
    ([Pull Request](https://github.com/rails/rails/pull/18335))

*   Added `#prev_day` and `#next_day` counterparts to `#yesterday` and
    `#tomorrow` for `Date`, `Time`, and `DateTime`.
    ([Pull Request](httpshttps://github.com/rails/rails/pull/18335))

*   Added `SecureRandom.base58` for generation of random base58 strings.
    ([commit](https://github.com/rails/rails/commit/b1093977110f18ae0cafe56c3d99fc22a7d54d1b))

*   Added `file_fixture` to `ActiveSupport::TestCase`.
    It provides a simple mechanism to access sample files in your test cases.
    ([Pull Request](https://github.com/rails/rails/pull/18658))

*   Added `#without` on `Enumerable` and `Array` to return a copy of an
    enumerable without the specified elements.
    ([Pull Request](https://github.com/rails/rails/pull/19157))

*   Added `ActiveSupport::ArrayInquirer` and `Array#inquiry`.
    ([Pull Request](https://github.com/rails/rails/pull/18939))

*   Added `ActiveSupport::TimeZone#strptime` to allow parsing times as if
    from a given timezone.
    ([commit](https://github.com/rails/rails/commit/a5e507fa0b8180c3d97458a9b86c195e9857d8f6))

*   Added `Integer#positive?` and `Integer#negative?` query methods
    in the vein of `Fixnum#zero?`.
    ([commit](https://github.com/rails/rails/commit/e54277a45da3c86fecdfa930663d7692fd083daa))

*   Added a bang version to `ActiveSupport::OrderedOptions` get methods which will raise
    an `KeyError` if the value is `.blank?`.
    ([Pull Request](https://github.com/rails/rails/pull/20208))

*   Added `Time.days_in_year` to return the number of days in the given year, or the
    current year if no argument is provided.
    ([commit](https://github.com/rails/rails/commit/2f4f4d2cf1e4c5a442459fc250daf66186d110fa))

*   Added an evented file watcher to asynchronously detect changes in the
    application source code, routes, locales, etc.
    ([Pull Request](https://github.com/rails/rails/pull/22254))

747
*   Added thread_m/cattr_accessor/reader/writer suite of methods for declaring
748 749 750
    class and module variables that live per-thread.
    ([Pull Request](https://github.com/rails/rails/pull/22630))

J
Jon Moss 已提交
751 752 753 754

Credits
-------

755 756 757 758 759 760 761 762 763 764 765 766 767
See the
[full list of contributors to Rails](http://contributors.rubyonrails.org/) for
the many people who spent many hours making Rails, the stable and robust
framework it is. Kudos to all of them.

[railties]:       https://github.com/rails/rails/blob/5-0-stable/railties/CHANGELOG.md
[action-pack]:    https://github.com/rails/rails/blob/5-0-stable/actionpack/CHANGELOG.md
[action-view]:    https://github.com/rails/rails/blob/5-0-stable/actionview/CHANGELOG.md
[action-mailer]:  https://github.com/rails/rails/blob/5-0-stable/actionmailer/CHANGELOG.md
[active-record]:  https://github.com/rails/rails/blob/5-0-stable/activerecord/CHANGELOG.md
[active-model]:   https://github.com/rails/rails/blob/5-0-stable/activemodel/CHANGELOG.md
[active-support]: https://github.com/rails/rails/blob/5-0-stable/activesupport/CHANGELOG.md
[active-job]:     https://github.com/rails/rails/blob/5-0-stable/activejob/CHANGELOG.md