| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
The runtime header is a potential target for timing attacks since it
returns the amount of time spent on the server (eliminating network
speed). Total time is also not accurate for streaming responses.
The middleware can be added back via:
```ruby
config.middleware.ues ::Rack::Runtime
```
|
|\
| |
| | |
Do not document private methods in AJ::TestHelper
|
|/
|
|
| |
[CI skip]
|
|\
| |
| | |
[ci skip] Fix explanation of `ActiveModel::Serialization`
|
| |
| |
| |
| |
| |
| | |
This explanation was change by https://github.com/rails/rails/commit/7a27de2b.
This change reversed the including module (`ActiveModel::Serializers::JSON`)
and the included module (`ActiveModel::Serialization`) by mistake.
|
|\ \
| | |
| | | |
Remove unused scopes
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
For reads, we never need to construct this object. The double `defined?`
check is to avoid errors in tests
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
mtsmfm/xmlschema-should-display-more-than-6-digits
TimeWithZone#xmlschema should be able to display more than 6 digits
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Fix AC::Parameters not being sanitized for query methods.
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
I misread this test in
https://github.com/rails/rails/commit/1a693c79c32cba070256fdb7bd1990c3d07d554f
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
There were a few places where I missed a `create` vs `new`
before_type_cast check, and the semantics of `reload` became wrong.
|
|/ / / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
We can skip the allocation of a full `AttributeSet` by changing the
semantics of how we structure things. Instead of comparing two separate
`AttributeSet` objects, and `Attribute` is now a singly linked list of
every change that has happened to it. Since the attribute objects are
immutable, to apply the changes we simply need to copy the head of the
list.
It's worth noting that this causes one subtle change in the behavior of
AR. When a record is saved successfully, the `before_type_cast` version
of everything will be what was sent to the database. I honestly think
these semantics make more sense, as we could have just as easily had the
DB do `RETURNING *` and updated the record with those if we had things
like timestamps implemented at the DB layer.
This brings our performance closer to 4.2, but we're still not quite
there.
|
|\ \ \ \
| |_|/ /
|/| | | |
Response#add_header for adding to multi-valued headers like Vary
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
Don't set a nil Set-Cookie header when there aren't any cookies
|
|/ / /
| | |
| | |
| | | |
header.
|
|\ \ \
| | | |
| | | | |
adding test for content type with default charset
|
|/ / /
| | |
| | |
| | |
| | | |
* first test is for `default_charset` i.e `ActionDispatch::Response.default_charset = “utf-8”`
* In below test we are passing `ActionDispatch::Response.default_charset = 'utf-16’` so name of the test is irrelevant — “read content type without charset”
|
|\ \ \
| | | |
| | | | |
Regex fix for mattr_accessor validation
|
|/ / /
| | |
| | |
| | |
| | | |
Change ^ and $ operators to \A and \z to prevent
code injection after the line breaks
|
|\ \ \
| | | |
| | | | |
Refactor AS::Callbacks halt config and fix the documentation
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Move from `AS::Callbacks::CallbackChain.halt_and_display_warning_on_return_false`
to `AS::Callbacks.halt_and_display_warning_on_return_false` base on
[this
discussion](https://github.com/rails/rails/pull/21218#discussion_r39354580)
Fix the documentation broken by 0a120a818d413c64ff9867125f0b03788fc306f8
|
|\ \ \
| | | |
| | | | |
Added test cases for checkbox_tag
|
|/ / / |
|
| | |
| | |
| | |
| | |
| | | |
this should fix the error where isolation tests raise an exception and
we just get a marshal error
|
|\ \ \
| | | |
| | | | |
Add test cases for text_field_tag
|
|/ / / |
|
| | | |
|
|/ / |
|
|\ \
| | |
| | |
| | |
| | |
| | |
| | | |
Allow fixtures YAML files to set the model class in the file itself
Conflicts:
activerecord/CHANGELOG.md
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Currently, `set_fixture_class` is only available using the
`TestFixtures` concern and it is ignored for `rake db:fixtures:load`.
Using the correct model class, it is possible for the fixture load
to also load the associations from the YAML files (e.g., `:belongs_to`
and `:has_many`).
|
|\ \ \
| | | |
| | | | |
Fixed concurrent-ruby warnings.
|
|/ / /
| | |
| | |
| | |
| | | |
Bumped version of concurrent-ruby to 1.0.0.pre3, which fixes all
interpreter warnings.
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
`default_middleware_stack` seems to kick off the `on_load` calls that
may mutate the middleware stack. We have to call that method before
merging middleware stacks, otherwise the middleware stacks get mutated
*after* the app middleware stack is built.
|
| | |
| | |
| | |
| | |
| | | |
We shouldn't merge the app middleware in to the config middleware for
engines.
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
jeremy/sprockets/move-asset-manifest-from-toplevel-to-config-subdir
Eliminate overlapping `app/assets` load path
|
| | |/
| |/|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* Move `app/assets/manifest.js` to `app/assets/config/manifest.js`.
Avoid the suggestion that you can/should deep-link `stylesheets/foo`.
* Pull in all toplevel stylesheets and JavaScripts, not just
`application.js` and `.css`. Demonstrate how to use `link_directory`
with a specified `.js`/`.css` type.
* Fix RAILS_ENV handling in assets tests.
* Shush warnings spam from third-party libs that distract from tests.
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | | |
Allocating a new middleware proxy in each application configuration and
then merging the app specific config with the global config when the app
is built.
|
|\ \ \
| | | |
| | | | |
Improve readability of docs by using code tag [ci skip]
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | | |
Fix documentation for has_many dependant options.
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | | |
* A `has_many` dependant association accepts `[:destroy, :delete_all, :nullify,
:restrict_with_error, :restrict_with_exception]` as options.
Currently the documentation references `delete` instead of `delete_all`
* Adds documentation for other options
|
|\ \ \
| | | |
| | | | |
Add fail fast reporting to test runner.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Passing `--fail-fast` to the test runner will now abort the test run
on the first failure. The run continues on any unexpected errors.
|