Releases: crashtech/torque-postgresql
Releases · crashtech/torque-postgresql
v4.0.0
- Adds support for Rails 8
- Allow features to be easily enabled and disabled
- Better usage of bind params on all queries
- Massively improves the handling of array-based associations
- No more raw override of visit_TableDefinition (great for cross gem compatibility)
- Better support for schema as an option on several migration methods
- Extended and yet optional predicate builders for an extended usage of where
- Added full-text search helpers and interfaces
- Added
generated_series()
PG function helpers - Added
width_bucket()
PG function helpers - Added ability to manage views, functions, and non-enum types
v4.0.0.rc1
- Adds support for Rails 8
- Allow features to be easily enabled and disabled
- Better usage of bind params on all queries
- Massively improves the handling of array-based associations
- No more raw override of
visit_TableDefinition
(great for cross gem compatibility) - Better support for schema as an option on several migration methods
- Extended and yet optional predicate builders for an extended usage of
where
- Added full-text search helpers and interfaces
v3.4.1
What's Changed
- Fix #96 (Array Quoting) by using correct Arel accessor by @crashtech in #97
Full Changelog: v3.4.0...v3.4.1
v2.4.5
What's Changed
- Fix #96 (Array Quoting) by using correct arel accessor (v2) by @crashtech in #98
Full Changelog: v2.4.4...v2.4.5
v3.4.0
What's Changed
- Ensure queries virtual attributes do not cause a crash by @etoundi2nd in #93
- Add Rails 7.2 support by @crashtech in #95
New Contributors
- @etoundi2nd made their first contribution in #93
Full Changelog: v3.3.3...v3.4.0
Patch for `belongs_to_many` association
Address #92 by fixing the setup of the belongs_to_many
association by ensuring both foreing_key
and primary_key
are always stored as strings.
Patch for `belongs_to_many` association
Address #92 by fixing the setup of the belongs_to_many
association by ensuring both foreing_key
and primary_key
are always stored as strings.
Patch for `belongs_to_many` association
Address #91 by adding tests and fixing the right way of reading the "ids" of the connection of the association.
Patch for `belongs_to_many` association
Address #91 by adding tests and fixing the right way of reading the "ids" of the connection of the association.
Patch for advanced active record 7.1 feature
Fix has many array features fro models that use query_constraints
.