Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Don't rely on the column SQL type for bit string quoting | Sean Griffin | 2014-07-11 | 2 | -13/+33 |
| | |||||
* | Merge pull request #16135 from mgoldWork/validator-guide-sentence-break | Xavier Noria | 2014-07-11 | 1 | -2/+2 |
|\ | | | | | [Guides] Sentence break for clarity [ci-skip] | ||||
| * | [Guides] Sentence break for clarity [ci-skip] | Max Goldstein | 2014-07-11 | 1 | -2/+2 |
|/ | |||||
* | Merge pull request #16132 from tgxworld/fix_test_not_unsubscribing | Santiago Pastorino | 2014-07-11 | 1 | -2/+2 |
|\ | | | | | Fix incorrect unsubscription. | ||||
| * | Fix incorrect unsubscription. | Guo Xiang Tan | 2014-07-11 | 1 | -2/+2 |
| | | |||||
* | | Merge pull request #16133 from Agis-/cookie_overflow_check | Santiago Pastorino | 2014-07-11 | 2 | -2/+7 |
|\ \ | | | | | | | Use `#bytesize` instead of `#size` when checking for cookie overflow | ||||
| * | | Use `#bytesize` instead of `#size` when checking for cookie overflow | Agis- | 2014-07-11 | 2 | -2/+7 |
|/ / | | | | | | | | | | | | | | | | | | | Although the cookie values happens to be ASCII strings because they are Base64 encoded, it is semantically incorrect to check for the number of the characters in the cookie, when we actually want to check for the number of the bytes it consists of. Furthermore it is unecessary coupling with the current implementation that uses Base64 for encoding the values. | ||||
* / | Synced 4.2 release notes with the latest commits. | Godfrey Chan | 2014-07-11 | 5 | -30/+85 |
|/ | | | | | 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. | ||||
* | Fixed borken tests in AV caused by 013c74d | Godfrey Chan | 2014-07-10 | 1 | -2/+2 |
| | |||||
* | Merge pull request #14883 from chancancode/rm-single-space | Guillermo Iguaran | 2014-07-10 | 6 | -22/+32 |
|\ | | | | | Removed the single space character for Safari | ||||
| * | Removed single space padding from empty response body. | Godfrey Chan | 2014-07-10 | 6 | -22/+32 |
|/ | | | | | | | | | | | | `render nothing: true` or rendering a `nil` body no longer add a single space to the response body. The old behavior was added as a workaround for a bug in an early version of Safari, where the HTTP headers are not returned correctly if the response body has a 0-length. This is been fixed since and the workaround is no longer necessary. Use `render body: ' '` if the old behavior is desired. | ||||
* | * gcampbell-rosetta_flash: | Aaron Patterson | 2014-07-10 | 4 | -3/+8 |
|\ | | | | | | | Address CVE-2014-4671 (JSONP Flash exploit) | ||||
| * | Merge branch 'rosetta_flash' of https://github.com/gcampbell/rails into ↵ | Aaron Patterson | 2014-07-10 | 4 | -3/+8 |
|/| | | | | | | | | | | | | | | | | | | | gcampbell-rosetta_flash * 'rosetta_flash' of https://github.com/gcampbell/rails: Address CVE-2014-4671 (JSONP Flash exploit) Conflicts: actionpack/CHANGELOG.md | ||||
| * | Address CVE-2014-4671 (JSONP Flash exploit) | Greg Campbell | 2014-07-09 | 4 | -3/+8 |
| | | | | | | | | | | | | Adds a comment before JSONP callbacks. See http://miki.it/blog/2014/7/8/abusing-jsonp-with-rosetta-flash/ for more details on the exploit in question. | ||||
* | | Merge pull request #16123 from karlentwistle/issues/9299 | Andrew White | 2014-07-10 | 3 | -5/+21 |
|\ \ | | | | | | | Force encoding of US-ASCII to UTF-8 in unescape_uri. | ||||
| * | | Force encoding of US-ASCII to UTF-8 in unescape_uri. | Karl Entwistle | 2014-07-10 | 3 | -5/+21 |
|/ / | | | | | | | | | | | | | | | | | Because URI paths may contain non US-ASCII characters we need to force the encoding of any unescaped URIs to UTF-8 if they are US-ASCII. This essentially replicates the functionality of the monkey patch to URI.parser.unescape in active_support/core_ext/uri.rb. Fixes #16104. | ||||
* | | Merge pull request #16118 from JayK31/strong_params_link | Zachary Scott | 2014-07-09 | 1 | -2/+1 |
|\ \ | | | | | | | [ci skip] Fixed link to strong params in Getting Started section 5.6. | ||||
| * | | [ci skip] Fixed link to strong params in Getting Started section 5.6. | JayK31 | 2014-07-09 | 1 | -2/+1 |
|/ / | |||||
* | | Merge pull request #16113 from ↵ | Zachary Scott | 2014-07-09 | 1 | -2/+12 |
|\ \ | | | | | | | | | | | | | egilburg/rails_4_1_upgrade_guide_json_time_with_zone_precision [ci skip] Document millisecond precision change in ActiveSupport::TimeWithZone#as_json | ||||
| * | | [ci skip] Document millisecond precision change in ↵ | Eugene Gilburg | 2014-07-09 | 1 | -2/+12 |
| |/ | | | | | | | ActiveSupport::TimeWithZone#as_json | ||||
* | | Merge pull request #16091 from tgxworld/reduce_creation_of_subscribers | Santiago Pastorino | 2014-07-09 | 1 | -17/+13 |
|\ \ | | | | | | | Reduce number of subscriptions created. | ||||
| * | | Reduce number of subscriptions created. | Guo Xiang Tan | 2014-07-08 | 1 | -17/+13 |
| | | | |||||
* | | | Include missing module in tag_helper | Carlos Antonio da Silva | 2014-07-09 | 1 | -0/+1 |
| |/ |/| | | | | | | | | | | | | | | | Since 6857415187810f1289068a448268264d0cf0844f we are using #safe_join to join the content when an Array is given, so we must include the dependent module here to make sure it's available when this module is used alone. This was making Simple Form tests to fail with current master due to the missing dependency. | ||||
* | | Merge pull request #16103 from JuanitoFatas/doc/patch-001 | Matthew Draper | 2014-07-09 | 1 | -34/+41 |
|\ \ | | | | | | | [ci skip] Fix 4.2 release notes list items. [Matthew Draper & Juanito Fatas] | ||||
| * | | [ci skip] Fix 4.2 release notes list items. [Matthew Draper & Juanito Fatas] | Juanito Fatas | 2014-07-09 | 1 | -34/+41 |
|/ / | |||||
* | | Merge pull request #16102 from JuanitoFatas/format-fixes | Zachary Scott | 2014-07-09 | 1 | -31/+29 |
|\ \ | | | | | | | [ci skip] Fix 4.2 release notes rendered display. | ||||
| * | | [ci skip] Fix 4.2 release notes rendered display. | Juanito Fatas | 2014-07-09 | 1 | -31/+29 |
| | | | |||||
* | | | Merge pull request #16100 from tgxworld/fix_comment | Zachary Scott | 2014-07-09 | 1 | -2/+2 |
|\ \ \ | |/ / |/| | | Use proper possessive punctuation [ci skip] | ||||
| * | | Fix weird comment. [CI SKIP] | Guo Xiang Tan | 2014-07-09 | 1 | -2/+2 |
|/ / | |||||
* | | Merge pull request #16097 from nishantmodak/correct_md | Zachary Scott | 2014-07-08 | 12 | -33/+29 |
|\ \ | | | | | | | correct markdown usage [ci skip] | ||||
| * | | correct markdown usage [ci skip] | Nishant Modak | 2014-07-09 | 12 | -33/+29 |
| | | | |||||
* | | | Merge pull request #13999 from jamox/update_rack | Aaron Patterson | 2014-07-08 | 7 | -22/+34 |
|\ \ \ | | | | | | | | | This updates rails to use edge rack | ||||
| * | | | Since upgrading rack we can remove unnecessary string encodings | Jarmo Isotalo | 2014-05-19 | 1 | -9/+2 |
| | | | | | | | | | | | | | | | | https://github.com/rack/rack/commit/5a5aee36 | ||||
| * | | | Upgraded rack | Jarmo Isotalo | 2014-05-19 | 6 | -13/+32 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As Rack has some non backwards compatible changes added required modifications to keep behaviour in rails close to same as before. Also modified generators to include rack/rack for not yet released version of rack | ||||
* | | | | Merge pull request #16095 from eileencodes/update-changelog-for-pr-14899 | Rafael Mendonça França | 2014-07-08 | 1 | -0/+15 |
|\ \ \ \ | | | | | | | | | | | Add changelog for PR #14899 | ||||
| * | | | | [ci skip] Add changelog for PR #14899 | eileencodes | 2014-07-08 | 1 | -0/+15 |
|/ / / / | | | | | | | | | | | | | The changelog entry for #14899 was missing. | ||||
* | | | | Merge pull request #16094 from ↵ | Rafael Mendonça França | 2014-07-08 | 1 | -0/+2 |
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | zuhao/refactor_activerecord_belongs_to_associations_test Include fixtures to prevent foreign key violation. | ||||
| * | | | | Include fixtures to prevent foreign key violation. | Zuhao Wan | 2014-07-09 | 1 | -0/+2 |
|/ / / / | |||||
* | | | | Merge pull request #16093 from ↵ | Rafael Mendonça França | 2014-07-08 | 1 | -0/+1 |
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | zuhao/refactor_activerecord_nested_through_associations_test Warm up cache to prevent assertion failure. | ||||
| * | | | | Warm up cache to prevent assertion failure. | Zuhao Wan | 2014-07-08 | 1 | -0/+1 |
| | | | | | |||||
* | | | | | Merge pull request #16071 from sgrif/sg-pg-type-cast | Rafael Mendonça França | 2014-07-08 | 1 | -15/+0 |
|\ \ \ \ \ | | | | | | | | | | | | | Remove PG's definition of `type_cast` | ||||
| * | | | | | Remove PG's definition of `type_cast` | Sean Griffin | 2014-07-06 | 1 | -15/+0 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | All cases except for `nil` in an array have been removed. `nil` in an array is handled by the Array type object. | ||||
* | | | | | | Merge pull request #16072 from sgrif/sg-xml-quoting | Rafael Mendonça França | 2014-07-08 | 5 | -5/+56 |
|\ \ \ \ \ \ | |_|_|_|_|/ |/| | | | | | Don't rely on the sql type to quote XML columns in PG | ||||
| * | | | | | Don't rely on the sql type to quote XML columns in PG | Sean Griffin | 2014-07-06 | 5 | -5/+56 |
| |/ / / / | |||||
* | | | | | test i18n against a routed app | Aaron Patterson | 2014-07-07 | 1 | -1/+16 |
| | | | | | |||||
* | | | | | remove the mounted_helpers respond_to check | Aaron Patterson | 2014-07-07 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | It always responds to mounted_helpers now | ||||
* | | | | | always test against a routed rack app so there are always url_helpers | Aaron Patterson | 2014-07-07 | 5 | -36/+66 |
| | | | | | |||||
* | | | | | Merge pull request #16078 from tgxworld/retreive_connection_once | Rafael Mendonça França | 2014-07-07 | 1 | -2/+3 |
|\ \ \ \ \ | | | | | | | | | | | | | Avoid retrieving connection in ActiveRecord::QueryCache multiple times. | ||||
| * | | | | | Avoid retrieving connection in ActiveRecord::QueryCache multiple times. | Guo Xiang Tan | 2014-07-07 | 1 | -2/+3 |
| |/ / / / | |||||
* | | | | | Merge pull request #16074 from sgrif/sg-remove-text-predicate | Rafael Mendonça França | 2014-07-07 | 18 | -32/+4 |
|\ \ \ \ \ | | | | | | | | | | | | | Remove the `text?` predicate from the type objects |