Skip to content

Commit

Permalink
Sync changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelfranca committed Aug 22, 2024
1 parent 8d62955 commit 63fe89d
Show file tree
Hide file tree
Showing 7 changed files with 175 additions and 1 deletion.
24 changes: 24 additions & 0 deletions actionpack/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
* Resolve deprecation warning in latest `selenium-webdriver`.

*Earlopain*

* Don't preload Selenium browser when remote.

*Noah Horton*

* Fix crash for invalid Content-Type in ShowExceptions middleware.

*Earlopain*

* Fix inconsistent results of `params.deep_transform_keys`.

*Iago Pimenta*

* Do not report rendered errors except 500.

*Nikita Vasilevsky*

* Improve routes source location detection.

*Jean Boussier*

* Fix `Request#raw_post` raising `NoMethodError` when `rack.input` is `nil`.

*Hartley McGuire*
Expand Down
8 changes: 8 additions & 0 deletions actionview/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
* Action View Test Case `rendered` memoization.

*Sean Doyle*

* Restore the ability for templates to return any kind of object and not just strings

*Jean Boussier*

* Fix threading issue with strict locals.

*Robert Fletcher*


## Rails 7.1.3.4 (June 04, 2024) ##

Expand Down
5 changes: 5 additions & 0 deletions activejob/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
* Register autoload for `ActiveJob::Arguments`.

*Rafael Mendonça França*


## Rails 7.1.3.4 (June 04, 2024) ##

* No changes.
Expand Down
98 changes: 97 additions & 1 deletion activerecord/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,100 @@
* Allow to eager load nested nil associations.

*fatkodima*

* Fix `create_table` with `:auto_increment` option for MySQL adapter.

*fatkodima*

* Don't load has_one associations during autosave.

*Eugene Kenny*

* Fix migration ordering for `bin/rails db:prepare` across databases.

*fatkodima*

* Fix `alias_attribute` to ignore methods defined in parent classes.

*Jean Boussier*

* Fix a performance regression in attribute methods.

*Jean Boussier*

* Fix Active Record configs variable shadowing.

*Joel Lubrano*

* Fix running migrations on other databases when `database_tasks: false` on primary.

*fatkodima*

* Fix non-partial inserts for models with composite identity primary keys.

*fatkodima*

* Fix `ActiveRecord::Relation#touch_all` with custom attribute aliased as attribute for update.

*fatkodima*

* Fix a crash when an Executor wrapped fork exit.

*Joé Dupuis*

* Fix `destroy_async` job for owners with composite primary keys.

*fatkodima*

* Ensure pre-7.1 migrations use legacy index names when using `rename_table`.

*fatkodima*

* Allow `primary_key:` association option to be composite.

*Nikita Vasilevsky*

* Do not try to alias on key update when raw SQL is supplied.

*Gabriel Amaral*

* Memoize `key_provider` from `key` or deterministic `key_provider` if any.

*Rosa Gutierrez*

* Fix `upsert` warning for MySQL.

*fatkodima*

* Fix predicate builder for polymorphic models referencing models with composite primary keys.

*fatkodima*

* Fix `update_all/delete_all` on CPK model relation with join subquery.

*Nikita Vasilevsky*

* Remove memoization to accept `key_provider` overridden by `with_encryption_context`.

*John Hawthorn*

* Raise error for Trilogy when prepared_statements is true.

Trilogy doesn't currently support prepared statements. The error that
applications would see is a `StatementInvalid` error. This doesn't quite point
you to the fact this isn't supported. So raise a more appropriate error
pointing to what to change.

*Eileen M. Uchitelle*

* Fix loading schema cache when all databases have disabled database tasks.

*fatkodima*

* Always request `primary_key` in `RETURNING` if no other columns requested.

*Nikita Vasilevsky*

* Handle records being loaded with Marshal without triggering schema load

When using the old marshalling format for Active Record and loading
Expand Down Expand Up @@ -100,7 +197,6 @@
*Jean Boussier*
* Fix counter caches when the foreign key is composite.
If the model holding the counter cache had a composite primary key,
Expand Down
5 changes: 5 additions & 0 deletions activestorage/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
* Fixes race condition for multiple preprocessed video variants.

*Justin Searls*


## Rails 7.1.3.4 (June 04, 2024) ##

* No changes.
Expand Down
20 changes: 20 additions & 0 deletions activesupport/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
* Improve compatibility for `ActiveSupport::BroadcastLogger`.

*Máximo Mussini*

* Pass options along to write_entry in handle_expired_entry method.

*Graham Cooper*

* Fix Active Support configurations deprecations.

*fatkodima*

* Fix teardown callbacks.

*Tristan Starck*

* `BacktraceCleaner` silence core internal methods by default.

*Jean Boussier*

* Fix `delegate_missing_to allow_nil: true` when called with implict self

```ruby
Expand Down
16 changes: 16 additions & 0 deletions railties/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
* Preserve `--asset-pipeline propshaft` when running `app:update`.

*Zacharias Knudsen*

* Allow string keys for SQLCommenter.

*Ngan Pham*

* Fix derived foreign key to return correctly when association id is part of query constraints.

*Varun Sharma*

* Show warning for `secret_key_base` in development too.

*fatkodima*

* Fix sanitizer vendor configuration in 7.1 defaults.

In apps where `rails-html-sanitizer` was not eagerly loaded, the sanitizer default could end up
Expand Down

0 comments on commit 63fe89d

Please sign in to comment.