From 78b0934dd1bb84e8f093fb8ef95ca99b297b51cd Mon Sep 17 00:00:00 2001 From: Piotr Sarnacki Date: Thu, 31 May 2012 18:21:56 +0200 Subject: Add bare actionview gem to the root directory This commit creates structure for Action View gem and is first of a series of commits extracting Action View from Action Pack. --- actionview/CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 actionview/CHANGELOG.md (limited to 'actionview/CHANGELOG.md') diff --git a/actionview/CHANGELOG.md b/actionview/CHANGELOG.md new file mode 100644 index 0000000000..ba3f2e2129 --- /dev/null +++ b/actionview/CHANGELOG.md @@ -0,0 +1,3 @@ +## Rails 4.0.0 (unreleased) ## + +* First public release -- cgit v1.2.3 From 5bcdf4faa6da7acb762dab680372f8520a0533c2 Mon Sep 17 00:00:00 2001 From: Piotr Sarnacki Date: Sat, 4 May 2013 15:09:31 +0200 Subject: ActionView version should be 4.1.0 --- actionview/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'actionview/CHANGELOG.md') diff --git a/actionview/CHANGELOG.md b/actionview/CHANGELOG.md index ba3f2e2129..f4107703d3 100644 --- a/actionview/CHANGELOG.md +++ b/actionview/CHANGELOG.md @@ -1,3 +1,3 @@ -## Rails 4.0.0 (unreleased) ## +## Rails 4.1.0 (unreleased) ## * First public release -- cgit v1.2.3 From 1d59e94cea44a104993da08a02d483e62f6c30ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Strza=C5=82kowski?= Date: Thu, 20 Jun 2013 19:01:26 +0200 Subject: Remove heading from AV's CHANGELOG --- actionview/CHANGELOG.md | 2 -- 1 file changed, 2 deletions(-) (limited to 'actionview/CHANGELOG.md') diff --git a/actionview/CHANGELOG.md b/actionview/CHANGELOG.md index f4107703d3..0308725058 100644 --- a/actionview/CHANGELOG.md +++ b/actionview/CHANGELOG.md @@ -1,3 +1 @@ -## Rails 4.1.0 (unreleased) ## - * First public release -- cgit v1.2.3 From d1fb5d594997c93bc18b08943947603c3fa024b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Strza=C5=82kowski?= Date: Thu, 20 Jun 2013 19:06:52 +0200 Subject: Adjust changelog for AV & AP --- actionview/CHANGELOG.md | 43 ++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 42 insertions(+), 1 deletion(-) (limited to 'actionview/CHANGELOG.md') diff --git a/actionview/CHANGELOG.md b/actionview/CHANGELOG.md index 0308725058..135a96621d 100644 --- a/actionview/CHANGELOG.md +++ b/actionview/CHANGELOG.md @@ -1 +1,42 @@ -* First public release +* Use a case insensitive URI Regexp for #asset_path. + + This fix a problem where the same asset path using different case are generating + different URIs. + + Before: + + image_tag("HTTP://google.com") + # => "\"Google\"" + image_tag("http://google.com") + # => "\"Google\"" + + After: + + image_tag("HTTP://google.com") + # => "\"Google\"" + image_tag("http://google.com") + # => "\"Google\"" + + *David Celis* + +* Element of the `collection_check_boxes` and `collection_radio_buttons` can + optionally contain html attributes as the last element of the array. + + *Vasiliy Ermolovich* + +* Update the HTML `BOOLEAN_ATTRIBUTES` in `ActionView::Helpers::TagHelper` + to conform to the latest HTML 5.1 spec. Add attributes `allowfullscreen`, + `default`, `inert`, `sortable`, `truespeed`, `typemustmatch`. Fix attribute + `seamless` (previously misspelled `seemless`). + + *Alex Peattie* + +* Fix an issue where partials with a number in the filename weren't being digested for cache dependencies. + + *Bryan Ricker* + +* First release, ActionView extracted from ActionPack + + *Piotr Sarnacki*, *Łukasz Strzałkowski* + +Please check [4-0-stable (ActionPack's CHANGELOG)](https://github.com/rails/rails/blob/4-0-stable/actionpack/CHANGELOG.md) for previous changes. \ No newline at end of file -- cgit v1.2.3