Skip to content

Latest commit

 

History

History
124 lines (100 loc) · 5.83 KB

CHANGELOG.md

File metadata and controls

124 lines (100 loc) · 5.83 KB

Change Log

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

2.4.2 - 2017-04-20

Fixed

  • Fix querying for conditions with hashes.

2.4.1 - 2017-04-19

Fixed

  • Make ActiveRecord::Relation#where! work.

2.4.0 - 2017-04-16

Changed

  • Don't make all supermodel class methods callable by submodel, only scopes. Add callable_by_submodel to supermodel so users can make their own class methods callable by submodels.

2.3.1 - 2017-04-15

Fixed

  • Make calling supermodel class methods work through relations/associations as well

2.3.0 - 2017-04-12

Fixed

Added

2.2.1 - 2017-04-08

Fixed

  • Make sure submodel instance changes are retained when calling submodel_instance.acting_as.specific

2.2.0 - 2017-04-08

Added

  • Added support for calling superclass methods on the subclass or subclass relations

2.1.1 - 2017-03-22

Fixed

  • Fix querying subclass with where, for enum (and possibly other) attributes the detection whether the attribute is defined on the superclass or subclass didn't work.

2.1.0 - 2017-03-17

Added

  • Access superobjects from query on submodel by calling .actables

2.0.9 - 2017-03-02

Fixed

  • Fix handling of query conditions that contain a dot

2.0.8 - 2017-02-17

Fixed

  • Avoid circular dependency on destroy

2.0.7 - 2017-02-17 [YANKED]

Fixed

  • Set reference to submodel when building supermodel

2.0.6 - 2017-02-17

Added

  • Allow arguments to #touch and forward them to the supermodel

2.0.5 - 2016-12-20

Fixed

  • Don't try to touch supermodel if it's not persisted
  • Call #destroy, not #delete, on the submodule by default to trigger callbacks

2.0.4 - 2016-12-07

Fixed

  • Touch associated objects if supermodel is updated

2.0.3 - 2016-11-07

Fixed

  • Fix defining associations on acting_as model after calling acting_as

2.0.2 - 2016-11-06

Fixed

  • Call #touch on actable object when it's called on the acting_as object

2.0.1 - 2016-10-05

Added

  • Added this changelog
  • Added touch option to skip touching the acting_as object (hzamani#78, thanks to allenwq!)

2.0.0 - 2016-09-14

Added

Removed

  • Dropped support for Ruby < 2.2 and ActiveSupport/ActiveRecord < 4.2

Fixed