Add changelog entry for profiling slow tests

The change was added in #49082.
[skip ci]
This commit is contained in:
fatkodima 2023-09-13 21:37:29 +03:00
parent edd43af862
commit e4206c64d9

@ -1,5 +1,15 @@
## Rails 7.1.0.beta1 (September 13, 2023) ##
* Add ability to show slow tests to the test runner
```bash
bin/test --profile # additionally prints 10 (default) slowest tests
# or
bin/test --profile 20 # prints 20 slowest tests
```
*fatkodima*
* `rails new --javascript` generator now supports Bun
```bash