| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| | |
[ci skip] Concludes changelog links in the bottom.
|
|/
|
|
| |
This way when we do next release notes, this would be easier to copy and change.
|
|
|
|
|
|
| |
This reverts commit a03097759bd7103bb9db253e7ba095f011453f75.
This needs more work before it would work correctly on master.
|
|
|
|
|
|
|
|
| |
Fixed issue with ActiveRecord serialize object as JSON
Conflicts:
activerecord/CHANGELOG.md
activerecord/lib/active_record/attribute_methods/serialization.rb
|
|\
| |
| | |
If our connection is explicitly non-strict, tell MySQL
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
We default to making the connection strict, but have historically relied
on the MySQL default when we want it to be non-strict. On some (recent?)
versions of MySQL, new connections default to being strict, so if we've
been told 'strict:false', we're obliged to pass that on.
This fixes a test failure that we've seen turn up on relatively-new
development machines, so we do already have a test covering it.
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
One of the author fixture we have ("david") references an author address by ID.
Since we disable FK checks when inserting fixtures, this is all fine until we
try to update it, at which point MySQL would complain about the missing row
referenced by the `author_address_id`.
[Godfrey Chan, Matthew Draper]
|
| |
| |
| |
| | |
This reverts commit e84799d, e31104c and e6ca8e2
|
|\ \
| | |
| | | |
Use the type object for quoting PG Ranges
|
| | | |
|
| | | |
|
| | | |
|
|/ /
| |
| |
| |
| | |
Removed mentions of non-existent methods, also added a mention for
`Date.current`, which is analagous to `Time.current`. Closes #16061.
|
| | |
|
| | |
|
|\ \
| | |
| | | |
Add a `required` option to singular associations
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
In addition to defining the association, a `required` association will
also have its presence validated.
Before:
```ruby
belongs_to :account
validates_presence_of :account
```
After:
```ruby
belongs_to :account, required: true
```
This helps to draw a distinction between types of validations, since
validations on associations are generally for data integrity purposes,
and aren't usually set through form inputs.
|
|\ \
| |/
|/| |
Revert "Use a type object for type casting behavior on SQLite3"
|
|/ |
|
| |
|
| |
|
|\
| |
| | |
Remove symbolized_path_parameters.
|
| |
| |
| |
| | |
This pull request is a continuation of https://github.com/rails/rails/commit/925bd975 and https://github.com/rails/rails/commit/8d8ebe3d.
|
|\ \
| | |
| | | |
Use a type object for type casting behavior on SQLite3
|
| | |
| | |
| | |
| | |
| | | |
Note: I'm not sure we actually need to be logging when this happens.
This code would be a fair bit cleaner if we didn't need to log it.
|
|\ \ \
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
cade/fix_counter_cache_count_with_association_selects
Add `:all` argument to `count` in `reset_counters`
Conflicts:
activerecord/CHANGELOG.md
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Prior to this fix, if an association had a scope with a `select`,
calls to `reset_counters` would generate invalid SQL and throw:
ActiveRecord::StatementInvalid: [$DB_ADAPTER]: wrong number of
arguments to function COUNT()
References #10710, #13648
|
|\ \ \ \
| | | | |
| | | | | |
Improve token_and_options regex and test
|
| | | | |
| | | | |
| | | | |
| | | | | |
add a test case to test the regex for the helper method raw_params
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Add arel to the controller template [ci skip]
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Add test coverage for the action mailer
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
[ci skip] /javascript/ -> JavaScript - cover whole app
|
| | |/ / / / /
| |/| | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
After find-via-reload, the record is not new
|
| | |/ / / / /
| |/| | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Do not load rails without loading bundler
|
| | | | | | | | |
|
|\ \ \ \ \ \ \ \
| |_|/ / / / / /
|/| | | | | | | |
Remove unneccessary special case for money in quoting
|
| | | | | | | | |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Display notice in index.html pages in scaffolded generated views
|
|/ / / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
As we are setting notice in destroy action we should display that
For more information see https://github.com/rails/rails/pull/14044
And https://github.com/rails/jbuilder/pull/191
closes #14044
|
| |_|/ / / / /
|/| | | | | |
| | | | | | | |
This has changed since around 2b1500d6
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Fix guide. sample code syntax error.[ci skip]
|
| |/ / / / / / |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Do not rely on the column type when quoting infinity
|
| |/ / / / / / |
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
Use the type object for type casting HStore columns
|
|/ / / / / / |
|