Commit Graph

74209 Commits

Author SHA1 Message Date
Rafael França
a40da823d7
Merge pull request #35992 from jduff/include_bcc
Fix Bcc header missing with emails from conductor and test helpers
2019-07-26 13:27:23 -04:00
Rafael França
d937e1f4ca
Merge pull request #36778 from abhaynikam/remove-unwanted-javascript-compile-from-test
Removed webpacker:compile step from scaffold test as it is not required
2019-07-26 13:13:06 -04:00
John Duff
09e5d6d004 Fix Bcc header missing with emails from conductor and test helpers 2019-07-26 13:04:16 -04:00
Rafael França
344bed41d0
Merge pull request #36372 from instructure-bridge/6-0-stable
Don't break configurations.each, .first before the deprecation period
2019-07-26 12:59:27 -04:00
Rafael França
7067ee91fb
Merge pull request #36771 from ajn123/add-documentation-for-csrf-javascript
[ci skip] add CSRF token explanation for javascript documentation
2019-07-26 12:56:38 -04:00
Rafael França
a40b328b01
Merge pull request #36772 from sharang-d/default-for-digest
Add a default value for arg `format` in `ActionView::Digestor.digest()`
2019-07-26 12:53:52 -04:00
Cliff Pruitt
a7b6a9553b Remove comments in test file 2019-07-26 12:42:06 -04:00
Cliff Pruitt
05633d02d8 Handle GB18030 strings with invalid characters in transliterate
GB18030 is Unicode compatible and covers all Unicode code points so we can temporarily convert GB18030 strings to UTF-8 to perform the transliteration. After transliterating we want to convert back to GB18030.

In all cases of transcoding, we replace invalid or undefined characters with the default replacement character ("?"). This is in line with the behavior of tidy_bytes which is used on the UTF-8 string before transliterating.
2019-07-26 12:18:01 -04:00
Cliff Pruitt
369daa530d Handle US-ASCII strings with invalid characters in transliterate
US-ASCII is a subset of UTF-8 so we can temporarily convert US-ASCII strings to UTF-8 to perform the transliteration. After we've converted characters to ASCII representations, we can set the encoding back to US-ASCII to return the same encoding we accepted.
2019-07-26 12:18:01 -04:00
Cliff Pruitt
0cdaa38dd1 Add encoding tests for ActiveSupport::Inflector.transliterate 2019-07-26 12:18:01 -04:00
Cliff Pruitt
5b0a805c6a Raise errors for ASCII-8BIT encoding in ActiveSupport::Inflector::transliterate
Adds ArgumentErrors to `ActiveSupport::Inflector::transliterate` if a string is  with ASCII-8BIT which will raise an error in `unicode_normalize`.
2019-07-26 12:18:01 -04:00
Willian Gustavo Veiga
64631d83c5 Add test for submitted fields within disabled fieldsets 2019-07-26 12:59:23 -03:00
Abhay Nikam
8fdf6d934e Removed webpacker:compile step from scaffold test as it is not required and assets are already precompiled in build_app step 2019-07-26 20:20:07 +05:30
Edouard CHIN
5a4acf7ac4 Prettify diff generated by git for encripted file:
- @sinsoku had the idea and started implementing it few months ago
  but sadly didn't finish it.
  This PR is taking over his work.

  The credentials feature has changed a lot since @sinsoku opened hi
  PR, it was easier to just restart from scratch instead of checking
  out his branch.
  Sinsoku will get all the credit he deserves for this idea :)

  TL;DR on that that feature is to make the `git diff` or `git log`
  of encrypted files to be readable.

  The previous implementation was only setting up the git required
  configuration for the first time Rails was bootstraped, so I decided
  to instead provide the user a choice to opt-in for readable diff
  credential whenever a user types the `bin/rails credentials:edit`
  command.
  The question won't be asked in the future the user has already
  answered or if the user already opted in.

  Co-authored-by: Takumi Shotoku <insoku.listy@gmail.com>
2019-07-26 16:28:51 +02:00
Takayuki Nakata
285f081e1d Fix join middle table alias when using HABTM
In using HABTM, join middle table alias is combined with the associated
models name without sort, while middle table name is combined with those
models name with sort.

