Commit Graph

56 Commits

Author SHA1 Message Date
Kasper Timm Hansen
28eecd934b Ship with rails-html-sanitizer instead. 2014-09-03 20:27:59 +02:00
Matthew Draper
a2f8377d1d Add a quick straw-man Incompatibilities section
Is this a thing we want?

Note current duplication between the `assert_select` section here, and
the corresponding release note entry... does this detail *move* from
there to here?

[ci skip]
2014-09-03 03:59:06 +09:30
Robin Dupret
38d6c722b2 Some documentation fixes [ci skip] 2014-08-29 12:37:14 +02:00
Sam Ruby
16ed2c95ce [ci skip] mention assert_select in release notes 2014-08-27 11:17:01 -04:00
Santiago Pastorino
2939e9470d Merge pull request #16707 from katmutua/master
update 4_2_release_notes
2014-08-27 11:50:23 -03:00
Jackie Mutua
db2e0f8b04 [ci skip] Update 4_2_release notes 2014-08-27 10:14:53 -03:00
yuuji.yaginuma
397a310850 [ci skip] Modify a web-console PR link 2014-08-27 17:34:20 +09:00
Eric Brooke
8a97fcb5b4 Added web links
Added web links to resque, delayed_job and sidekiq
2014-08-25 17:06:03 -07:00
Robin Dupret
a501ae8f03 Quick pass through the 4.2 release notes [ci skip]
Fix a few typos and made some tiny improvements. Refs #16576.

[Zachary Scott & Robin Dupret]
2014-08-25 23:01:12 +02:00
Jeremy Kemper
ae66fda444 Merge pull request #16616 from schneems/schneems/jeremy-comments
Address comments on Gzip implementation
2014-08-24 14:38:12 -07:00
schneems
8e31fa3b72 Address comments on Gzip implementation
- don't mutate PATH_INFO in env, test
- test fallback content type matches Rack::File
- change assertion style
- make HTTP_ACCEPT_ENCODING comparison case insensitive
- return gzip path from method instead of true/false so we don't have to assume later
- don't allocate un-needed hash.

Original comments:

https://github.com/rails/rails/commit/
cfaaacd9763642e91761de54c90669a88d772e5a#commitcomment-7468728

cc @jeremy
2014-08-24 15:58:16 -05:00
Guo Xiang Tan
0e0495786d Grammer and spelling pass on web console release note. [CI SKIP] 2014-08-25 00:14:38 +08:00
Genadi Samokovarov
6964d5da9a Describe web-console in the release notes [ci skip]
I put a more up-to-date description of Web Console in the release notes.
I'm not really happy with the language, so if you guys can help me with
that I'll be grateful :)
2014-08-24 17:11:08 +03:00
Charley D
657cbd64f1 Add change to ActionView Notable changes [ci skip] 2014-08-21 22:09:23 +02:00
Geoffrey ROGUELON
96e483aa1d Fix some issues in 4.2 release notes.
Remove duplicate line in Railties.

[ci skip]
2014-08-21 11:51:19 +02:00
Jake Worth
a7a358c884 Change 'does' to 'do' 2014-08-21 01:12:35 -05:00
Zachary Scott
f39cb2b25c Point release notes to stable branch for list of commits. [ci skip] 2014-08-20 10:29:27 -07:00
Cristian Bica
9e7f4a94ca Updated rdoc / guides / release notes related to ActiveJob / ActionMailer 2014-08-20 17:48:34 +03:00
Juanito Fatas
597a666601 Revert "Do not gsub non ASCII characters in header anchor.".
This reverts commit 699babe.

Also change the upgrading_ruby_on_rails link back to original in 4_2_release_notes.
2014-08-20 19:18:10 +08:00
Godfrey Chan
75fafc70d6 Copy & paste fail [ci skip] 2014-08-19 19:13:08 -07:00
Godfrey Chan
71c8a85724 💅 The note doesn't look good on the blue background [ci skip] 2014-08-19 19:06:12 -07:00
Godfrey Chan
657436da41 💣 oops, it should be 4.2 that's WIP [ci skip] 2014-08-19 19:03:43 -07:00
Godfrey Chan
d8db05fb01 Major features in 4.2 release notes [ci skip] 2014-08-19 18:40:43 -07:00
Godfrey Chan
f288533b4f Synced AR release notes [ci-skip] 2014-08-19 18:20:18 -07:00
Godfrey Chan
e40872fff9 Synced Active Support release notes [ci skip]
[Godfrey Chan, Genadi Samokovarov]
2014-08-19 18:06:01 -07:00
Carlos Antonio da Silva
2f7ac9cdcc Fix setting simple values to the new config.x
Previously setting simple values to the config.x object resulted in the
following:

    config.x.super_debugger = true
    config.x.super_debugger #=> {}

