Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
2.15.2
->2.15.4
1.79.3
->1.79.12
5.1.3
->5.1.4
7.1.3.4
->7.2.2
4.0.1
->4.2.0
8.4.45
->8.4.47
4.3.0
->4.4.0
1.63.3
->1.68.0
3.3.3
->3.3.5
3.4.10
->3.4.14
5.4.6
->5.4.10
3.5.4
->3.5.12
Release Notes
Kong/sdk-portal-js (@kong/sdk-portal-js)
v2.15.4
Compare Source
🐛 Bug Fix
Authors: 1
v2.15.3
Compare Source
🐛 Bug Fix
Authors: 2
Kong/spec-renderer (@kong/spec-renderer-dev)
v1.79.12
Compare Source
v1.79.11
Compare Source
v1.79.10
Compare Source
v1.79.9
Compare Source
v1.79.8
Compare Source
v1.79.7
Compare Source
v1.79.6
Compare Source
v1.79.5
Compare Source
v1.79.4
Compare Source
vitejs/vite-plugin-vue (@vitejs/plugin-vue)
v5.1.4
rails/rails (activesupport)
v7.2.2
: 7.2.2Compare Source
Active Support
Include options when instrumenting
ActiveSupport::Cache::Store#delete
andActiveSupport::Cache::Store#delete_multi
.Adam Renberg Tamm
Print test names when running
rails test -v
for parallel tests.John Hawthorn, Abeid Ahmed
Active Model
Fix regression in
alias_attribute
to work with user defined methods.alias_attribute
would wrongly assume the attribute accessor was generated by Active Model.Jean Boussier
Active Record
Fix support for
query_cache: false
indatabase.yml
.query_cache: false
would no longer entirely disable the Active Record query cache.zzak
Set
.attributes_for_inspect
to:all
by default.For new applications it is set to
[:id]
in config/environment/production.rb.In the console all the attributes are always shown.
Andrew Novoselac
PG::UnableToSend: no connection to the server
is now retryable as a connection-related exceptionKazuma Watanabe
Fix marshalling of unsaved associated records in 7.1 format.
The 7.1 format would only marshal associated records if the association was loaded.
But associations that would only contain unsaved records would be skipped.
Jean Boussier
Fix incorrect SQL query when passing an empty hash to
ActiveRecord::Base.insert
.David Stosik
Allow to save records with polymorphic join tables that have
inverse_of
specified.
Markus Doits
Fix association scopes applying on the incorrect join when using a polymorphic
has_many through:
.Joshua Young
Fix
dependent: :destroy
for bi-directional has one through association.Fixes #50948.
In the above example
left.destroy
wouldn't destroy its associatedRight
record.
Andy Stewart
Properly handle lazily pinned connection pools.
Fixes #53147.
When using transactional fixtures with system tests to similar tools
such as capybara, it could happen that a connection end up pinned by the
server thread rather than the test thread, causing
"Cannot expire connection, it is owned by a different thread"
errors.Jean Boussier
Fix
ActiveRecord::Base.with
to accept more than two sub queries.Fixes #53110.
The above now works as expected.
fatkodima
Properly release pinned connections with non joinable connections.
Fixes #52973
When running system tests with transactional fixtures on, it could happen that
the connection leased by the Puma thread wouldn't be properly released back to the pool,
causing "Cannot expire connection, it is owned by a different thread" errors in later tests.
Jean Boussier
Make Float distinguish between
float4
andfloat8
in PostgreSQL.Fixes #52742
Ryota Kitazawa, Takayuki Nagatomi
Fix an issue where
.left_outer_joins
used with multiple associations that havethe same child association but different parents does not join all parents.
Previously, using
.left_outer_joins
with the same child association would only join one of the parents.Now it will correctly join both parents.
Fixes #41498.
Garrett Blehm
Ensure
ActiveRecord::Encryption.config
is always ready before access.Previously,
ActiveRecord::Encryption
configuration was deferred untilActiveRecord::Base
was loaded. Therefore, accessing
ActiveRecord::Encryption.config
properties beforeActiveRecord::Base
was loaded would give incorrect results.ActiveRecord::Encryption
now has its own loading hook so that its configuration is set assoon as needed.
When
ActiveRecord::Base
is loaded, even lazily, it in turn triggers the loading ofActiveRecord::Encryption
, thus preserving the original behavior of having its config readybefore any use of
ActiveRecord::Base
.Maxime Réty
Add
TimeZoneConverter#==
method, so objects will be properly compared bytheir type, scale, limit & precision.
Address #52699.
Ruy Rocha
Action View
Action Pack
Fix non-GET requests not updating cookies in
ActionController::TestCase
.Jon Moss, Hartley McGuire
Active Job
Action Mailer
Action Cable
Active Storage
Action Mailbox
Action Text
Railties
Guides
v7.2.1.2
: 7.2.1.2Compare Source
Active Support
Active Model
Active Record
Action View
Action Pack
Active Job
Action Mailer
Fix NoMethodError in
block_format
helperMichael Leimstaedtner
Action Cable
Active Storage
Action Mailbox
Action Text
Railties
Guides
v7.2.1.1
: 7.2.1.1Compare Source
Active Support
Active Model
Active Record
Action View
Action Pack
Avoid regex backtracking in HTTP Token authentication
[CVE-2024-47887]
Avoid regex backtracking in query parameter filtering
[CVE-2024-41128]
Active Job
Action Mailer
Avoid regex backtracking in
block_format
helper[CVE-2024-47889]
Action Cable
Active Storage
Action Mailbox
Action Text
Avoid backtracing in plain_text_for_blockquote_node
[CVE-2024-47888]
Railties
Guides
v7.2.1
: 7.2.1Compare Source
Active Support
Active Model
Active Record
Fix detection for
enum
columns with parallelized tests and PostgreSQL.Rafael Mendonça França
Allow to eager load nested nil associations.
fatkodima
Fix swallowing ignore order warning when batching using
BatchEnumerator
.fatkodima
Fix memory bloat on the connection pool when using the Fiber
IsolatedExecutionState
.Jean Boussier
Restore inferred association class with the same modularized name.
Justin Ko
Fix
ActiveRecord::Base.inspect
to properly explain how to load schema information.Jean Boussier
Check invalid
enum
options for the new syntax.The options using
_
prefix in the old syntax are invalid in the new syntax.Rafael Mendonça França
Fix
ActiveRecord::Encryption::EncryptedAttributeType#type
to returnactual cast type.
Vasiliy Ermolovich
Fix
create_table
with:auto_increment
option for MySQL adapter.fatkodima
Action View
Action Pack
Fix
Request#raw_post
raisingNoMethodError
whenrack.input
isnil
.Hartley McGuire
Active Job
Action Mailer
Action Cable
Active Storage
Action Mailbox
Action Text
Strip
content
attribute if the key is present but the value is emptyJeremy Green
Railties
Fix
rails console
for application with non default application constant.The wrongly assumed the Rails application would be named
AppNamespace::Application
,which is the default but not an obligation.
Jean Boussier
Fix the default Dockerfile to include the full sqlite3 package.
Prior to this it only included
libsqlite3
, so it wasn't enough torun
rails dbconsole
.Jerome Dalbert
Don't update public directory during
app:update
command for API-only Applications.y-yagi
Don't add bin/brakeman if brakeman is not in bundle when upgrading an application.
Etienne Barrié
Remove PWA views and routes if its an API only project.
Jean Boussier
Simplify generated Puma configuration
DHH, Rafael Mendonça França
v7.2.0
: 7.2.0Compare Source
Active Support
Fix
delegate_missing_to allow_nil: true
when called with implict selfJean Boussier
Add
logger
as a dependency since it is a bundled gem candidate for Ruby 3.5Earlopain
Define
Digest::UUID.nil_uuid
, which returns the so-called nil UUID.Xavier Noria
Support
duration
type inActiveSupport::XmlMini
.heka1024
Remove deprecated
ActiveSupport::Notifications::Event#children
andActiveSupport::Notifications::Event#parent_of?
.Rafael Mendonça França
Remove deprecated support to call the following methods without passing a deprecator:
deprecate
deprecate_constant
ActiveSupport::Deprecation::DeprecatedObjectProxy.new
ActiveSupport::Deprecation::DeprecatedInstanceVariableProxy.new
ActiveSupport::Deprecation::DeprecatedConstantProxy.new
assert_deprecated
assert_not_deprecated
collect_deprecations
Rafael Mendonça França
Remove deprecated
ActiveSupport::Deprecation
delegation to instance.Rafael Mendonça França
Remove deprecated
SafeBuffer#clone_empty
.Rafael Mendonça França
Remove deprecated
#to_default_s
fromArray
,Date
,DateTime
andTime
.Rafael Mendonça França
Remove deprecated support to passing
Dalli::Client
instances toMemCacheStore
.Rafael Mendonça França
Remove deprecated
config.active_support.use_rfc4122_namespaced_uuids
.Rafael Mendonça França
Remove deprecated
config.active_support.remove_deprecated_time_with_zone_name
.Rafael Mendonça França
Remove deprecated
config.active_support.disable_to_s_conversion
.Rafael Mendonça França
Remove deprecated support to bolding log text with positional boolean in
ActiveSupport::LogSubscriber#color
.Rafael Mendonça França
Remove deprecated constants
ActiveSupport::LogSubscriber::CLEAR
andActiveSupport::LogSubscriber::BOLD
.Rafael Mendonça França
Remove deprecated support for
config.active_support.cache_format_version = 6.1
.Rafael Mendonça França
Remove deprecated
:pool_size
and:pool_timeout
options for the cache storage.Rafael Mendonça França
Warn on tests without assertions.
ActiveSupport::TestCase
now warns when tests do not run any assertions.This is helpful in detecting broken tests that do not perform intended assertions.
fatkodima
Support
hexBinary
type inActiveSupport::XmlMini
.heka1024
Deprecate
ActiveSupport::ProxyObject
in favor of Ruby's built-inBasicObject
.Earlopain
stub_const
now accepts aexists: false
parameter to allow stubbing missing constants.Jean Boussier
Make
ActiveSupport::BacktraceCleaner
copy filters and silencers on dup and clone.Previously the copy would still share the internal silencers and filters array,
causing state to leak.
Jean Boussier
Updating Astana with Western Kazakhstan TZInfo identifier.
Damian Nelson
Add filename support for
ActiveSupport::Logger.logger_outputs_to?
.Christian Schmidt
Include
IPAddr#prefix
when serializing anIPAddr
using theActiveSupport::MessagePack
serializer.This change is backward and forward compatible — old payloads can
still be read, and new payloads will be readable by older versions of Rails.
Taiki Komaba
Add
default:
support forActiveSupport::CurrentAttributes.attribute
.Sean Doyle
Yield instance to
Object#with
block.Sean Doyle
Use logical core count instead of physical core count to determine the
default number of workers when parallelizing tests.
Jonathan Hefner
Fix
Time.now/DateTime.now/Date.today
to return results in a system timezone after#travel_to
.There is a bug in the current implementation of #travel_to:
it remembers a timezone of its argument, and all stubbed methods start
returning results in that remembered timezone. However, the expected
behavior is to return results in a system timezone.
Aleksei Chernenkov
Add
ErrorReported#unexpected
to report precondition violations.For example:
...
Make the order of read_multi and write_multi notifications for
Cache::Store#fetch_multi
operations match the order they are executed in.Adam Renberg Tamm
Make return values of
Cache::Store#write
consistent.The return value was not specified before. Now it returns
true
on a successful write,nil
if there was an error talking to the cache backend, andfalse
if the write failedfor another reason (e.g. the key already exists and
unless_exist: true
was passed).Sander Verdonschot
Fix logged cache keys not always matching actual key used by cache action.
Hartley McGuire
Improve error messages of
assert_changes
andassert_no_changes
.assert_changes
error messages now display objects with.inspect
to make it easierto differentiate nil from empty strings, strings from symbols, etc.
assert_no_changes
error messages now surface the actual value.pcreux
Fix
#to_fs(:human_size)
to correctly work with negative numbers.Earlopain
Fix
BroadcastLogger#dup
so that it duplicates the logger'sbroadcasts
.Andrew Novoselac
Fix issue where
bootstrap.rb
overwrites thelevel
of aBroadcastLogger
'sbroadcasts
.Andrew Novoselac
Fix compatibility with the
semantic_logger
gem.The
semantic_logger
gem doesn't behave exactly like stdlib logger in thatSemanticLogger#level
returns a Symbol while stdlibLogger#level
returns an Integer.This caused the various
LogSubscriber
classes in Rails to break when assigned aSemanticLogger
instance.Jean Boussier, ojab
Fix MemoryStore to prevent race conditions when incrementing or decrementing.
Pierre Jambet
Implement
HashWithIndifferentAccess#to_proc
.Previously, calling
#to_proc
onHashWithIndifferentAccess
object used inherited#to_proc
method from the
Hash
class, which was not able to access values using indifferent keys.fatkodima
Active Model
Fix a bug where type casting of string to
Time
andDateTime
doesn'tcalculate minus minute value in TZ offset correctly.
Akira Matsuda
Port the
type_for_attribute
method to Active Model. Classes that includeActiveModel::Attributes
will now provide this method. This method behavesthe same for Active Model as it does for Active Record.
Jonathan Hefner
Active Record
Handle commas in Sqlite3 default function definitions.
Stephen Margheim
Fixes
validates_associated
raising an exception when configured with asingular association and having
index_nested_attribute_errors
enabled.Martin Spickermann
The constant
ActiveRecord::ImmutableRelation
has been deprecated becausewe want to reserve that name for a stronger sense of "immutable relation".
Please use
ActiveRecord::UnmodifiableRelation
instead.Xavier Noria
Add condensed
#inspect
forConnectionPool
,AbstractAdapter
, andDatabaseConfig
.Hartley McGuire
Fixed a memory performance issue in Active Record attribute methods definition.
Jean Boussier
Define the new Active Support notification event
start_transaction.active_record
.This event is fired when database transactions or savepoints start, and
complements
transaction.active_record
, which is emitted when they finish.The payload has the transaction (
:transaction
) and the connection (:connection
).Xavier Noria
Fix an issue where the IDs reader method did not return expected results
for preloaded associations in models using composite primary keys.
Jay Ang
The payload of
sql.active_record
Active Support notifications now has the current transaction in the:transaction
key.Xavier Noria
The payload of
transaction.active_record
Active Support notifications now has the transaction the event is related to in the:transaction
key.Xavier Noria
Define
ActiveRecord::Transaction#uuid
, which returns a UUID for the database transaction. This may be helpful when tracing database activity. These UUIDs are generated only on demand.Xavier Noria
Fix inference of association model on nested models with the same demodularized name.
E.g. with the following setup:
Before,
#post
would infer the model asNested::Post
, but now it correctly infersPost
.Joshua Young
PostgreSQL
Cidr#change?
detects the address prefix change.Taketo Takashima
Change
BatchEnumerator#destroy_all
to return the total number of affected rows.Previously, it always returned
nil
.fatkodima
Support
touch_all
in batches.fatkodima
Add support for
:if_not_exists
and:force
options tocreate_schema
.fatkodima
Fix
index_errors
having incorrect index in association validation errors.lulalala
Add
index_errors: :nested_attributes_order
mode.This indexes the association validation errors based on the order received by nested attributes setter, and respects the
reject_if
configuration. This enables API to provide enough information to the frontend to map the validation errors back to their respective form fields.lulalala
Add
Rails.application.config.active_record.postgresql_adapter_decode_dates
to opt out of decoding dates automatically with the postgresql adapter. Defaults to true.Joé Dupuis
Association option
query_constraints
is deprecated in favor offoreign_key
.Nikita Vasilevsky
Add
ENV["SKIP_TEST_DATABASE_TRUNCATE"]
flag to speed up multi-process test runs on large DBs when all tests run within default transaction.This cuts ~10s from the test run of HEY when run by 24 processes against the 178 tables, since ~4,000 table truncates can then be skipped.
DHH
Added support for recursive common table expressions.
Generates the following SQL:
ClearlyClaire
validate_constraint
can be called in achange_table
block.ex:
Cody Cutrer
PostgreSQLAdapter
now decodes columns of type date toDate
instead of string.Ex:
Joé Dupuis
Strict loading using
:n_plus_one_only
does not eagerly load child associations.With this change, child associations are no longer eagerly loaded, to
match intended behavior and to prevent non-deterministic order issues caused
by calling methods like
first
orlast
. Asfirst
andlast
don't causean N+1 by themselves, calling child associations will no longer raise.
Fixes #49473.
Before:
SELECT * FROM posts WHERE person_id = 1; -- non-deterministic order
SELECT * FROM posts WHERE person_id = 1 ORDER BY id LIMIT 1;
Allow
Sqlite3Adapter
to usesqlite3
gem version2.x
.Mike Dalessio
Allow
ActiveRecord::Base#pluck
to accept hash values.Before
After
Raise an
ActiveRecord::ActiveRecordError
error when the MySQL database returns an invalid version string.Kevin McPhillips
ActiveRecord::Base.transaction
now yields anActiveRecord::Transaction
object.This allows to register callbacks on it.
Jean Boussier
Add
ActiveRecord::Base.current_transaction
.Returns the current transaction, to allow registering callbacks on it.
Jean Boussier
Add
ActiveRecord.after_all_transactions_commit
callback.Useful for code that may run either inside or outside a transaction and needs
to perform work after the state changes have been properly persisted.
In the above example, the block is either executed immediately if called outside
of a transaction, or called after the open transaction is committed.
If the transaction is rolled back, the block isn't called.
Jean Boussier
Add the ability to ignore counter cache columns until they are backfilled.
Starting to use counter caches on existing large tables can be troublesome, because the column
values must be backfilled separately of the column addition (to not lock the table for too long)
and before the use of
:counter_cache
(otherwise methods likesize
/any?
/etc, which usecounter caches internally, can produce incorrect results). People usually use database triggers
or callbacks on child associations while backfilling before introducing a counter cache
configuration to the association.
Now, to safely backfill the column, while keeping the column updated with child records added/removed, use:
While the counter cache is not "active", the methods like
size
/any?
/etc will not use it,but get the results directly from the database. After the counter cache column is backfilled, simply
remove the
{ active: false }
part from the counter cache definition, and it will now be used by thementioned methods.
fatkodima
Retry known idempotent SELECT queries on connection-related exceptions.
SELECT queries we construct by walking the Arel tree and / or with known model attributes
are idempotent and can safely be retried in the case of a connection error. Previously,
adapters such as
TrilogyAdapter
would raiseActiveRecord::ConnectionFailed: Trilogy::EOFError
when encountering a connection error mid-request.
Adrianna Chang
Allow association's
foreign_key
to be composite.query_constraints
option was the only way to configure a composite foreign key by passing anArray
.Now it's possible to pass an Array value as
foreign_key
to achieve the same behavior of an association.Nikita Vasilevsky
Allow association's
primary_key
to be composite.Association's
primary_key
can be composite when derived from associated modelprimary_key
orquery_constraints
.Now it's possible to explicitly set it as composite on the association.
Nikita Vasilevsky
Add
config.active_record.permanent_connection_checkout
setting.Controls whether
ActiveRecord::Base.connection
raises an error, emits a deprecation warning, or neither.ActiveRecord::Base.connection
checkouts a database connection from the pool and keeps it leased until the end ofthe request or job. This behavior can be undesirable in environments that use many more threads or fibers than there
is available connections.
This configuration can be used to track down and eliminate code that calls
ActiveRecord::Base.connection
andmigrate it to use
ActiveRecord::Base.with_connection
instead.The default behavior remains unchanged, and there is currently no plans to change the default.
Jean Boussier
Add dirties option to uncached.
This adds a
dirties
option toActiveRecord::Base.uncached
andActiveRecord::ConnectionAdapters::ConnectionPool#uncached
.When set to
true
(the default), writes will clear all query caches belonging to the current thread.When set to
false
, writes to the affected connection pool will not clear any query cache.This is needed by Solid Cache so that cache writes do not clear query caches.
Donal McBreen
Deprecate
ActiveRecord::Base.connection
in favor of.lease_connection
.The method has been renamed as
lease_connection
to better reflect that the returnedconnection will be held for the duration of the request or job.
This deprecation is a soft deprecation, no warnings will be issued and there is no
current plan to remove the method.
Jean Boussier
Deprecate
ActiveRecord::ConnectionAdapters::ConnectionPool#connection
.The method has been renamed as
lease_connection
to better reflect that the returnedconnection will be held for the duration of the request or job.
Jean Boussier
Expose a generic fixture accessor for fixture names that may conflict with Minitest.
Jean Boussier
Using
Model.query_constraints
with a single non-primary-key column used to raise as expected, but with anincorrect error message.
This has been fixed to raise with a more appropriate error message.
Joshua Young
Fix
has_one
association autosave setting the foreign key attribute when it is unchanged.This behavior is also inconsistent with autosaving
belongs_to
and can have unintended side effects like raisingan
ActiveRecord::ReadonlyAttributeError
when the foreign key attribute is marked as read-only.Joshua Young
Remove deprecated behavior that would rollback a transaction block when exited using
return
,break
orthrow
.Rafael Mendonça França
Deprecate
Rails.application.config.active_record.commit_transaction_on_non_local_return
.Rafael Mendonça França
Remove deprecated support to pass
rewhere
toActiveRecord::Relation#merge
.Rafael Mendonça França
Remove deprecated support to pass
deferrable: true
toadd_foreign_key
.Rafael Mendonça França
Remove deprecated support to quote
ActiveSupport::Duration
.Rafael Mendonça França
Remove deprecated
#quote_bound_value
.Rafael Mendonça França
Remove deprecated
ActiveRecord::ConnectionAdapters::ConnectionPool#connection_klass
.Rafael Mendonça França
Remove deprecated support to apply
#connection_pool_list
,#active_connections?
,#clear_active_connections!
,#clear_reloadable_connections!
,#clear_all_connections!
and#flush_idle_connections!
to the connections poolsfor the current role when the
role
argument isn't provided.Rafael Mendonça França
Remove deprecated
#all_connection_pools
.Rafael Mendonça França
Remove deprecated
ActiveRecord::ConnectionAdapters::SchemaCache#data_sources
.Rafael Mendonça França
Remove deprecated
ActiveRecord::ConnectionAdapters::SchemaCache.load_from
.Rafael Mendonça França
Remove deprecated
#all_foreign_keys_valid?
from database adapters.Rafael Mendonça França
Remove deprecated support to passing coder and class as second argument to
serialize
.Rafael Mendonça França
Remove deprecated support to
ActiveRecord::Base#read_attribute(:id)
to return the custom primary key value.Rafael Mendonça França
Remove deprecated
TestFixtures.fixture_path
.Rafael Mendonça França
Remove deprecated behavior to support referring to a singular association by its plural name.
Rafael Mendonça França
Deprecate
Rails.application.config.active_record.allow_deprecated_singular_associations_name
.Rafael Mendonça França
Remove deprecated support to passing
SchemaMigration
andInternalMetadata
classes as arguments toActiveRecord::MigrationContext
.Rafael Mendonça França
Remove deprecated
ActiveRecord::Migration.check_pending!
method.Rafael Mendonça França
Remove deprecated
ActiveRecord::LogSubscriber.runtime
method.Rafael Mendonça França
Remove deprecated
ActiveRecord::LogSubscriber.runtime=
method.Rafael Mendonça França
Remove deprecated
ActiveRecord::LogSubscriber.reset_runtime
method.Rafael Mendonça França
Remove deprecated support to define
explain
in the connection adapter with 2 arguments.Rafael Mendonça França
Remove deprecated
ActiveRecord::ActiveJobRequiredError
.Rafael Mendonça França
Remove deprecated
ActiveRecord::Base.clear_active_connections!
.Rafael Mendonça França
Remove deprecated
ActiveRecord::Base.clear_reloadable_connections!
.Rafael Mendonça França
Remove deprecated
ActiveRecord::Base.clear_all_connections!
.Rafael Mendonça França
Remove deprecated
ActiveRecord::Base.flush_idle_connections!
.Rafael Mendonça França
Remove deprecated
name
argument fromActiveRecord::Base.remove_connection
.Rafael Mendonça França
Remove deprecated support to call
alias_attribute
with non-existent attribute names.Rafael Mendonça França
Remove deprecated
Rails.application.config.active_record.suppress_multiple_database_warning
.Rafael Mendonça França
Add
ActiveRecord::Encryption::MessagePackMessageSerializer
.Serialize data to the MessagePack format, for efficient storage in binary columns.
The binary encoding requires around 30% less space than the base64 encoding
used by the default serializer.
Donal McBreen
Add support for encrypting binary columns.
Ensure encryption and decryption pass
Type::Binary::Data
around for binary data.Previously encrypting binary columns with the
ActiveRecord::Encryption::MessageSerializer
incidentally worked for MySQL and SQLite, but not PostgreSQL.
Donal McBreen
Deprecated
ENV["SCHEMA_CACHE"]
in favor ofschema_cache_path
in the database configuration.Rafael Mendonça França
Add
ActiveRecord::Base.with_connection
as a shortcut for leasing a connection for a short duration.The leased connection is yielded, and for the duration of the block, any call to
ActiveRecord::Base.connection
will yield that same connection.
This is useful to perform a few database operations without causing a connection to be leased for the
entire duration of the request or job.
Jean Boussier
Deprecate
config.active_record.warn_on_records_fetched_greater_than
now thatsql.active_record
notification includes
:row_count
field.Jason Nochlin
The fix ensures that the association is joined using the appropriate join type
(either inner join or left outer join) based on the existing joins in the scope.
This prevents unintentional overrides of existing join types and ensures consistency in the generated SQL queries.
Example:
associated
will useLEFT JOIN
instead of usingJOIN
Fix an issue where
ActiveRecord::Encryption
configurations are not ready before the loadingof Active Record models, when an application is eager loaded. As a result, encrypted attributes
could be misconfigured in some cases.
Maxime Réty
Deprecate defining an
enum
with keyword arguments.BAD
GOOD
Add
config.active_record.validate_migration_timestamps
option for validating migration timestamps.When set, validates that the timestamp prefix for a migration is no more than a day ahead of
the timestamp associated with the current time. This is designed to prevent migrations prefixes
from being hand-edited to future timestamps, which impacts migration generation and other
migration commands.
Adrianna Chang
Properly synchronize
Mysql2Adapter#active?
andTrilogyAdapter#active?
.As well as
disconnect!
andverify!
.This generally isn't a big problem as connections must not be shared between
threads, but is required when running transactional tests or system tests
and could lead to a SEGV.
Jean Boussier
Support
:source_location
tag option for query log tags.Calculating the caller location is a costly operation and should be used primarily in development
(note, there is also a
config.active_record.verbose_query_logs
that serves the same purpose)or occasionally on production for debugging purposes.
fatkodima
Add an option to
ActiveRecord::Encryption::Encryptor
to disable compression.Allow compression to be disabled by setting
compress: false
Donal McBreen
Deprecate passing strings to
ActiveRecord::Tasks::DatabaseTasks.cache_dump_filename
.A
ActiveRecord::DatabaseConfigurations::DatabaseConfig
object should be passed instead.Rafael Mendonça França
Add
row_count
field tosql.active_record
notification.This field returns the amount of rows returned by the query that emitted the notification.
This metric is useful in cases where one wants to detect queries with big result sets.
Marvin Bitterlich
Consistently raise an
ArgumentError
when passing an invalid argument to a nested attributes association writer.Previously, this would only raise on collection associations and produce a generic error on singular associations.
Now, it will raise on both collection and singular associations.
Joshua Young
Fix single quote escapes on default generated MySQL columns.
MySQL 5.7.5+ supports generated columns, which can be used to create a column that is computed from an expression.
Previously, the schema dump would output a string with double escapes for generated columns with single quotes in the default expression.
This would result in issues when importing the schema on a fresh instance of a MySQL database.
Now, the string will not be escaped and will be valid Ruby upon importing of the schema.
Yash Kapadia
Fix Migrations with versions older than 7.1 validating options given to
add_reference
andt.references
.Hartley McGuire
Add
<role>_types
class method toActiveRecord::DelegatedType
so that the delegated types can be introspected.JP Rosevear
Make
schema_dump
,query_cache
,replica
anddatabase_tasks
configurable viaDATABASE_URL
.This wouldn't always work previously because boolean values would be interpreted as strings.
e.g.
DATABASE_URL=postgres://localhost/foo?schema_dump=false
now properly disable dumping the schemacache.
Mike Coutermarsh, Jean Boussier
Introduce
ActiveRecord::Transactions::ClassMethods#set_callback
.It is identical to
ActiveSupport::Callbacks::ClassMethods#set_callback
but with support for
after_commit
andafter_rollback
callback options.Joshua Young
Make
ActiveRecord::Encryption::Encryptor
agnostic of the serialization format used for encrypted data.Previously, the encryptor instance only allowed an encrypted value serialized as a
String
to be passed to the message serializer.Now, the encryptor lets the configured
message_serializer
decide which types of serialized encrypted values are supported. A custom serialiser is therefore allowed to serializeActiveRecord::Encryption::Message
objects using a type other thanString
.The default
ActiveRecord::Encryption::MessageSerializer
already ensures that onlyString
objects are passed for deserialization.Maxime Réty
Fix
encrypted_attribute?
to take into account context properties passed toencrypts
.Maxime Réty
The object returned by
explain
now responds topluck
,first
,last
,average
,count
,maximum
,minimum
, andsum
. Thosenew methods run
EXPLAIN
on the corresponding queries:EXPLAIN SELECT COUNT(*) FROM
users
...
EXPLAIN SELECT MAX(
users
.id
) FROMusers
...
Fixes an issue where
validates_associated
:on
option wasn't respectedwhen validating associated records.
Austen Madden, Alex Ghiculescu, Rafał Brize
Allow overriding SQLite defaults from
database.yml
.Any PRAGMA configuration set under the
pragmas
key in the configurationfile takes precedence over Rails' defaults, and additional PRAGMAs can be
set as well.
Stephen Margheim
Remove warning message when running SQLite in production, but leave it unconfigured.
There are valid use cases for running SQLite in production. However, it must be done
with care, so instead of a warning most users won't see anyway, it's preferable to
leave the configuration commented out to force them to think about having the database
on a persistent volume etc.
Jacopo Beschi, Jean Boussier
Add support for generated columns to the SQLite3 adapter.
Generated columns (both stored and dynamic) are supported since version 3.31.0 of SQLite.
This adds support for those to the SQLite3 adapter.
Stephen Margheim
TrilogyAdapter: ignore
host
ifsocket
parameter is set.This allows to configure a connection on a UNIX socket via
DATABASE_URL
:Configuration
📅 Schedule: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.