1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 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 176 177 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 209 210 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 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 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 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 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 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 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 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 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 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035
|
**DO NOT READ THIS FILE ON GITHUB, GUIDES ARE PUBLISHED ON https://guides.rubyonrails.org.**
Ruby on Rails 6.0 Release Notes
===============================
Highlights in Rails 6.0:
* Action Mailbox
* Action Text
* Parallel Testing
* Action Cable Testing
These release notes cover only the major changes. To learn about various bug
fixes and changes, please refer to the changelogs or check out the [list of
commits](https://github.com/rails/rails/commits/6-0-stable) in the main Rails
repository on GitHub.
--------------------------------------------------------------------------------
Upgrading to Rails 6.0
----------------------
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 5.2 in case you
haven't and make sure your application still runs as expected before attempting
an update to Rails 6.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-5-2-to-rails-6-0)
guide.
Major Features
--------------
### Action Mailbox
[Pull Request](https://github.com/rails/rails/pull/34786)
[Action Mailbox](https://github.com/rails/rails/tree/6-0-stable/actionmailbox) allows you
to route incoming emails to controller-like mailboxes.
You can read more about Action Mailbox in the [Action Mailbox Basics](action_mailbox_basics.html) guide.
### Action Text
[Pull Request](https://github.com/rails/rails/pull/34873)
[Action Text](https://github.com/rails/rails/tree/6-0-stable/actiontext)
brings rich text content and editing to Rails. It includes
the [Trix editor](https://trix-editor.org) that handles everything from formatting
to links to quotes to lists to embedded images and galleries.
The rich text content generated by the Trix editor is saved in its own
RichText model that's associated with any existing Active Record model in the application.
Any embedded images (or other attachments) are automatically stored using
Active Storage and associated with the included RichText model.
You can read more about Action Text in the [Action Text Overview](action_text_overview.html) guide.
### Parallel Testing
[Pull Request](https://github.com/rails/rails/pull/31900)
[Parallel Testing](testing.html#parallel-testing) allows you to parallelize your
test suite. While forking processes is the default method, threading is
supported as well. Running tests in parallel reduces the time it takes
your entire test suite to run.
### Action Cable Testing
[Pull Request](https://github.com/rails/rails/pull/33659)
[Action Cable testing tools](testing.html#testing-action-cable) allow you to test your
Action Cable functionality at any level: connections, channels, broadcasts.
Railties
--------
Please refer to the [Changelog][railties] for detailed changes.
### Removals
* Remove deprecated `after_bundle` helper inside plugins templates.
([Commit](https://github.com/rails/rails/commit/4d51efe24e461a2a3ed562787308484cd48370c7))
* Remove deprecated support to `config.ru` that uses the application
class as argument of `run`.
([Commit](https://github.com/rails/rails/commit/553b86fc751c751db504bcbe2d033eb2bb5b6a0b))
* Remove deprecated `environment` argument from the rails commands.
([Commit](https://github.com/rails/rails/commit/e20589c9be09c7272d73492d4b0f7b24e5595571))
* Remove deprecated `capify!` method in generators and templates.
([Commit](https://github.com/rails/rails/commit/9d39f81d512e0d16a27e2e864ea2dd0e8dc41b17))
* Remove deprecated `config.secret_token`.
([Commit](https://github.com/rails/rails/commit/46ac5fe69a20d4539a15929fe48293e1809a26b0))
### Deprecations
* Deprecate passing Rack server name as a regular argument to `rails server`.
([Pull Request](https://github.com/rails/rails/pull/32058))
* Deprecate support for using `HOST` environment to specify server IP.
([Pull Request](https://github.com/rails/rails/pull/32540))
* Deprecate accessing hashes returned by `config_for` by non-symbol keys.
([Pull Request](https://github.com/rails/rails/pull/35198))
### Notable changes
* Add an explicit option `--using` or `-u` for specifying the server for the
`rails server` command.
([Pull Request](https://github.com/rails/rails/pull/32058))
* Add ability to see the output of `rails routes` in expanded format.
([Pull Request](https://github.com/rails/rails/pull/32130))
* Run the seed database task using inline Active Job adapter.
([Pull Request](https://github.com/rails/rails/pull/34953))
* Add a command `rails db:system:change` to change the database of the application.
([Pull Request](https://github.com/rails/rails/pull/34832))
* Add `rails test:channels` command to test only Action Cable channels.
([Pull Request](https://github.com/rails/rails/pull/34947))
* Introduce guard against DNS rebinding attacks.
([Pull Request](https://github.com/rails/rails/pull/33145))
* Add ability to abort on failure while running generator commands.
([Pull Request](https://github.com/rails/rails/pull/34420))
* Make Webpacker the default JavaScript compiler for Rails 6.
([Pull Request](https://github.com/rails/rails/pull/33079))
* Add multiple database support for `rails db:migrate:status` command.
([Pull Request](https://github.com/rails/rails/pull/34137))
* Add ability to use different migration paths from multiple databases in
the generators.
([Pull Request](https://github.com/rails/rails/pull/34021))
* Add support for multi environment credentials.
([Pull Request](https://github.com/rails/rails/pull/33521))
* Make `null_store` as default cache store in test environment.
([Pull Request](https://github.com/rails/rails/pull/33773))
Action Cable
------------
Please refer to the [Changelog][action-cable] for detailed changes.
### Removals
* Replace `ActionCable.startDebugging()` and `ActionCable.stopDebugging()`
with `ActionCable.logger.enabled`.
([Pull Request](https://github.com/rails/rails/pull/34370))
### Deprecations
* There are no deprecations for Action Cable in Rails 6.0.
### Notable changes
* Add support for the `channel_prefix` option for PostgreSQL subscription adapters
in `cable.yml`.
([Pull Request](https://github.com/rails/rails/pull/35276))
* Allow passing a custom configuration to `ActionCable::Server::Base`.
([Pull Request](https://github.com/rails/rails/pull/34714))
* Add `:action_cable_connection` and `:action_cable_channel` load hooks.
([Pull Request](https://github.com/rails/rails/pull/35094))
* Add `Channel::Base#broadcast_to` and `Channel::Base.broadcasting_for`.
([Pull Request](https://github.com/rails/rails/pull/35021))
* Close a connection when calling `reject_unauthorized_connection` from an
`ActionCable::Connection`.
([Pull Request](https://github.com/rails/rails/pull/34194))
* Convert the Action Cable JavaScript package from CoffeeScript to ES2015 and
publish the source code in the npm distribution.
([Pull Request](https://github.com/rails/rails/pull/34370))
* Move the configuration of the WebSocket adapter and logger adapter
from properties of `ActionCable` to `ActionCable.adapters`.
([Pull Request](https://github.com/rails/rails/pull/34370))
* Add an `id` option to the Redis adapter to distinguish Action Cable's Redis
connections.
([Pull Request](https://github.com/rails/rails/pull/33798))
Action Pack
-----------
Please refer to the [Changelog][action-pack] for detailed changes.
### Removals
* Remove deprecated `fragment_cache_key` helper in favor of `combined_fragment_cache_key`.
([Commit](https://github.com/rails/rails/commit/e70d3df7c9b05c129b0fdcca57f66eca316c5cfc))
* Remove deprecated methods in `ActionDispatch::TestResponse`:
`#success?` in favor of `#successful?`, `#missing?` in favor of `#not_found?`,
`#error?` in favor of `#server_error?`.
([Commit](https://github.com/rails/rails/commit/13ddc92e079e59a0b894e31bf5bb4fdecbd235d1))
### Deprecations
* Deprecate `ActionDispatch::Http::ParameterFilter` in favor of `ActiveSupport::ParameterFilter`.
([Pull Request](https://github.com/rails/rails/pull/34039))
* Deprecate controller level `force_ssl` in favor of `config.force_ssl`.
([Pull Request](https://github.com/rails/rails/pull/32277))
### Notable changes
* Change `ActionDispatch::Response#content_type` returning Content-Type
header as it is.
([Pull Request](https://github.com/rails/rails/pull/36034))
* Raise an `ArgumentError` if a resource param contains a colon.
([Pull Request](https://github.com/rails/rails/pull/35236))
* Allow `ActionDispatch::SystemTestCase.driven_by` to be called with a block
to define specific browser capabilities.
([Pull Request](https://github.com/rails/rails/pull/35081))
* Add `ActionDispatch::HostAuthorization` middleware that guards against DNS rebinding
attacks.
([Pull Request](https://github.com/rails/rails/pull/33145))
* Allow the use of `parsed_body` in `ActionController::TestCase`.
([Pull Request](https://github.com/rails/rails/pull/34717))
* Raise an `ArgumentError` when multiple root routes exist in the same context
without `as:` naming specifications.
([Pull Request](https://github.com/rails/rails/pull/34494))
* Allow the use of `#rescue_from` for handling parameter parsing errors.
([Pull Request](https://github.com/rails/rails/pull/34341))
* Add `ActionController::Parameters#each_value` for iterating through parameters.
([Pull Request](https://github.com/rails/rails/pull/33979))
* Encode Content-Disposition filenames on `send_data` and `send_file`.
([Pull Request](https://github.com/rails/rails/pull/33829))
* Expose `ActionController::Parameters#each_key`.
([Pull Request](https://github.com/rails/rails/pull/33758))
* Add purpose and expiry metadata inside signed/encrypted cookies to prevent copying the value of
cookies into one another.
([Pull Request](https://github.com/rails/rails/pull/32937))
* Raise `ActionController::RespondToMismatchError` for conflicting `respond_to` invocations.
([Pull Request](https://github.com/rails/rails/pull/33446))
* Add an explicit error page for when a template is missing for a request format.
([Pull Request](https://github.com/rails/rails/pull/29286))
* Introduce `ActionDispatch::DebugExceptions.register_interceptor`, a way to hook into
DebugExceptions and process the exception, before being rendered.
([Pull Request](https://github.com/rails/rails/pull/23868))
* Output only one Content-Security-Policy nonce header value per request.
([Pull Request](https://github.com/rails/rails/pull/32602))
* Add a module specifically for the Rails default headers configuration
that can be explicitly included in controllers.
([Pull Request](https://github.com/rails/rails/pull/32484))
* Add `#dig` to `ActionDispatch::Request::Session`.
([Pull Request](https://github.com/rails/rails/pull/32446))
Action View
-----------
Please refer to the [Changelog][action-view] for detailed changes.
### Removals
* Remove deprecated `image_alt` helper.
([Commit](https://github.com/rails/rails/commit/60c8a03c8d1e45e48fcb1055ba4c49ed3d5ff78f))
* Remove an empty `RecordTagHelper` module from which the functionality
was already moved to the `record_tag_helper` gem.
([Commit](https://github.com/rails/rails/commit/5c5ddd69b1e06fb6b2bcbb021e9b8dae17e7cb31))
### Deprecations
* Deprecate `ActionView::Template.finalize_compiled_template_methods` with
no replacement.
([Pull Request](https://github.com/rails/rails/pull/35036))
* Deprecate `config.action_view.finalize_compiled_template_methods` with
no replacement.
([Pull Request](https://github.com/rails/rails/pull/35036))
* Deprecate calling private model methods from the `options_from_collection_for_select` view helper.
([Pull Request](https://github.com/rails/rails/pull/33547))
### Notable changes
* Clear Action View cache in development only on file changes, speeding up
development mode.
([Pull Request](https://github.com/rails/rails/pull/35629))
* Move all of the Rails npm packages into a `@rails` scope.
([Pull Request](https://github.com/rails/rails/pull/34905))
* Only accept formats from registered MIME types.
([Pull Request](https://github.com/rails/rails/pull/35604), [Pull Request](https://github.com/rails/rails/pull/35753))
* Add allocations to the template and partial rendering server output.
([Pull Request](https://github.com/rails/rails/pull/34136))
* Add a `year_format` option to `date_select` tag, making it possible to
customize year names.
([Pull Request](https://github.com/rails/rails/pull/32190))
* Add a `nonce: true` option for `javascript_include_tag` helper to
support automatic nonce generation for a Content Security Policy.
([Pull Request](https://github.com/rails/rails/pull/32607))
* Add a `action_view.finalize_compiled_template_methods` configuration to disable or
enable `ActionView::Template` finalizers.
([Pull Request](https://github.com/rails/rails/pull/32418))
* Extract the JavaScript `confirm` call to its own, overridable method in `rails_ujs`.
([Pull Request](https://github.com/rails/rails/pull/32404))
* Add a `action_controller.default_enforce_utf8` configuration option to handle
enforcing UTF-8 encoding. This defaults to `false`.
([Pull Request](https://github.com/rails/rails/pull/32125))
* Add I18n key style support for locale keys to submit tags.
([Pull Request](https://github.com/rails/rails/pull/26799))
Action Mailer
-------------
Please refer to the [Changelog][action-mailer] for detailed changes.
### Removals
### Deprecations
* Deprecate `ActionMailer::Base.receive` in favor of Action Mailbox.
([Commit](https://github.com/rails/rails/commit/e3f832a7433a291a51c5df397dc3dd654c1858cb))
* Deprecate `DeliveryJob` and `Parameterized::DeliveryJob` in favor of
`MailDeliveryJob`.
([Pull Request](https://github.com/rails/rails/pull/34591))
### Notable changes
* Add `MailDeliveryJob` for delivering both regular and parameterized mail.
([Pull Request](https://github.com/rails/rails/pull/34591))
* Allow custom email delivery jobs to work with the Action Mailer test assertions.
([Pull Request](https://github.com/rails/rails/pull/34339))
* Allow specifying a template name for multipart emails with blocks instead of
using just the action name.
([Pull Request](https://github.com/rails/rails/pull/22534))
* Add `perform_deliveries` to payload of `deliver.action_mailer` notification.
([Pull Request](https://github.com/rails/rails/pull/33824))
* Improve the logging message when `perform_deliveries` is false to indicate
that sending of emails was skipped.
([Pull Request](https://github.com/rails/rails/pull/33824))
* Allow calling `assert_enqueued_email_with` without block.
([Pull Request](https://github.com/rails/rails/pull/33258))
* Perform the enqueued mail delivery jobs in the `assert_emails` block.
([Pull Request](https://github.com/rails/rails/pull/32231))
* Allow `ActionMailer::Base` to unregister observers and interceptors.
([Pull Request](https://github.com/rails/rails/pull/32207))
Active Record
-------------
Please refer to the [Changelog][active-record] for detailed changes.
### Removals
* Remove deprecated `#set_state` from the transaction object.
([Commit](https://github.com/rails/rails/commit/6c745b0c5152a4437163a67707e02f4464493983))
* Remove deprecated `#supports_statement_cache?` from the database adapters.
([Commit](https://github.com/rails/rails/commit/5f3ed8784383fb4eb0f9959f31a9c28a991b7553))
* Remove deprecated `#insert_fixtures` from the database adapters.
([Commit](https://github.com/rails/rails/commit/400ba786e1d154448235f5f90183e48a1043eece))
* Remove deprecated `ActiveRecord::ConnectionAdapters::SQLite3Adapter#valid_alter_table_type?`.
([Commit](https://github.com/rails/rails/commit/45b4d5f81f0c0ca72c18d0dea4a3a7b2ecc589bf))
* Remove support for passing the column name to `sum` when a block is passed.
([Commit](https://github.com/rails/rails/commit/91ddb30083430622188d76eb9f29b78131df67f9))
* Remove support for passing the column name to `count` when a block is passed.
([Commit](https://github.com/rails/rails/commit/67356f2034ab41305af7218f7c8b2fee2d614129))
* Remove support for delegation of missing methods in a relation to Arel.
([Commit](https://github.com/rails/rails/commit/d97980a16d76ad190042b4d8578109714e9c53d0))
* Remove support for delegating missing methods in a relation to private methods of the class.
([Commit](https://github.com/rails/rails/commit/a7becf147afc85c354e5cfa519911a948d25fc4d))
* Remove support for specifying a timestamp name for `#cache_key`.
([Commit](https://github.com/rails/rails/commit/0bef23e630f62e38f20b5ae1d1d5dbfb087050ea))
* Remove deprecated `ActiveRecord::Migrator.migrations_path=`.
([Commit](https://github.com/rails/rails/commit/90d7842186591cae364fab3320b524e4d31a7d7d))
* Remove deprecated `expand_hash_conditions_for_aggregates`.
([Commit](https://github.com/rails/rails/commit/27b252d6a85e300c7236d034d55ec8e44f57a83e))
### Deprecations
* Deprecate mismatched case-sensitivity collation comparisons for uniqueness validator.
([Commit](https://github.com/rails/rails/commit/9def05385f1cfa41924bb93daa187615e88c95b9))
* Deprecate using class level querying methods if the receiver scope has leaked.
([Pull Request](https://github.com/rails/rails/pull/35280))
* Deprecate `config.active_record.sqlite3.represent_boolean_as_integer`.
([Commit](https://github.com/rails/rails/commit/f59b08119bc0c01a00561d38279b124abc82561b))
* Deprecate passing `migrations_paths` to `connection.assume_migrated_upto_version`.
([Commit](https://github.com/rails/rails/commit/c1b14aded27e063ead32fa911aa53163d7cfc21a))
* Deprecate `ActiveRecord::Result#to_hash` in favor of `ActiveRecord::Result#to_a`.
([Commit](https://github.com/rails/rails/commit/16510d609c601aa7d466809f3073ec3313e08937))
* Deprecate methods in `DatabaseLimits`: `column_name_length`, `table_name_length`,
`columns_per_table`, `indexes_per_table`, `columns_per_multicolumn_index`,
`sql_query_length`, and `joins_per_query`.
([Commit](https://github.com/rails/rails/commit/e0a1235f7df0fa193c7e299a5adee88db246b44f))
* Deprecate `update_attributes`/`!` in favor of `update`/`!`.
([Commit](https://github.com/rails/rails/commit/5645149d3a27054450bd1130ff5715504638a5f5))
### Notable changes
* Bump the minimum version of the `sqlite3` gem to 1.4.
([Pull Request](https://github.com/rails/rails/pull/35844))
* Add `rails db:prepare` to create a database if it doesn't exist, and run its migrations.
([Pull Request](https://github.com/rails/rails/pull/35768))
* Add `after_save_commit` callback as shortcut for `after_commit :hook, on: [ :create, :update ]`.
([Pull Request](https://github.com/rails/rails/pull/35804))
* Add `ActiveRecord::Relation#extract_associated` for extracting associated records from a relation.
([Pull Request](https://github.com/rails/rails/pull/35784))
* Add `ActiveRecord::Relation#annotate` for adding SQL comments to ActiveRecord::Relation queries.
([Pull Request](https://github.com/rails/rails/pull/35617))
* Add support for setting Optimizer Hints on databases.
([Pull Request](https://github.com/rails/rails/pull/35615))
* Add `insert_all`/`insert_all!`/`upsert_all` methods for doing bulk inserts.
([Pull Request](https://github.com/rails/rails/pull/35631))
* Add `rails db:seed:replant` that truncates tables of each database
for the current environment and loads the seeds.
([Pull Request](https://github.com/rails/rails/pull/34779))
* Add `reselect` method, which is a short-hand for `unscope(:select).select(fields)`.
([Pull Request](https://github.com/rails/rails/pull/33611))
* Add negative scopes for all enum values.
([Pull Request](https://github.com/rails/rails/pull/35381))
* Add `#destroy_by` and `#delete_by` for conditional removals.
([Pull Request](https://github.com/rails/rails/pull/35316))
* Add the ability to automatically switch database connections.
([Pull Request](https://github.com/rails/rails/pull/35073))
* Add the ability to prevent writes to a database for the duration of a block.
([Pull Request](https://github.com/rails/rails/pull/34505))
* Add an API for switching connections to support multiple databases.
([Pull Request](https://github.com/rails/rails/pull/34052))
* Make timestamps with precision the default for migrations.
([Pull Request](https://github.com/rails/rails/pull/34970))
* Support `:size` option to change text and blob size in MySQL.
([Pull Request](https://github.com/rails/rails/pull/35071))
* Set both the foreign key and the foreign type columns to NULL for
polymorphic associations on `dependent: :nullify` strategy.
([Pull Request](https://github.com/rails/rails/pull/28078))
* Allow a permitted instance of `ActionController::Parameters` to be passed as an
argument to `ActiveRecord::Relation#exists?`.
([Pull Request](https://github.com/rails/rails/pull/34891))
* Add support in `#where` for endless ranges introduced in Ruby 2.6.
([Pull Request](https://github.com/rails/rails/pull/34906))
* Make `ROW_FORMAT=DYNAMIC` a default create table option for MySQL.
([Pull Request](https://github.com/rails/rails/pull/34742))
* Add the ability to disable scopes generated by `ActiveRecord.enum`.
([Pull Request](https://github.com/rails/rails/pull/34605))
* Make implicit ordering configurable for a column.
([Pull Request](https://github.com/rails/rails/pull/34480))
* Bump the minimum PostgreSQL version to 9.3, dropping support for 9.1 and 9.2.
([Pull Request](https://github.com/rails/rails/pull/34520))
* Make the values of an enum frozen, raising an error when attempting to modify them.
([Pull Request](https://github.com/rails/rails/pull/34517))
* Make the SQL of `ActiveRecord::StatementInvalid` errors its own error property
and include SQL binds as a separate error property.
([Pull Request](https://github.com/rails/rails/pull/34468))
* Add an `:if_not_exists` option to `create_table`.
([Pull Request](https://github.com/rails/rails/pull/31382))
* Add support for multiple databases to `rails db:schema:cache:dump`
and `rails db:schema:cache:clear`.
([Pull Request](https://github.com/rails/rails/pull/34181))
* Add support for hash and url configs in database hash of `ActiveRecord::Base.connected_to`.
([Pull Request](https://github.com/rails/rails/pull/34196))
* Add support for default expressions and expression indexes for MySQL.
([Pull Request](https://github.com/rails/rails/pull/34307))
* Add an `index` option for `change_table` migration helpers.
([Pull Request](https://github.com/rails/rails/pull/23593))
* Fix `transaction` reverting for migrations. Previously, commands inside of a `transaction`
in a reverted migration ran uninverted. This change fixes that.
([Pull Request](https://github.com/rails/rails/pull/31604))
* Allow `ActiveRecord::Base.configurations=` to be set with a symbolized hash.
([Pull Request](https://github.com/rails/rails/pull/33968))
* Fix the counter cache to only update if the record is actually saved.
([Pull Request](https://github.com/rails/rails/pull/33913))
* Add expression indexes support for the SQLite adapter.
([Pull Request](https://github.com/rails/rails/pull/33874))
* Allow subclasses to redefine autosave callbacks for associated records.
([Pull Request](https://github.com/rails/rails/pull/33378))
* Bump the minimum MySQL version to 5.5.8.
([Pull Request](https://github.com/rails/rails/pull/33853))
* Use the utf8mb4 character set by default in MySQL.
([Pull Request](https://github.com/rails/rails/pull/33608))
* Add the ability to filter out sensitive data in `#inspect`
([Pull Request](https://github.com/rails/rails/pull/33756), [Pull Request](https://github.com/rails/rails/pull/34208))
* Change `ActiveRecord::Base.configurations` to return an object instead of a hash.
([Pull Request](https://github.com/rails/rails/pull/33637))
* Add database configuration to disable advisory locks.
([Pull Request](https://github.com/rails/rails/pull/33691))
* Update SQLite3 adapter `alter_table` method to restore foreign keys.
([Pull Request](https://github.com/rails/rails/pull/33585))
* Allow the `:to_table` option of `remove_foreign_key` to be invertible.
([Pull Request](https://github.com/rails/rails/pull/33530))
* Fix default value for MySQL time types with specified precision.
([Pull Request](https://github.com/rails/rails/pull/33280))
* Fix the `touch` option to behave consistently with `Persistence#touch` method.
([Pull Request](https://github.com/rails/rails/pull/33107))
* Raise an exception for duplicate column definitions in Migrations.
([Pull Request](https://github.com/rails/rails/pull/33029))
* Bump the minimum SQLite version to 3.8.
([Pull Request](https://github.com/rails/rails/pull/32923))
* Fix parent records to not get saved with duplicate children records.
([Pull Request](https://github.com/rails/rails/pull/32952))
* Ensure `Associations::CollectionAssociation#size` and `Associations::CollectionAssociation#empty?`
use loaded association ids if present.
([Pull Request](https://github.com/rails/rails/pull/32617))
* Add support to preload associations of polymorphic associations when not all the records have the requested associations.
([Commit](https://github.com/rails/rails/commit/75ef18c67c29b1b51314b6c8a963cee53394080b))
* Add `touch_all` method to `ActiveRecord::Relation`.
([Pull Request](https://github.com/rails/rails/pull/31513))
* Add `ActiveRecord::Base.base_class?` predicate.
([Pull Request](https://github.com/rails/rails/pull/32417))
* Add custom prefix/suffix options to `ActiveRecord::Store.store_accessor`.
([Pull Request](https://github.com/rails/rails/pull/32306))
* Add `ActiveRecord::Base.create_or_find_by`/`!` to deal with the SELECT/INSERT race condition in
`ActiveRecord::Base.find_or_create_by`/`!` by leaning on unique constraints in the database.
([Pull Request](https://github.com/rails/rails/pull/31989))
* Add `Relation#pick` as short-hand for single-value plucks.
([Pull Request](https://github.com/rails/rails/pull/31941))
Active Storage
--------------
Please refer to the [Changelog][active-storage] for detailed changes.
### Removals
### Deprecations
* Deprecate `config.active_storage.queue` in favor of `config.active_storage.queues.analysis`
and `config.active_storage.queues.purge`.
([Pull Request](https://github.com/rails/rails/pull/34838))
* Deprecate `ActiveStorage::Downloading` in favor of `ActiveStorage::Blob#open`.
([Commit](https://github.com/rails/rails/commit/ee21b7c2eb64def8f00887a9fafbd77b85f464f1))
* Deprecate using `mini_magick` directly for generating image variants in favor of
`image_processing`.
([Commit](https://github.com/rails/rails/commit/697f4a93ad386f9fb7795f0ba68f815f16ebad0f))
* Deprecate `:combine_options` in Active Storage's ImageProcessing transformer
without replacement.
([Commit](https://github.com/rails/rails/commit/697f4a93ad386f9fb7795f0ba68f815f16ebad0f))
### Notable changes
* Add support for generating BMP image variants.
([Pull Request](https://github.com/rails/rails/pull/36051))
* Add support for generating TIFF image variants.
([Pull Request](https://github.com/rails/rails/pull/34824))
* Add support for generating progressive JPEG image variants.
([Pull Request](https://github.com/rails/rails/pull/34455))
* Add `ActiveStorage.routes_prefix` for configuring the Active Storage generated routes.
([Pull Request](https://github.com/rails/rails/pull/33883))
* Generate a 404 Not Found response on `ActiveStorage::DiskController#show` when
the requested file is missing from the disk service.
([Pull Request](https://github.com/rails/rails/pull/33666))
* Raise `ActiveStorage::FileNotFoundError` when the requested file is missing for
`ActiveStorage::Blob#download` and `ActiveStorage::Blob#open`.
([Pull Request](https://github.com/rails/rails/pull/33666))
* Add a generic `ActiveStorage::Error` class that Active Storage exceptions inherit from.
([Commit](https://github.com/rails/rails/commit/18425b837149bc0d50f8d5349e1091a623762d6b))
* Persist uploaded files assigned to a record to storage when the record
is saved instead of immediately.
([Pull Request](https://github.com/rails/rails/pull/33303))
* Optionally replace existing files instead of adding to them when assigning to
a collection of attachments (as in `@user.update!(images: [ … ])`). Use
`config.active_storage.replace_on_assign_to_many` to control this behavior.
([Pull Request](https://github.com/rails/rails/pull/33303),
[Pull Request](https://github.com/rails/rails/pull/36716))
* Add the ability to reflect on defined attachments using the existing
Active Record reflection mechanism.
([Pull Request](https://github.com/rails/rails/pull/33018))
* Add `ActiveStorage::Blob#open`, which downloads a blob to a tempfile on disk
and yields the tempfile.
([Commit](https://github.com/rails/rails/commit/ee21b7c2eb64def8f00887a9fafbd77b85f464f1))
* Support streaming downloads from Google Cloud Storage. Require version 1.11+
of the `google-cloud-storage` gem.
([Pull Request](https://github.com/rails/rails/pull/32788))
* Use the `image_processing` gem for Active Storage variants. This replaces using
`mini_magick` directly.
([Pull Request](https://github.com/rails/rails/pull/32471))
Active Model
------------
Please refer to the [Changelog][active-model] for detailed changes.
### Removals
### Deprecations
### Notable changes
* Add a configuration option to customize format of the `ActiveModel::Errors#full_message`.
([Pull Request](https://github.com/rails/rails/pull/32956))
* Add support for configuring attribute name for `has_secure_password`.
([Pull Request](https://github.com/rails/rails/pull/26764))
* Add `#slice!` method to `ActiveModel::Errors`.
([Pull Request](https://github.com/rails/rails/pull/34489))
* Add `ActiveModel::Errors#of_kind?` to check presence of a specific error.
([Pull Request](https://github.com/rails/rails/pull/34866))
* Fix `ActiveModel::Serializers::JSON#as_json` method for timestamps.
([Pull Request](https://github.com/rails/rails/pull/31503))
* Fix numericality validator to still use value before type cast except Active Record.
([Pull Request](https://github.com/rails/rails/pull/33654))
* Fix numericality equality validation of `BigDecimal` and `Float`
by casting to `BigDecimal` on both ends of the validation.
([Pull Request](https://github.com/rails/rails/pull/32852))
* Fix year value when casting a multiparameter time hash.
([Pull Request](https://github.com/rails/rails/pull/34990))
* Type cast falsy boolean symbols on boolean attribute as false.
([Pull Request](https://github.com/rails/rails/pull/35794))
* Return correct date while converting parameters in `value_from_multiparameter_assignment`
for `ActiveModel::Type::Date`.
([Pull Request](https://github.com/rails/rails/pull/29651))
* Fall back to parent locale before falling back to the `:errors` namespace while fetching
error translations.
([Pull Request](https://github.com/rails/rails/pull/35424))
Active Support
--------------
Please refer to the [Changelog][active-support] for detailed changes.
### Removals
* Remove deprecated `#acronym_regex` method from `Inflections`.
([Commit](https://github.com/rails/rails/commit/0ce67d3cd6d1b7b9576b07fecae3dd5b422a5689))
* Remove deprecated `Module#reachable?` method.
([Commit](https://github.com/rails/rails/commit/6eb1d56a333fd2015610d31793ed6281acd66551))
* Remove `` Kernel#` `` without any replacement.
([Pull Request](https://github.com/rails/rails/pull/31253))
### Deprecations
* Deprecate using negative integer arguments for `String#first` and
`String#last`.
([Pull Request](https://github.com/rails/rails/pull/33058))
* Deprecate `ActiveSupport::Multibyte::Unicode#downcase/upcase/swapcase`
in favor of `String#downcase/upcase/swapcase`.
([Pull Request](https://github.com/rails/rails/pull/34123))
* Deprecate `ActiveSupport::Multibyte::Unicode#normalize`
and `ActiveSupport::Multibyte::Chars#normalize` in favor of
`String#unicode_normalize`.
([Pull Request](https://github.com/rails/rails/pull/34202))
* Deprecate `ActiveSupport::Multibyte::Chars.consumes?` in favor of
`String#is_utf8?`.
([Pull Request](https://github.com/rails/rails/pull/34215))
* Deprecate `ActiveSupport::Multibyte::Unicode#pack_graphemes(array)`
and `ActiveSupport::Multibyte::Unicode#unpack_graphemes(string)`
in favor of `array.flatten.pack("U*")` and `string.scan(/\X/).map(&:codepoints)`,
respectively.
([Pull Request](https://github.com/rails/rails/pull/34254))
### Notable changes
* Add support for parallel testing.
([Pull Request](https://github.com/rails/rails/pull/31900))
* Make sure that `String#strip_heredoc` preserves frozen-ness of strings.
([Pull Request](https://github.com/rails/rails/pull/32037))
* Add `String#truncate_bytes` to truncate a string to a maximum bytesize
without breaking multibyte characters or grapheme clusters.
([Pull Request](https://github.com/rails/rails/pull/27319))
* Add `private` option to `delegate` method in order to delegate to
private methods. This option accepts `true/false` as the value.
([Pull Request](https://github.com/rails/rails/pull/31944))
* Add support for translations through I18n for `ActiveSupport::Inflector#ordinal`
and `ActiveSupport::Inflector#ordinalize`.
([Pull Request](https://github.com/rails/rails/pull/32168))
* Add `before?` and `after?` methods to `Date`, `DateTime`,
`Time`, and `TimeWithZone`.
([Pull Request](https://github.com/rails/rails/pull/32185))
* Fix bug where `URI.unescape` would fail with mixed Unicode/escaped character
input.
([Pull Request](https://github.com/rails/rails/pull/32183))
* Fix bug where `ActiveSupport::Cache` would massively inflate the storage
size when compression was enabled.
([Pull Request](https://github.com/rails/rails/pull/32539))
* Redis cache store: `delete_matched` no longer blocks the Redis server.
([Pull Request](https://github.com/rails/rails/pull/32614))
* Fix bug where `ActiveSupport::TimeZone.all` would fail when tzinfo data for
any timezone defined in `ActiveSupport::TimeZone::MAPPING` was missing.
([Pull Request](https://github.com/rails/rails/pull/32613))
* Add `Enumerable#index_with` which allows creating a hash from an enumerable
with the value from a passed block or a default argument.
([Pull Request](https://github.com/rails/rails/pull/32523))
* Allow `Range#===` and `Range#cover?` methods to work with `Range` argument.
([Pull Request](https://github.com/rails/rails/pull/32938))
* Support key expiry in `increment/decrement` operations of RedisCacheStore.
([Pull Request](https://github.com/rails/rails/pull/33254))
* Add cpu time, idle time, and allocations features to log subscriber events.
([Pull Request](https://github.com/rails/rails/pull/33449))
* Add support for event object to the Active Support notification system.
([Pull Request](https://github.com/rails/rails/pull/33451))
* Add support for not caching `nil` entries by introducing new option `skip_nil`
for `ActiveSupport::Cache#fetch`.
([Pull Request](https://github.com/rails/rails/pull/25437))
* Add `Array#extract!` method which removes and returns the elements for which
block returns a true value.
([Pull Request](https://github.com/rails/rails/pull/33137))
* Keep an HTML-safe string HTML-safe after slicing.
([Pull Request](https://github.com/rails/rails/pull/33808))
* Add support for tracing constant autoloads via logging.
([Commit](https://github.com/rails/rails/commit/c03bba4f1f03bad7dc034af555b7f2b329cf76f5))
* Define `unfreeze_time` as an alias of `travel_back`.
([Pull Request](https://github.com/rails/rails/pull/33813))
* Change `ActiveSupport::TaggedLogging.new` to return a new logger instance
instead of mutating the one received as argument.
([Pull Request](https://github.com/rails/rails/pull/27792))
* Treat `#delete_prefix`, `#delete_suffix` and `#unicode_normalize` methods
as non HTML-safe methods.
([Pull Request](https://github.com/rails/rails/pull/33990))
* Fix bug where `#without` for `ActiveSupport::HashWithIndifferentAccess`
would fail with symbol arguments.
([Pull Request](https://github.com/rails/rails/pull/34012))
* Rename `Module#parent`, `Module#parents`, and `Module#parent_name` to
`module_parent`, `module_parents`, and `module_parent_name`.
([Pull Request](https://github.com/rails/rails/pull/34051))
* Add `ActiveSupport::ParameterFilter`.
([Pull Request](https://github.com/rails/rails/pull/34039))
* Fix issue where duration was being rounded to a full second when a float
was added to the duration.
([Pull Request](https://github.com/rails/rails/pull/34135))
* Make `#to_options` an alias for `#symbolize_keys` in
`ActiveSupport::HashWithIndifferentAccess`.
([Pull Request](https://github.com/rails/rails/pull/34360))
* Don't raise an exception anymore if the same block is included multiple times
for a Concern.
([Pull Request](https://github.com/rails/rails/pull/34553))
* Preserve key order passed to `ActiveSupport::CacheStore#fetch_multi`.
([Pull Request](https://github.com/rails/rails/pull/34700))
* Fix `String#safe_constantize` to not throw a `LoadError` for incorrectly
cased constant references.
([Pull Request](https://github.com/rails/rails/pull/34892))
* Add `Hash#deep_transform_values` and `Hash#deep_transform_values!`.
([Commit](https://github.com/rails/rails/commit/b8dc06b8fdc16874160f61dcf58743fcc10e57db))
* Add `ActiveSupport::HashWithIndifferentAccess#assoc`.
([Pull Request](https://github.com/rails/rails/pull/35080))
* Add `before_reset` callback to `CurrentAttributes` and define
`after_reset` as an alias of `resets` for symmetry.
([Pull Request](https://github.com/rails/rails/pull/35063))
* Revise `ActiveSupport::Notifications.unsubscribe` to correctly
handle Regex or other multiple-pattern subscribers.
([Pull Request](https://github.com/rails/rails/pull/32861))
* Add new autoloading mechanism using Zeitwerk.
([Commit](https://github.com/rails/rails/commit/e53430fa9af239e21e11548499d814f540d421e5))
* Add `Array#including` and `Enumerable#including` to conveniently enlarge
a collection.
([Commit](https://github.com/rails/rails/commit/bfaa3091c3c32b5980a614ef0f7b39cbf83f6db3))
* Rename `Array#without` and `Enumerable#without` to `Array#excluding`
and `Enumerable#excluding`. Old method names are retained as aliases.
([Commit](https://github.com/rails/rails/commit/bfaa3091c3c32b5980a614ef0f7b39cbf83f6db3))
* Add support for supplying `locale` to `transliterate` and `parameterize`.
([Pull Request](https://github.com/rails/rails/pull/35571))
* Fix `Time#advance` to work with dates before 1001-03-07.
([Pull Request](https://github.com/rails/rails/pull/35659))
* Update `ActiveSupport::Notifications::Instrumenter#instrument` to allow
not passing block.
([Pull Request](https://github.com/rails/rails/pull/35705))
* Use weak references in descendants tracker to allow anonymous subclasses to
be garbage collected.
([Pull Request](https://github.com/rails/rails/pull/31442))
* Calling test methods with `with_info_handler` method to allow minitest-hooks
plugin to work.
([Commit](https://github.com/rails/rails/commit/758ba117a008b6ea2d3b92c53b6a7a8d7ccbca69))
* Preserve `html_safe?` status on `ActiveSupport::SafeBuffer#*`.
([Pull Request](https://github.com/rails/rails/pull/36012))
Active Job
----------
Please refer to the [Changelog][active-job] for detailed changes.
### Removals
* Remove support for Qu gem.
([Pull Request](https://github.com/rails/rails/pull/32300))
### Deprecations
### Notable changes
* Add support for custom serializers for Active Job arguments.
([Pull Request](https://github.com/rails/rails/pull/30941))
* Add support for executing Active Jobs in the timezone in which
they were enqueued.
([Pull Request](https://github.com/rails/rails/pull/32085))
* Allow passing multiple exceptions to `retry_on`/`discard_on`.
([Commit](https://github.com/rails/rails/commit/3110caecbebdad7300daaf26bfdff39efda99e25))
* Allow calling `assert_enqueued_with` and `assert_enqueued_email_with` without a block.
([Pull Request](https://github.com/rails/rails/pull/33258))
* Wrap the notifications for `enqueue` and `enqueue_at` in the `around_enqueue`
callback instead of `after_enqueue` callback.
([Pull Request](https://github.com/rails/rails/pull/33171))
* Allow calling `perform_enqueued_jobs` without a block.
([Pull Request](https://github.com/rails/rails/pull/33626))
* Allow calling `assert_performed_with` without a block.
([Pull Request](https://github.com/rails/rails/pull/33635))
* Add `:queue` option to job assertions and helpers.
([Pull Request](https://github.com/rails/rails/pull/33635))
* Add hooks to Active Job around retries and discards.
([Pull Request](https://github.com/rails/rails/pull/33751))
* Add a way to test for subset of arguments when performing jobs.
([Pull Request](https://github.com/rails/rails/pull/33995))
* Include deserialized arguments in jobs returned by Active Job
test helpers.
([Pull Request](https://github.com/rails/rails/pull/34204))
* Allow Active Job assertion helpers to accept Proc for `only`
keyword.
([Pull Request](https://github.com/rails/rails/pull/34339))
* Drop microseconds and nanoseconds from the job arguments in assertion helpers.
([Pull Request](https://github.com/rails/rails/pull/35713))
Ruby on Rails Guides
--------------------
Please refer to the [Changelog][guides] for detailed changes.
### Notable changes
* Add Multiple Databases with Active Record guide.
([Pull Request](https://github.com/rails/rails/pull/36389))
* Add a section about troubleshooting of autoloading constants.
([Commit](https://github.com/rails/rails/commit/c03bba4f1f03bad7dc034af555b7f2b329cf76f5))
* Add Action Mailbox Basics guide.
([Pull Request](https://github.com/rails/rails/pull/34812))
* Add Action Text Overview guide.
([Pull Request](https://github.com/rails/rails/pull/34878))
Credits
-------
See the
[full list of contributors to Rails](https://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/6-0-stable/railties/CHANGELOG.md
[action-pack]: https://github.com/rails/rails/blob/6-0-stable/actionpack/CHANGELOG.md
[action-view]: https://github.com/rails/rails/blob/6-0-stable/actionview/CHANGELOG.md
[action-mailer]: https://github.com/rails/rails/blob/6-0-stable/actionmailer/CHANGELOG.md
[action-cable]: https://github.com/rails/rails/blob/6-0-stable/actioncable/CHANGELOG.md
[active-record]: https://github.com/rails/rails/blob/6-0-stable/activerecord/CHANGELOG.md
[active-storage]: https://github.com/rails/rails/blob/6-0-stable/activestorage/CHANGELOG.md
[active-model]: https://github.com/rails/rails/blob/6-0-stable/activemodel/CHANGELOG.md
[active-support]: https://github.com/rails/rails/blob/6-0-stable/activesupport/CHANGELOG.md
[active-job]: https://github.com/rails/rails/blob/6-0-stable/activejob/CHANGELOG.md
[guides]: https://github.com/rails/rails/blob/6-0-stable/guides/CHANGELOG.md
|