- Fix internal lint warnings
- Fix
hashCode
collisions withMap
properties (#43)
- Update hashCode implementation to use
Jenkins Hash
(#39) - Documentation Updates
- Minor documentation updates
- The
props
getter override is required for bothEquatable
andEquatableMixin
- Performance Improvements
- Allow const constructors on
Equatable
class
- Removed
EquatableMixinBase
(now covered byEquatableMixin
). - Typed
EquatableMixin
fromList<dynamic>
toList<Object>
to fix linter issues withimplicit-dynamic: false
.
Update toString
to default to runtimeType
(#27)
Enforce Immutability (#25)
Improved support for collection types (#19)
Improved support for Iterable
, List
, Map
, and Set
props (#17)
Additional Minor Documentation Updates
Documentation Updates
Bug Fixes:
Equatable
instances that are equal now have the samehashCode
(#8)
Update Dart support to >=2.0.0 <3.0.0
Add EquatableMixin
and EquatableMixinBase
Enhancements to toString
override
equatable has 0 dependencies
Support Iterable
props
Added toString
override
Documentation Updates
- Performance Tests
Additional Performance Optimizations & Documentation Updates
Performance Optimizations
Bug Fixes
Additional Updates to Documentation.
- Logo Added
Minor Updates to Documentation.
Initial Version of the library.
- Includes the ability to extend
Equatable
and not have to override==
andhashCode
.