Rails 6.1 Adds if_not_exists for Indexes
Rails 6.1 adds if_not_exists option to add_index, propagating from create_table to indexes in the same block.Rails Adds Descending Order to Batch Methods
Rails 6.1 adds order option to find_each, find_in_batches, and in_batches for ascending or descending processing.Rails Adds round_mode to Number Helpers
Rails has added :round_mode parameter support to number helpersRuby 2.7 Deprecates Regexp#match with nil
Ruby 2.7 has deprecated Regexp#match and Regexp#match? with a nil argument. It will raise a TypeError in the next release.Ruby 2.7 Reverts Flip-Flop Operator
Ruby 2.7 reverts the deprecation of flip-flop operatorRuby 2.7 adds Enumerator#produce
Ruby 2.7 has added Enumerator#produce to generate Enumerator from any custom data-transformation.Ruby 2.7 Adds Comparable#clamp with Range
Ruby 2.7 adds supports for Comparable#clamp with a rangeRails 6 adds Active Record Relation#pick
Rails 6 adds `ActiveRecord::Relation#pick` to pick the first value from the named column in the relation.What's New in IRB with Ruby 2.7
List of new and experimental features in the Interactive Ruby Shell(IRB) which are introduced with Ruby 2.7.Rails 6 adds Relation#extract_associated
Rails 6 adds `ActiveRecord::Relation#extract_associated` for extracting associated records from a relation.Companies Hiring at RailsConf 2019
List of companies hiring at RailsConf 2019 organised in MinneapolisRails 6 Deprecates update_attributes Methods
Rails 6 has deprecated update_attributes and update_attributes! in favor of update and update!Rails 6 adds db:prepare rake task
Rails 6 adds db:prepare rake task which creates the database, loads the schema, runs the migrations and initializes with the seed data