Hey, Wojtek here with last week updates from the Ruby on Rails world.
The timestamps will be automatically set when using bulk insert/upsert. This behaviour can be disabled by the record_timestamps config on the model class.
When translation key ending with _html is used it will be marked as HTML safe in the same way as in the views.
Can be used with PostgreSQL and SQlite databases to use FILTER clause.
Fixed an issue with how nested lists were displayed when converting to plain text.
Can be used via protect_from_forgery with: CustomStrategy among built in options: exception, reset_session, null_session.
user.password = 'something'
user.password = nil
# before:
user.password # => 'something'
# now:
user.password # => nil
29 people contributed to Rails since the last time. All the changes can be checked here. Until next week!