Skip to content

Commit 382e427

Browse files
authored
Remove extra spacing (#523)
1 parent fe08c3d commit 382e427

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

_posts/2025-07-04-this-week-in-rails.markdown

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,30 +12,25 @@ date: 2025-07-04
1212
Hi! [Emmanuel Hayford](https://x.com/siaw23) with some cool updates for you.
1313

1414
[Deprecated associations](https://github.com/rails/rails/pull/55285)
15-
1615
You can now mark associations as deprecated using:
1716

1817
`has_many :posts, deprecated: true`
1918

2019
Active Record will report any usage of the deprecated association. Three reporting modes are supported: `:warn (default)`, `:raise`, and `:notify`. You can also enable or disable backtraces (disabled by default).
2120

22-
[Add locale options to PostgreSQL adapter DB create](https://github.com/rails/rails/pull/55030) .
23-
21+
[Add locale options to PostgreSQL adapter DB create](https://github.com/rails/rails/pull/55030)
2422
PostgreSQL adapter create DB now supports `locale_provider` and `locale`.
2523

2624

27-
[Fix `annotate` comments to propagate to `update_all`/`delete_all`](https://github.com/rails/rails/pull/55269) .
28-
25+
[Fix `annotate` comments to propagate to `update_all`/`delete_all`](https://github.com/rails/rails/pull/55269)
2926
This PR fixes annotate comments to work with `update_all` and `delete_all`.
3027

3128

32-
[Rails New: Only add browser restrictions when using importmap](https://github.com/rails/rails/pull/55263) .
33-
29+
[Rails New: Only add browser restrictions when using importmap](https://github.com/rails/rails/pull/55263)
3430
When you generate a new Rails application right now, it will block older browsers. This behavior makes sense if you are using [`importmap-rails`](https://github.com/rails/importmap-rails), but if you for example use jsbundling-rails, it does not. This PR suggests only adding this blocker when you are using importmap, and not for all Rails applications.
3531

3632

3733
[Implement ActiveSupport::BacktraceCleaner#clean_locations](https://github.com/rails/rails/pull/55255)
38-
3934
A new method `ActiveSupport::BacktraceCleaner#clean_locations` allows cleaning an array of `Thread::Backtrace::Location objects`:
4035

4136
`clean_locations = backtrace_cleaner.clean_locations(caller_locations)`

0 commit comments

Comments
 (0)