Fixes #36742.
2019-07-26 23:12:44 +09:00
Sharang Dashputre
b00a183aa1 Add a default value for arg format in ActionView::Digestor.digest() 2019-07-26 15:22:43 +05:30
ajn123
85a08fe671 [ci skip] add CSRF token explanation for javascript documentation 2019-07-26 00:54:38 -05:00
st0012
5745a3c092 Add Vary: Accept header when rendering
Problem description (quoted from @rafaelfranca's excellent explanation in https://github.com/rails/jquery-ujs/issues/318#issuecomment-88129005):

> Let say that we requested /tasks/1 using Ajax, and the previous page has the same url. When we click the back button the browser tries to get the response from its cache and it gets the javascript response. With vary we "fix" this behavior because we are telling the browser that the url is the same but it is not from the same type what will skip the cache.

And there's a Rails issue discussing about this problem as well https://github.com/rails/rails/issues/25842

Also, according to [RFC 7231 7.1.4](https://tools.ietf.org/html/rfc7231#section-7.1.4)

>  An origin server SHOULD send a Vary header field when its algorithm
>  for selecting a representation varies based on aspects of the request
>  message other than the method and request target

we should add `Vary: Accept` header when determining content based on the `Accept` header.

Although adding such header by default could cause unnecessary cache invalidation. But this PR only adds the header if:
- The format param is not provided
- The request is a `xhr` request
- The request has accept headers and the headers are valid

So if the user
- sends request with explicit format, like `/users/1.json`
- or sends a normal request (non xhr)
- or doesn't specify accept headers

then the header won't be added.

See the discussion in https://github.com/rails/rails/issues/25842 and
https://github.com/rails/rails/pull/36213 for more details.
2019-07-26 13:52:06 +08:00
Rafael França
41bc4c6207
Merge pull request #36300 from okuramasafumi/make-handle-options-private
Make `handle_options` method private
2019-07-26 00:07:48 -04:00
Rafael França
a11a7b2c7b
Merge pull request #35334 from sharang-d/digest-doc-update
Update comment for ActionView::Digestor.digest [ci skip]
2019-07-26 00:01:08 -04:00
Rafael França
4d6bbf02ba
Merge pull request #36180 from jonathanhefner/optimize-string-from
Avoid extra allocation in String#from and #to
2019-07-25 23:53:59 -04:00
yuuji.yaginuma
971cd757ea Use correct variable in secure_compare!
`Messages::Rotator` has `@on_rotation` not `@rotation`.
72bc0806a7/activesupport/lib/active_support/messages/rotator.rb (L11)
2019-07-26 12:51:53 +09:00
Rafael França
e5dc101cc5
Merge pull request #36005 from shioyama/plain_matcher_first
Make plain matcher match first, not last
2019-07-25 23:51:19 -04:00
Rafael França
f72118577d
Merge pull request #36504 from mtsmfm/mtsmfm/fix-flaky-render-test
Fix flaky test ActionControllerBaseRenderTest#test_direct_render_to_string
2019-07-25 23:49:06 -04:00
Fumiaki MATSUSHIMA
6c69ff436a Fix flaky test ActionControllerBaseRenderTest#test_direct_render_to_string 2019-07-26 12:29:58 +09:00
George Claghorn
72bc0806a7 Correct assertion argument order 2019-07-25 22:34:40 -04:00
Rafael Mendonça França
64f4d7fcb0
Merge pull request #36576 from mtsmfm/mtsmfm/fix-fixture-resolver
Support :any variants for ActionView::FixtureResolver
2019-07-25 22:24:31 -04:00
Rafael França
30757a1692
Merge pull request #36767 from vlado/active_job_test_helper_can_now_handle_relative_at_options
Ability to test activejobs with relative delay
2019-07-25 22:18:05 -04:00
Rafael França
e53e253280
Merge pull request #36765 from kylekeesling/patch-1
fix filenames of attachments created via the inbound email conductor
2019-07-25 22:14:37 -04:00
y-yagi
65dcc9d159
Merge pull request #36747 from y-yagi/add_mention_about_collection_cache_versioning
Add mention about `active_record.collection_cache_versioning` to the `new_framework_defaults.rb`
2019-07-26 10:24:52 +09:00
Kyle Keesling
ce88f6bd25
Fix filenames of attachments created via the inbound email conductor
controller passed along attachment file paths instead of their filenames
2019-07-25 21:11:29 -04:00
Eileen M. Uchitelle
0989956007
Merge pull request #36770 from seejohnrun/database-env-current-env-only
Only merge DATABASE_URL settings into the current env
2019-07-25 20:30:48 -04:00
John Crepezzi
5e260574a4 Only merge DATABASE_URL settings into the current env
This commit fixes a regression where when the `DATABASE_URL` environment
variable was set and the current Rails environment had a valid configuration
defined in the database config, settings from the environment variable would
affect _all_ environments (not just the current one).
2019-07-25 20:14:21 -04:00
John Hawthorn
d45507b931
Merge pull request #36731 from jhawthorn/dir_glob_base_instead_of_chdir
Use Dir.glob(base: ...) to avoid chdir
2019-07-25 16:31:08 -07:00
Vlado Cingel
10d0f48ad8 Ability to test activejobs with relative delay
`assert_enqueued_with` and `assert_performed_with` were not able to
properly test jobs with relative delay. `:at` option was asserted for
equality and test will always fail cause small fraction of time will
pass between job call and assertion.

This commit fixes that by droping microseconds from `:at` argument
assertions.
2019-07-26 00:41:15 +02:00
John Hawthorn
ec7aa03c98
Merge pull request #36766 from jhawthorn/call_connection_error_number
Use connection.error_number in MySQLDatabaseTasks
2019-07-25 14:54:44 -07:00
Kasper Timm Hansen
04093884a1
Fixup 64a430129f 2019-07-25 23:34:02 +02:00
Kasper Timm Hansen
64a430129f
Use binding.local_variable_get for :for
Simplifies the surrounding code outside `convert_value`.

Ref: https://github.com/rails/rails/pull/36758
2019-07-25 23:25:59 +02:00
Rafael Mendonça França
579864f79c
Merge pull request #36380 from edudepetris/ed/36272-better-negative-scope-warning
Add a warning for enum elements with 'not_' prefix.
2019-07-25 17:18:41 -04:00
John Hawthorn
15c81c8ed4 Use connection.error_number in MySQLDatabaseTasks
MySQLDatabaseTasks, like AbstractMysqlAdapter, should be able to operate
on any mysql adapter, not just mysql2. Errors having a .error_number
attribute is a mysql2 specific API, which we (Rails) don't control, so
we should instead use connection.error_number(err), which we do.

This also updates tests to better test how this really works, previously
it stubbed create_database to raise Tasks::DatabaseAlreadyExists, which
can never happen.
2019-07-25 14:15:39 -07:00
Xavier Noria
59c6d29ffa let autoloaded? support modules with overridden names [closes #36757] 2019-07-25 23:14:29 +02:00
Andrew Kress
7f21e04e61 read configuration to determine excluded eager loaded directory (#36354)
* read config/webpacker.yml to determine which path to exclude for zeitwerk:check

* fix test errors

* more changes to fix test errors

* refactor webpacker_path

[Andrew Kress + Rafael Mendonça França]
2019-07-25 17:10:59 -04:00
Rafael França
bd5edc2970
Merge pull request #36318 from itsWill/fix_event_object_payload
Merge payload for EventObject subscribers
2019-07-25 16:47:03 -04:00
Rafael Mendonça França
c9b7b9ff8a
Merge pull request #36412 from robotdana/compact_blank
Add compact_blank shortcut for reject(&:blank?)
2019-07-25 16:18:18 -04:00
Willian Gustavo Veiga
c3e786fc48 Issue #36728 - Inputs inside disabled fieldset are not submited on remote: true forms 2019-07-25 16:07:11 -03:00
Rafael França
706ee3eb49
Merge pull request #36758 from jturkel/feature/hash-optimization
Avoid unnecessary hash allocation in HashWithIndifferentAccess#convert_value
2019-07-25 14:25:50 -04:00
Rafael França
8ff7efef6c
Merge pull request #34201 from Edouard-chin/ec-follow-redirect-307
fix `follow_redirect!` not using the same HTTP verb on 307 redirection:
2019-07-25 13:43:08 -04:00
Edouard CHIN
1969f40a3a fix follow_redirect! not using the same HTTP verb on 307 redirection:
- According to the HTTP 1.1 spec, the 307 redirection guarantees that
  the method and the body will not be changed during redirection.

  This PR fixes that since follow_redirect! would always follow the
  redirection my making a GET request.

  Ref https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/307
2019-07-25 18:57:07 +02:00
Rafael França
53d9bb9a92
Merge pull request #36762 from Shopify/descendants-tracker-cleanup
Optimize DescendantsArray insertions
2019-07-25 12:56:15 -04:00
Jean Boussier
62a1d7e9c1 Optimize DescendantsArray insertions 2019-07-25 11:37:39 -04:00