Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ci skip] Fix list item rendered display of 4.2 release notes. #16154

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
28 changes: 13 additions & 15 deletions guides/source/4_2_release_notes.md
Expand Up @@ -21,7 +21,6 @@ available in the
[Upgrading Ruby on Rails](upgrading_ruby_on_rails.html#upgrading-from-rails-4-1-to-rails-4-2)
guide.


Major Features
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Keep two blank lines between sections

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hm never mind. It seems that most of those have already been removed =\ it's fine then

--------------

Expand Down Expand Up @@ -141,7 +140,6 @@ Please refer to the [Changelog][action-pack] for detailed changes.
(Commit [1](https://github.com/rails/rails/commit/6c5f43bab8206747a8591435b2aa0ff7051ad3de),
[2](https://github.com/rails/rails/commit/489a8f2a44dc9cea09154ee1ee2557d1f037c7d4))


* Added HTTP method `MKCALENDAR` from RFC-4791
([Pull Request](https://github.com/rails/rails/pull/15121))

Expand All @@ -158,7 +156,6 @@ Please refer to the [Changelog][action-pack] for detailed changes.
* Added option to disable logging of CSRF failures.
([Pull Request](https://github.com/rails/rails/pull/14280))


Action View
-------------

Expand All @@ -181,7 +178,6 @@ Please refer to the [Changelog][action-view] for detailed changes.
the hidden fields.
([Pull Request](https://github.com/rails/rails/pull/14738))


Action Mailer
-------------

Expand Down Expand Up @@ -248,12 +244,12 @@ for detailed changes.
is not fully possible because the Ruby range does not support excluded
beginnings.

The current solution of incrementing the beginning is not correct
and is now deprecated. For subtypes where we don't know how to increment
(e.g. `#succ` is not defined) it will raise an `ArgumentError` for ranges with
excluding beginnings.
The current solution of incrementing the beginning is not correct
and is now deprecated. For subtypes where we don't know how to increment
(e.g. `#succ` is not defined) it will raise an `ArgumentError` for ranges with
excluding beginnings.

([Commit](https://github.com/rails/rails/commit/91949e48cf41af9f3e4ffba3e5eecf9b0a08bfc3))
([Commit](https://github.com/rails/rails/commit/91949e48cf41af9f3e4ffba3e5eecf9b0a08bfc3))

### Notable changes

Expand Down Expand Up @@ -333,7 +329,6 @@ Please refer to the [Changelog][active-model] for detailed changes.
* Introduced `#validate` as an alias for `#valid?`.
([Pull Request](https://github.com/rails/rails/pull/14456))


Active Support
--------------

Expand All @@ -342,18 +337,21 @@ Please refer to the [Changelog][active-support] for detailed changes.
### Removals

* Removed deprecated `Numeric#ago`, `Numeric#until`, `Numeric#since`,
`Numeric#from_now`. ([Commit](https://github.com/rails/rails/commit/f1eddea1e3f6faf93581c43651348f48b2b7d8bb))
`Numeric#from_now`.
([Commit](https://github.com/rails/rails/commit/f1eddea1e3f6faf93581c43651348f48b2b7d8bb))

* Removed deprecated string based terminators for `ActiveSupport::Callbacks`.
([Pull Request](https://github.com/rails/rails/pull/15100))

### Deprecations

* Deprecated `Class#superclass_delegating_accessor`, use `Class#class_attribute`
instead. ([Pull Request](https://github.com/rails/rails/pull/14271))
instead.
([Pull Request](https://github.com/rails/rails/pull/14271))

* Deprecated `ActiveSupport::SafeBuffer#prepend!` as `ActiveSupport::SafeBuffer#prepend`
now performs the same function. ([Pull Request](https://github.com/rails/rails/pull/14529))
now performs the same function.
([Pull Request](https://github.com/rails/rails/pull/14529))

### Notable changes

Expand All @@ -367,8 +365,8 @@ Please refer to the [Changelog][active-support] for detailed changes.

* Introduce `Concern#class_methods` as an alternative to `module ClassMethods`,
as well as `Kernel#concern` to avoid the `module Foo; extend ActiveSupport::Concern; end`
boilerplate. ([Commit](https://github.com/rails/rails/commit/b16c36e688970df2f96f793a759365b248b582ad))

boilerplate.
([Commit](https://github.com/rails/rails/commit/b16c36e688970df2f96f793a759365b248b582ad))

Credits
-------
Expand Down