Skip to content

Commit 162e13d

Browse files
committed
Add missing CHANGELOG entried
1 parent 3c6cbad commit 162e13d

File tree

2 files changed

+44
-0
lines changed

2 files changed

+44
-0
lines changed

actionpack/CHANGELOG

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,41 @@
11
*Rails 3.1.1 (unreleased)*
22

3+
* stylesheet_link_tag('/stylesheets/application') and similar helpers doesn't
4+
throw Sprockets::FileOutsidePaths exception anymore [Santiago Pastorino]
5+
6+
* Ensure default_asset_host_protocol is respected, closes #2980. [José Valim]
7+
8+
Changing rake db:schema:dump to run :environment as well as :load_config,
9+
as running :load_config alone will lead to the dumper being run without
10+
including extensions such as those included in foreigner and
11+
spatial_adapter.
12+
13+
This reverses a change made here:
14+
https://github.com/rails/rails/commit/5df72a238e9fcb18daf6ab6e6dc9051c9106d7bb#L0L324
15+
16+
I'm assuming here that :load_config needs to be invoked
17+
separately from :environment, as it is elsewhere in the
18+
file for db operations, if not the alternative is to go
19+
back to "task :dump => :environment do".
20+
21+
[Ben Woosley]
22+
23+
* Update to rack-cache 1.1.
24+
25+
Versions prior to 1.1 delete the If-Modified-Since and If-Not-Modified
26+
headers when config.action_controller.perform_caching is true. This has two
27+
problems:
28+
* unexpected inconsistent behaviour between development &
29+
production environments
30+
* breaks applications that use of these headers
31+
32+
[Brendan Ribera]
33+
34+
* Ensure that enhancements to assets:precompile task are only run once [Sam Pohlenz]
35+
36+
* TestCase should respect the view_assigns API instead of pulling variables on
37+
its own. [José Valim]
38+
339
* javascript_path and stylesheet_path now refer to /assets if asset pipelining
440
is on. [Santiago Pastorino]
541

activesupport/CHANGELOG

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
*Rails 3.1.1 (unreleased)*
22

3+
* ruby193: String#prepend is also unsafe [Akira Matsuda]
4+
5+
* Fix obviously breakage of Time.=== for Time subclasses [jeremyevans]
6+
7+
* Added fix so that file store does not raise an exception when cache dir does
8+
not exist yet. This can happen if a delete_matched is called before anything
9+
is saved in the cache. [Philippe Huibonhoa]
10+
311
* Fixed performance issue where TimeZone lookups would require tzinfo each time [Tim Lucas]
412

513
* ActiveSupport::OrderedHash is now marked as extractable when using Array#extract_options! [Prem Sichanugrist]

0 commit comments

Comments
 (0)