Skip to content

Commit 63fe89d

Browse files
committed
Sync changelog
1 parent 8d62955 commit 63fe89d

File tree

7 files changed

+175
-1
lines changed

7 files changed

+175
-1
lines changed

actionpack/CHANGELOG.md

+24
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
* Resolve deprecation warning in latest `selenium-webdriver`.
2+
3+
*Earlopain*
4+
5+
* Don't preload Selenium browser when remote.
6+
7+
*Noah Horton*
8+
9+
* Fix crash for invalid Content-Type in ShowExceptions middleware.
10+
11+
*Earlopain*
12+
13+
* Fix inconsistent results of `params.deep_transform_keys`.
14+
15+
*Iago Pimenta*
16+
17+
* Do not report rendered errors except 500.
18+
19+
*Nikita Vasilevsky*
20+
21+
* Improve routes source location detection.
22+
23+
*Jean Boussier*
24+
125
* Fix `Request#raw_post` raising `NoMethodError` when `rack.input` is `nil`.
226

327
*Hartley McGuire*

actionview/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
1+
* Action View Test Case `rendered` memoization.
2+
3+
*Sean Doyle*
4+
15
* Restore the ability for templates to return any kind of object and not just strings
26

37
*Jean Boussier*
48

9+
* Fix threading issue with strict locals.
10+
11+
*Robert Fletcher*
12+
513

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

activejob/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
* Register autoload for `ActiveJob::Arguments`.
2+
3+
*Rafael Mendonça França*
4+
5+
16
## Rails 7.1.3.4 (June 04, 2024) ##
27

38
* No changes.

activerecord/CHANGELOG.md

+97-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,100 @@
1+
* Allow to eager load nested nil associations.
2+
3+
*fatkodima*
4+
5+
* Fix `create_table` with `:auto_increment` option for MySQL adapter.
6+
7+
*fatkodima*
8+
9+
* Don't load has_one associations during autosave.
10+
11+
*Eugene Kenny*
12+
13+
* Fix migration ordering for `bin/rails db:prepare` across databases.
14+
15+
*fatkodima*
16+
17+
* Fix `alias_attribute` to ignore methods defined in parent classes.
18+
19+
*Jean Boussier*
20+
21+
* Fix a performance regression in attribute methods.
22+
23+
*Jean Boussier*
24+
25+
* Fix Active Record configs variable shadowing.
26+
27+
*Joel Lubrano*
28+
29+
* Fix running migrations on other databases when `database_tasks: false` on primary.
30+
31+
*fatkodima*
32+
33+
* Fix non-partial inserts for models with composite identity primary keys.
34+
35+
*fatkodima*
36+
37+
* Fix `ActiveRecord::Relation#touch_all` with custom attribute aliased as attribute for update.
38+
39+
*fatkodima*
40+
41+
* Fix a crash when an Executor wrapped fork exit.
42+
43+
*Joé Dupuis*
44+
45+
* Fix `destroy_async` job for owners with composite primary keys.
46+
47+
*fatkodima*
48+
49+
* Ensure pre-7.1 migrations use legacy index names when using `rename_table`.
50+
51+
*fatkodima*
52+
53+
* Allow `primary_key:` association option to be composite.
54+
55+
*Nikita Vasilevsky*
56+
57+
* Do not try to alias on key update when raw SQL is supplied.
58+
59+
*Gabriel Amaral*
60+
61+
* Memoize `key_provider` from `key` or deterministic `key_provider` if any.
62+
63+
*Rosa Gutierrez*
64+
65+
* Fix `upsert` warning for MySQL.
66+
67+
*fatkodima*
68+
69+
* Fix predicate builder for polymorphic models referencing models with composite primary keys.
70+
71+
*fatkodima*
72+
73+
* Fix `update_all/delete_all` on CPK model relation with join subquery.
74+
75+
*Nikita Vasilevsky*
76+
77+
* Remove memoization to accept `key_provider` overridden by `with_encryption_context`.
78+
79+
*John Hawthorn*
80+
81+
* Raise error for Trilogy when prepared_statements is true.
82+
83+
Trilogy doesn't currently support prepared statements. The error that
84+
applications would see is a `StatementInvalid` error. This doesn't quite point
85+
you to the fact this isn't supported. So raise a more appropriate error
86+
pointing to what to change.
87+
88+
*Eileen M. Uchitelle*
89+
90+
* Fix loading schema cache when all databases have disabled database tasks.
91+
92+
*fatkodima*
93+
94+
* Always request `primary_key` in `RETURNING` if no other columns requested.
95+
96+
*Nikita Vasilevsky*
97+
198
* Handle records being loaded with Marshal without triggering schema load
299

3100
When using the old marshalling format for Active Record and loading
@@ -100,7 +197,6 @@
100197
101198
*Jean Boussier*
102199
103-
104200
* Fix counter caches when the foreign key is composite.
105201
106202
If the model holding the counter cache had a composite primary key,

activestorage/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
* Fixes race condition for multiple preprocessed video variants.
2+
3+
*Justin Searls*
4+
5+
16
## Rails 7.1.3.4 (June 04, 2024) ##
27

38
* No changes.

activesupport/CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
* Improve compatibility for `ActiveSupport::BroadcastLogger`.
2+
3+
*Máximo Mussini*
4+
5+
* Pass options along to write_entry in handle_expired_entry method.
6+
7+
*Graham Cooper*
8+
9+
* Fix Active Support configurations deprecations.
10+
11+
*fatkodima*
12+
13+
* Fix teardown callbacks.
14+
15+
*Tristan Starck*
16+
17+
* `BacktraceCleaner` silence core internal methods by default.
18+
19+
*Jean Boussier*
20+
121
* Fix `delegate_missing_to allow_nil: true` when called with implict self
222

323
```ruby

railties/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
* Preserve `--asset-pipeline propshaft` when running `app:update`.
2+
3+
*Zacharias Knudsen*
4+
5+
* Allow string keys for SQLCommenter.
6+
7+
*Ngan Pham*
8+
9+
* Fix derived foreign key to return correctly when association id is part of query constraints.
10+
11+
*Varun Sharma*
12+
13+
* Show warning for `secret_key_base` in development too.
14+
15+
*fatkodima*
16+
117
* Fix sanitizer vendor configuration in 7.1 defaults.
218

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

0 commit comments

Comments
 (0)