| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| | |
Reset Capybara sessions if failed system test screenshot raising an exception
|
| |
| |
| |
| |
| | |
Reset Capybara sessions if `take_failed_screenshot` raise exception
in system test `after_teardown`.
|
|\ \
| | |
| | | |
Adjust bind length of SQLite to default (999)
|
| | |
| | |
| | |
| | |
| | | |
Change `#bind_params_length` in SQLite adapter to return the default
maximum amount (999). See https://www.sqlite.org/limits.html
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
bogdanvlviv/ensure-that-connected_to-establish_connection
Ensure that `ActiveRecord::Base#connected_to` with `:database` establishes connection
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
connection
Related to #34052
|
|\ \ \ \
| | | | |
| | | | | |
Add support for UNLOGGED Postgresql tables
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This commit adds support for the
`ActiveRecord::ConnectionAdapters::PostgreSQLAdapter.create_unlogged_tables`
setting, which turns `CREATE TABLE` SQL statements into
`CREATE UNLOGGED TABLE` statements.
This can improve PostgreSQL performance but at the
cost of data durability, and thus it is highly recommended
that you *DO NOT* enable this in a production environment.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Fix ignored options in the `#added?` method
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Fixes #34416
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Add an alias for the --webpack option
|
|/ / / / / / |
|
|\ \ \ \ \ \
| |_|/ / / /
|/| | | | | |
Ignore warnings such as `Psych.safe_load is deprecated`
|
|/ / / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Addressing warnings are important but it should be out of this test scope.
https://travis-ci.org/rails/rails/jobs/454145524#L4122-L4131
```
.F
Failure:
ApplicationTests::BinSetupTest#test_bin_setup_output [test/application/bin_setup_test.rb:49]:
--- expected
+++ actual
@@ -1,4 +1,5 @@
"== Installing dependencies ==
+warning: Passing permitted_classes with the 2nd argument of Psych.safe_load is deprecated. Use keyword argument like Psych.safe_load(yaml, permitted_classes: ...) instead.
The Gemfile's dependencies are satisfied
== Preparing database ==
rails test test/application/bin_setup_test.rb:38
```
|
|\ \ \ \ \
| |_|_|/ /
|/| | | | |
Make `PERMITTED_TYPES` private
|
|/ / / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
The constant `PERMITTED_TYPES` is only used by the private method
`serialize_argument` and it already has the `# :nodoc:` annotation as
the other constants in the class.
Complements e899e22
|
|\ \ \ \
| |_|/ /
|/| | |
| | | |
| | | | |
eugeneius/rm_ensure_from_with_transaction_returning_status
Remove ensure from with_transaction_returning_status
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
The test added in 12b0b26df7560ab5199ba830586864085441508f passes even
without this code since 9b8c7796a9c2048208aa843ad3dc477dffa8bdee, as the
call to `id` in `remember_transaction_record_state` now triggers a
`sync_with_transaction_state` which discards the leftover state from the
previous transaction.
This issue had already been fixed for `save!`, `destroy` and `touch` in
caae79a385ce112245262a17414bcd96bea013c2, but continued to affect `save`
because the call to `rollback_active_record_state!` in that method would
increment the transaction level before `add_to_transaction` could clear
it, preventing the fix from working correctly.
As `rollback_active_record_state!` was removed entirely in
48007d5390db47fc1223f57c8e7ab3ebb7c3a3d7, this code is no longer needed.
|
|\ \ \ \
| |/ / /
|/| | |
| | | |
| | | | |
albertoalmagro/include-big-decimal-as-supported-type
Document missing supported types [ci skip]
|
| | | |
| | | |
| | | |
| | | |
| | | | |
This commit adds missing types to the supported types list, which
was extended in #30941
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Follow up a741208f80dd33420a56486bd9ed2b0b9862234a.
Since a741208, `Decimal#serialize` which is superclass of `Money` type
is no longer no-op, so it consistently serialize/deserialize a value as
a decimal even if schema default.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Related 34cc301f03aea2e579d6687a9ea9782afc1089a0.
`QueryAttribute#value_for_database` calls only `type.serialize`, and
`Decimal#serialize` is a no-op unlike other attribute types.
Whether or not `serialize` will invoke `cast` is undefined in our test
cases, but it actually does not work properly unless it does so for now.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
albertoalmagro/use-assert-not-instead-of-refute"
This reverts commit ab5d5c95ec51c63d58d7e75694af748f165e2228, reversing
changes made to ef4f5ef69b5a50c897bbb17f6b36b729dff12e6c.
|
|\ \ \ \
| |/ / /
|/| | | |
Prefer assert_not instead of refute [ci skip]
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
As mentioned in the contributing to Ruby on Rails guides,
we should prefer `assert_not` instead of `refute`. And the
best place to start giving example are our bug report templates..
See: https://github.com/rails/rails/blame/master/guides/source/contributing_to_ruby_on_rails.md#L256
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
Fix typo for Action Cable Overview doc
[Eileen M. Uchitelle]
|
| | | |
| | | |
| | | |
| | | | |
[ci skip]
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Clarify the validation of present associations
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
I think that it is not clear what means that _an association is
present_. Add that it is checking that the foreign key is not empty and
that the referenced object exists to clarify it.
|
|\ \ \ \ \
| |_|_|/ /
|/| | | |
| | | | | |
Docs: Update Development Dependencies Install
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* Move all the testing related stuff to the contributing guide and
redirect the reader to this guide once the installation process
is finished as running tests is the logical next step.
* Group documentation instructions by OS, not by gem
* It eases the installation process and lessen the need to scroll
through the guide
* There's still a list of all additional services required for each
of the gems above the instructions for each OS.
* Also update a bit the instructions
* Update some package names
* Add `yarn` to the package list for Arch Linux and FreeBSD
* Use `dnf` instead of `yum` for Fedora and CentOS
* Advise the user to use `brew bundle` on macOS to lessen the
maintenance burden for this OS and ease the process for the user.
[ci skip]
|
| | | | |
| | | | |
| | | | |
| | | | | |
https://github.com/rails/rails/pull/30941/files#diff-fc90ec41ef75be8b2259526fe1a8b663L53
|
| | | | |
| | | | |
| | | | |
| | | | | |
Follow up #34131.
|
| | | | |
| | | | |
| | | | |
| | | | | |
Related to: #34406
|
| | | | |
| | | | |
| | | | |
| | | | | |
Use `t.index ...` instead.
|
| | | | | |
|
| | | | | |
|
| |_|_|/
|/| | |
| | | |
| | | | |
Since quoted `Infinity` and `NaN` are valid data for PostgreSQL.
|
|\ \ \ \
| | | | |
| | | | | |
Add an :if_not_exists option to create_table
|
| | | | |
| | | | |
| | | | |
| | | | | |
[fatkodima & Stefan Kanev]
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Remove unused argument `expected_database`
|
| |/ / / /
| | | | |
| | | | |
| | | | | |
This argument was added in fa5a028ed9f, and #34137 but hasn't been used.
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Use RuboCop 0.60.0 and remove exclude files for `Style/RedundantFreeze`
|
|/ / / /
| | | |
| | | |
| | | |
| | | | |
Since https://github.com/rubocop-hq/rubocop/pull/6333 has been
included into RuboCop 0.60.0.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
`Webpacker` handles testing / development packs separately by default.
If do not specify `RAILS_ENV`, there is no merit to precompile.
|
|\ \ \ \
| | | | |
| | | | |
| | | | | |
Guard Enums against definitions with blank label names
|
| | | | | |
|