You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
StorageUpdate class was rewritten from scratch using Swift Set.
StorageUpdate now contains movedRowIndexPaths and movedSectionIndexes properties
All method names and properties, that contained object term in their name, have been renamed to read 'item' instead
MemoryStoragesectionAtIndex(_:) method now returns optional value instead of always returning SectionModel. This method no longer inserts new sections, when called.
Fixed
removeItems method should no longer skip items, if their indexPath is reduced when removing previous item
Removed
removeAllTableItems and removeAllCollectionItems have been replaced by removeAllItems method.
moveCollectionItemAtIndexPath:toIndexPath: and moveTableItemAtIndexPath:toIndexPath: have been replaced by moveItemAtIndexPath:toIndexPath: method
moveCollectionViewSection:toSection and moveTableViewSection:toSection have been replaced by moveSection:toSection method