Skip to content

Commit c4175eb

Browse files
committed
Update CHANGELOG [ci skip]
1 parent ddf65f2 commit c4175eb

File tree

5 files changed

+67
-0
lines changed

5 files changed

+67
-0
lines changed

actionpack/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
* Allow using mountable engine route helpers in System Tests.
2+
3+
*Chalo Fernandez*
4+
5+
16
## Rails 6.0.1 (November 5, 2019) ##
27

38
* `ActionDispatch::SystemTestCase` now inherits from `ActiveSupport::TestCase`

activejob/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
* Allow Sidekiq access to the underlying job class.
2+
3+
By having access to the Active Job class, Sidekiq can get access to any `sidekiq_options` which
4+
have been set on that Active Job type and serialize those options into Redis.
5+
6+
https://github.com/mperham/sidekiq/blob/master/Changes.md#60
7+
8+
*Mike Perham*
9+
10+
111
## Rails 6.0.1 (November 5, 2019) ##
212

313
* No changes.

activerecord/CHANGELOG.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,41 @@
1+
* Share the same connection pool for primary and replica databases in the
2+
transactional tests for the same database.
3+
4+
*Edouard Chin*
5+
6+
* Fix the preloader when one record is fetched using `after_initialize`
7+
but not the entire colection.
8+
9+
*Bradley Price*
10+
11+
* Fix collection callbacks not terminating when `:abort` is thrown.
12+
13+
*Edouard Chin*, *Ryuta Kamizono*
14+
15+
* Correctly deprecate `where.not` working as NOR for relations.
16+
17+
12a9664 deprecated where.not working as NOR, however
18+
doing a relation query like `where.not(relation: { ... })`
19+
wouldn't be properly deprecated and `where.not` would work as
20+
NAND instead.
21+
22+
*Edouard Chin*
23+
24+
* Fix `db:migrate` task with multiple databases to restore the connection
25+
to the previous database.
26+
27+
The migrate task iterates and establish a connection over each db
28+
resulting in the last one to be used by subsequent rake tasks.
29+
We should reestablish a connection to the connection that was
30+
established before the migrate tasks was run
31+
32+
*Edouard Chin*
33+
34+
* Fix multi-threaded issue for `AcceptanceValidator`.
35+
36+
*Ryuta Kamizono*
37+
38+
139
## Rails 6.0.1 (November 5, 2019) ##
240

341
* Common Table Expressions are allowed on read-only connections.

activesupport/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
* Eager load translations during initialization.
2+
3+
*Diego Plentz*
4+
5+
* Use per-thread CPU time clock on `ActiveSupport::Notifications`.
6+
7+
*George Claghorn*
8+
9+
110
## Rails 6.0.1 (November 5, 2019) ##
211

312
* `ActiveSupport::SafeBuffer` supports `Enumerator` methods.

railties/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
1+
* Fix the collision check for the scaffold generator.
2+
3+
*Ryan Robeson*
4+
15
* Configuration files for environments (`config/environments/*.rb`) are
26
now able to modify `autoload_paths`, `autoload_once_paths`, and
37
`eager_load_paths`.
48

59
*Allen Hsu* & *Xavier Noria*
610

11+
712
## Rails 6.0.1 (November 5, 2019) ##
813

914
* The `zeitwerk:check` Rake task reports files outside the app's root

0 commit comments

Comments
 (0)