| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| | |
Fix CI failure caused by df84e9867219e9311aef6f4efd5dd9ec675bee5c
|
| | |
|
|\ \
| |/
|/| |
Doc on scoped has_many, dependent: :destroy
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This is to close #26111
Developers need to be aware that `dependent: :destroy` on a scoped
`has_many` association would only destroy the associated objects in
that scope. Potentially leaving other associated objects outside that
scope untouched.
|
| |
| |
| | |
Include the content of the flash in the auto-generated etag
|
|\ \
| | |
| | | |
Update docs with Action Cable Redis dependency
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Action Cable's test `test/subscription_adapter/redis_test.rb` fail if
Redis is not installed and running.
Following the guides `development_dependen there's no mention to this.
|
| | |
| | |
| | |
| | |
| | | |
Now the schema dumper by default doesn't align the types and arguments
in the ruby format anymore.
|
|\ \ \
| | | |
| | | | |
Remove `:action` and `:controller` segments from routing guide
|
|/ / /
| | |
| | |
| | |
| | | |
Fixes #26247.
[ci skip]
|
|\ \ \
| |/ /
|/| | |
Specified directories for routes, views and jobs tests
|
| | |
| | |
| | |
| | |
| | | |
* Added location for route, view and job tests to section 2.1. (They are currently only defined in sections 8 Testing Views and 11 Testing Jobs.)
* Added location for route test in section 7 Testing Routes. (Currently only defined in section 8 Testing Views.)
|
|\ \ \
| | | |
| | | | |
Return 307 status instead of 301 when rerouting POST requests to SSL
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
When `config.force_ssl` is set to `true`, any POST/PUT/DELETE requests coming in to non-secure url are being redirected with a 301 status.
However, when that happens, the request is converted to a GET request and ends up hitting a different action on the controller.
Since we can not do non-GET redirects, we can instead redirect with a 307 status code instead to indicate to the caller that a fresh request should be tried preserving the original request method.
`rack-ssl` gem which was used to achieve this before we had this middleware directly baked into Rails also used to do the same, ref: https://github.com/josh/rack-ssl/blob/master/lib/rack/ssl.rb#L54
This would be specially important for any apps switching from older version of Rails or apps which expose an API through Rails.
|
|\ \ \ \
| |/ / /
|/| | | |
Change form of table name to plural in quering interface guides [ci skip]
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
Fix `ActionDispatch::Http::URL` docs [ci skip]
|
| | | |
| | | |
| | | |
| | | | |
Use ActionDispatch::Request instead of Request because ActionDispatch::Request no longer inherits from Rack::Request.
|
|\ \ \ \
| | | | |
| | | | | |
Upate guides to properly define return values of finder methods
|
| |/ / /
| | | |
| | | |
| | | | |
instance of ActiveRecord::Relation
|
|\ \ \ \
| | | | |
| | | | | |
Prevent invocation of channel action if rejected connection
|
| | |_|/
| |/| |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Fixes #23757.
Before this commit, even if `reject` was called in the `subscribe`
method for an Action Cable channel, all actions on that channel could
still be invoked. This calls a `return` if a rejected connection tries
to invoke any actions on the channel.
|
|\ \ \ \
| |_|/ /
|/| | | |
remove unnessary `session_store` setting
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Since e5a6f7ee9e951dbe0e4e9ea2c0743b4dfb135c57, by default the session store
will be set to cookie store with application name as session key.
|
|\ \ \ \ |
|
| | | | |
| | | | |
| | | | |
| | | | | |
it is used in context of a command like bin/rails or the rails directory [ci skip]
|
| | | | |
| | | | |
| | | | |
| | | | | |
is that we are referring to. [ci skip]
|
| | | | |
| | | | |
| | | | |
| | | | | |
- Followup of https://github.com/rails/rails/pull/26125.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Increase margin-bottom for doc's code syntax highlighter
|
| | |_|/ /
| |/| | |
| | | | |
| | | | |
| | | | |
| | | | | |
Fixes #25744 by slightly increasing the margin in code syntax
highlights. With a margin of 0, it was cutting off underscores in Linux
browesers, so I slightly increased it to 0.5px.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Fix `OID::Bit#cast_value`
|
| |/ / / /
| | | | |
| | | | |
| | | | | |
Fixes #26137.
|
|\ \ \ \ \
| |_|_|/ /
|/| | | | |
correct exception class in `retry_on` example [ci skip]
|
|/ / / /
| | | |
| | | |
| | | |
| | | | |
If the deadlock has occurred `ActiveRecord::Deadlocked` will raise.
Ref: #25107, #26059
|
|\ \ \ \
| |/ / /
|/| | | |
Consistent examples and template for assets#precompile
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Listening to a few developers today discussing their troubles in understanding how to use the asset pipeline, it turns out that the precompile examples in the guides and assets.rb template have over time become a bit inconsistent.
This PR makes the examples consistent in code style, spacing, and asset names, removes the old 'swfObject.js' example, and in a couple of places wraps lines at 80 characters including in the assets.rb template.
Re-add spaces inside array parentheses.
|
|\ \ \ \
| | | | |
| | | | | |
Remove unused `blob_or_text_column?` method
|
| | | | | |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Remove unnecessary `length` method for collection proxy
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
`length` is delegated to `records` (`load_target`) by
`ActiveRecord::Delegation`.
https://github.com/rails/rails/blob/v5.0.0/activerecord/lib/active_record/relation/delegation.rb#L38
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
evmunro/as-json-sets-request-to-json-for-controller-test
Allow setting of request CONTENT-TYPE with as: in controller tests
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Documentation & testing
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | |
| | | | | | | |
Option not to line up column attributes in schema.rb
|
| |\| | | | | |
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
[Rafael Mendonça França + Robin Dupret]
|
|\ \ \ \ \ \ \
| |_|_|/ / / /
|/| | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
kamipo/remove_text_default_treated_as_empty_string
Remove text default treated as an empty string in non-strict mode
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Strict mode controls how MySQL handles invalid or missing values in
data-change statements such as INSERT or UPDATE. If strict mode is not
in effect, MySQL inserts adjusted values for invalid or missing values
and produces warnings.
```ruby
def test_mysql_not_null_defaults_non_strict
using_strict(false) do
with_mysql_not_null_table do |klass|
record = klass.new
assert_nil record.non_null_integer
assert_nil record.non_null_string
assert_nil record.non_null_text
assert_nil record.non_null_blob
record.save!
record.reload
assert_equal 0, record.non_null_integer
assert_equal "", record.non_null_string
assert_equal "", record.non_null_text
assert_equal "", record.non_null_blob
end
end
end
```
It is inconsistent with other types that only text/blob defaults treated
as an empty string. This commit fixes the inconsistency.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Revert "`sql_for_insert` returns values for passing to `exec_insert`"
|