Which was against the examples showed in the changelog/release notes.
2014-08-19 21:59:01 -03:00
Godfrey Chan
9733dc5b39 Synced Active Model changelogs [ci skip]
Godfrey Chan, Genadi Samokovarov
2014-08-19 17:45:28 -07:00
Rafael Mendonça França
43073b393d Revert "Improve custom configuration"
This reverts commit de4891344ccc074f6d5693f4fac6ad610584e336.

Conflicts:
	railties/lib/rails/railtie/configuration.rb

It added regression. Will be back after the beta
2014-08-19 19:41:15 -03:00
Guillermo Iguaran
b9700c1e51 Merge pull request #16561 from gsamokovarov/mention-web-console-in-changelog
Mention web-console in 4.2 release notes
2014-08-19 16:20:53 -05:00
Genadi Samokovarov
5407084cc5 Mention web-console in 4.2 release notes
Mention the web-console inclusion in the default Gemfile in the Release
notes and the railties changelog. We can eventually mention it in the
upgrade guide, if needed.

[ci skip]
2014-08-20 00:01:10 +03:00
Rafael Mendonça França
de4891344c Improve custom configuration
1. Hashes can be assigned
2. We don't need a special level anymore

The method chain only works in the top level.

If users need a second level they need to assign a OrderedOptions to the
key:

    config.resque.server = ActiveSupport::OrderedOptions.new
    config.resque.server.url = "http://localhost"
    config.resque.server.port = 3000

[Rafael Mendonça França + Carlos Antonio da Silva]
2014-08-19 13:59:22 -03:00
Jon Atack
0513d7861c 4.2 Release Notes pass [skip ci] 2014-08-19 10:22:43 +02:00
Godfrey Chan
f2dda9fe25 Sync Action Mailer release notes [ci skip] 2014-08-18 22:22:46 -07:00
Godfrey Chan
b08241859f Sync Action View release notes [ci skip] 2014-08-18 21:50:59 -07:00
Godfrey Chan
96b58bb927 Mention deprecation of assert_select and friends in the release notes [ci skip] 2014-08-18 21:36:45 -07:00
Jon Atack
746ab3c456 Fix broken link to Upgrading Ruby on Rails Guide
in the 4.2 Release Notes [skip ci]

Change to link suggested by @zzak [skip ci]
2014-08-18 23:53:25 +02:00
Godfrey Chan
d424df0a90 💅 [ci skip] 2014-08-18 10:08:19 -07:00
Godfrey Chan
be69024db9 Sync action pack release notes [ci skip] 2014-08-18 10:08:19 -07:00
Godfrey Chan
e759b5277e Sync railties release notes [ci skip] 2014-08-18 09:46:28 -07:00
Yves Senn
37cae67e4e ಠ_ಠ now that the commit sha is known I can add it to the relese guide. 2014-08-14 10:00:22 +02:00
Yves Senn
a1ddde15ae remove deprecated MissingHelperError proxy.
The error was moved outside of the `ClassMethods` module.
2014-08-14 09:37:21 +02:00
Stefan Kanev
c294e91d00 Add after_bundle to the release notes and upgrade guide 2014-08-05 19:38:48 +03:00
Godfrey Chan
9386ddfd40 Format pass on 4.2 release notes [ci skip]
*   Leave two blank lines between sections/packages for readibility.

*   Always indent bullet points with four spaces. This allows multi-paragraph
    points to align properly (see #16103), and it is the same as the format we
    already use in CHANGELOGs. Doing this consistently sets an easy precedent
    for future contributors to follow.

*   Always put the PR/commit link on its own line in the source. If the bullet
    point spans multiple paragraphs, put it on its own paragraph at the end.

[Godfrey Chan & Juanito Fatas]
2014-07-13 17:23:32 -07:00
Godfrey Chan
00aae7cb38 Synced 4.2 release notes with the latest commits.
Also reordered some of the items to put newer ones on top (same order as
CHANGELOGs), which makes it easier to diff while we are still working on it.
2014-07-11 02:16:57 -07:00
Juanito Fatas
9ffeb0fd0a [ci skip] Fix 4.2 release notes list items. [Matthew Draper & Juanito Fatas] 2014-07-09 16:21:23 +08:00
Juanito Fatas
904aede21d [ci skip] Fix 4.2 release notes rendered display. 2014-07-09 15:12:51 +08:00
Juanito Fatas
c275b2e7d4 [ci skip] Concludes changelog links in the bottom.
This way when we do next release notes, this would be easier to copy and change.
2014-07-06 12:15:33 +08:00
Sean Griffin
082d1e38cb Add release notes entry for #15819 [ci skip] 2014-07-04 18:54:33 -06:00
Sean Griffin
0c4f3af739 CHANGELOG and release notes entry for #16056 2014-07-04 18:47:00 -06:00
Juanito Fatas
1c4f7751f2 [ci skip] Fix router option reference in 4.2 release notes. 2014-06-29 11:05:14 +08:00