| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
wangjohn/change_name_of_query_method_argument_checker_for_clarity
Renaming the check_empty_arguments method to something more descriptive.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
The function is now called has_arguments? so that it's easier to tell
that it's just checking to see if the args are blank or not.
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| |/ / / /
|/| | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This reverts commit bb842e8d2111e50b21a14b8bd6d89371a4b9cd68, reversing
changes made to 40c287c7983c20c498f6a8a2ea49e9a6455347f7.
This was causing issues in one of our apps we just upgraded.
ActionController::RoutingError: No route matches [GET]
"/images/favicon.ico"
favicon_link_tag now returns '/images/favicon.ico' and in 3.2 returned
'/favicon.ico'
Browsers by default look for favicon.ico in the root directory
Conflicts:
actionpack/CHANGELOG.md
actionpack/lib/action_view/helpers/asset_tag_helper.rb
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
unify AR changelog entries [ci skip]
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
also rename indexes when a table or column is renamed
|
|/ / / / /
| | | | |
| | | | |
| | | | | |
When a table or a column is renamed related indexes kept their name. This will lead to confusing names. This patch renames related indexes when a column or a table is renamed. Only indexes with names generated by rails will be renamed. Indexes with custom names will not be renamed.
|
| | | | | |
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
deal with long index names and internal sqlite3 operations
|
| | | | | |
|
|/ / / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Some adapter (SQLite3) need to perform renaming operations to support
the rails DDL. These rename prefixes operate with prefixes. When an
index name already uses up the full space provieded by
`index_name_length` these internal operations will fail. This patch
introduces `allowed_index_name_length` which respects the amount of
characters used for internal operations. It will always be <=
`index_name_length` and every adapter can define how many characters
need to be reserved.
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | | |
wangjohn/adding_documentation_to_error_raising_in_query_methods
Tests to make sure empty arguments in WhereChain raise errors
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
for query methods in a where_clause. Also, modified the CHANGELOG entry
because it had false information and added tests.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Fix ActiveRecord::ConnectionAdapters::ConnectionSpecification::ResolverTest
|
| |/ / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Reduced memory leak problem in transactions by lazily updating AR objects
|
| |/ / / /
| | | | |
| | | | |
| | | | | |
with new transaction state. If AR object has a callback, the callback will be performed immediately (non-lazily) so the transaction still has to keep records with callbacks.
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
move config.assets.precompile into config/application.rb
|
| | | | | |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
fix rake db:migrate when used with ENV['DATABASE_URL']
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
|/ / / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
make connection_url_to_hash a class method
This als prevents loading database.yml if it doesn't exist
but DATABASE_URL does
|
|\ \ \ \
| | | | |
| | | | | |
Remove XML Parser from ActionDispatch
|
|/ / / /
| | | |
| | | |
| | | |
| | | | |
If you want an ability to parse XML parameters, please install
`actionpack-xml_parser` gem.
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | |
| | | |
| | | | |
senny/7313_descriptive_error_message_for_missing_adapter
descriptive error message when AR adapter was not found. Closes #7313
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
Fix time_zone_options_for_select to not mutate TimeZones array
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Previous implementation of time_zone_options_for_select did not dup the
ActiveSupport::TimeZone.all array. When :priority_zones were provided
the method would reject! the zones from the memoized TimeZones array
thus affecting future requests to the server. Essentially whatever
zones were specified as :priority_zones would show up for the first
request but then disappear from the time zone options on future
requests.
|
|\ \ \ \
| |/ / /
|/| | | |
Improve upgrading guide with ActionDispatch::BestStandardsSupport remova...
|
|/ / / |
|
| | | |
|
|\ \ \
| | | |
| | | | |
added more accurate test for add_on_empty
|
| | | |
| | | |
| | | |
| | | |
| | | | |
with the current tests, if delete the assignment of is_empty in add_on_empty method
the tests not fail. With this test, if we delete is_empty, the test fails
|
| | | | |
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | |
| | | |
| | | | |
Takehiro-Adachi/remove-unecessary-tests-from-ar-base_testrb
delete duplicated tests in AR base_test.rb
|
| | | |
| | | |
| | | |
| | | | |
These are duplicated with the tests which are in relations_test.rb
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Raising an error when query methods have blank arguments.
|