All Versions
28
Latest Version
Avg Release Cycle
81 days
Latest Release
-

Changelog History
Page 3

  • v0.0.11 Changes

    • ๐Ÿ›  Fix issue 34 - HABTM associations now honor the auto_include option.
    • ๐Ÿ›  Fix issue 39 - CollectionProxy#exists? should return false for a new model's association with no values.
  • v0.0.10 Changes

    • ๐Ÿ›  Fix issue 13 - Eager load associations with unscope in Rails 4.1.9+ now that the underlying Rails bug has been fixed.
    • ๐Ÿ›  Fix issue 11 - Eager load associations with joins in Rails 4.2+ now that the underlying Rails bug has been fixed.
    • ๐ŸŽ‰ Initial support for Rails 5. There are no known issues but see issue 27 for remaining tasks.
    • ๐Ÿ‘ MRI 2.3.0 support.
    • ๐Ÿ’Ž JRuby 9000 support.
  • v0.0.9 Changes

    • ๐Ÿ”€ Merge pull request - Optimization: Cache compatibility checks. Thanks Jonathan Calvert!
  • v0.0.8 Changes

    • ๐Ÿ›  Fix issue 23 - Handle polymorphic belongs_to associations in Rails 4 that have a mix of non-nil and nil values.
  • v0.0.7 Changes

    • ๐Ÿ›  Fix issue 20 by not auto-eager loading associations that are instance dependent. Eager loading these associations produces potentially incorrect results and leads to a deprecation warning in Rails 4.2.
    • ๐Ÿ›  Fix issue 21 - Handle explicit eager loads of singular associations that are nil.
    • ๐Ÿš… Rails 4.2 support.
  • v0.0.6 Changes

    • โ†ช Workaround issue 16 by not auto-eager loading has_and_belongs_to_many associations with a uniq in Rails 3.2 since Rails doesn't eager load them properly.
    • ๐Ÿ›  Fix issue 17 - models eager loaded via an explicit call to eager_load now auto eager load nested models.
  • v0.0.5 Changes

    • ๐Ÿ›  Fix ActiveRecord and ActiveSupport dependencies to work with versions greater than 4.1.0. Thanks for the pull requests Alexey Volodkin and Philip Claren.
    • โ†ช Workaround issue 13 by not auto-eager loading associations that use unscope. This workaround will be removed when the underlying bug 11036 in the Rails eager loader is fixed.
    • โ†ช Workaround issue 11 by not auto-eager loading associations that use joins. This workaround will be removed when the underlying bug 11518 in the Rails eager loader is fixed.
    • ๐Ÿ›  Fix issue 15 - Don't auto eager load associations with finder_sql in Rails 4.0. Previously this was only done for Rails 3.2.
  • v0.0.4 Changes

    • ๐Ÿ›  Fix issue 3 - exists? method should take an argument. Thanks for reporting Bert Goethals
    • ๐Ÿ›  Fix issue 4 - Associations couldn't be loaded in after destroy callbacks. Thanks for reporting Bert Goethals
    • ๐Ÿ›  Fix issue 6 - Models in read only associations weren't being marked as read only
    • ๐Ÿ›  Fix issue 7 - Don't attempt to eager load associations that aren't eager loadable e.g. if they have a limit
    • ๐Ÿ›  Fix issue 8 - Handle eager loading associations whose accessor methods have been overridden.