list_diff
📃 Calculates a minimal list of operations that convert one list into another if applied in order.
2.0.1
22K downloads/mo
#2128 most downloaded on pub.dev
marcelgarus/list_diff
What this package is like to depend on
Last release 5 years ago
no release in 18 months
Ships fairly regularly
a new release about every 4 months
Nearly every release is documented
notes for 13 of 13 stable releases
Nothing withdrawn
no release was ever pulled
7 years old
13 releases · first in 2019
0 releases in the last 12 months
see the full history below
Release timeline
13 releases · Oct 2019 to Jan 2022
2020
2021
2022
2023
2024
2025
2026
Releases
latest 13-
2.0.107 Jan 2022Release notes
Open source →- Fix bug that caused a crash when the lists overlap in a certain way.
- Thanks to @ductranit for reporting the issue!
-
2.0.004 Mar 2021 -
1.3.207 Oct 2020 -
1.3.127 Aug 2020 -
1.3.029 Apr 2020 -
1.2.101 Jan 2020Release notes
Open source →- Add extension method for more intuitive
list.apply(operation)instead ofoperation.applyTo(list). - Revised readme.
- Add extension method for more intuitive
-
1.2.001 Jan 2020 -
1.1.314 Oct 2019Release notes
Open source →- Important fix: Fixed error in the algorithm that made it crash when the two lists are the same.
-
1.1.214 Oct 2019Release notes
Open source →- Important fix: Fixed error in the algorithm that produced wrong results that you can't apply.
-
1.1.110 Oct 2019Release notes
Open source →- BREAKING CHANGE:
runOnSeparateIsolaterenamed tospawnIsolate. - By default, the
difffunction intelligently tries to choose whether or not to spawn an isolate based on the lengths on the lists. - Revised readme.
- BREAKING CHANGE:
-
1.1.009 Oct 2019Release notes
Open source →- BREAKING CHANGE:
diffis now asynchronous. - Add support for running
diffon another isolate by settingrunOnSeparateIsolatetotrue. - Add
isolated.dartexample. - Better error messages.
- Revised doc comments.
- Add readme.
- BREAKING CHANGE:
-
1.0.109 Oct 2019 -
1.0.009 Oct 2019Release notes
Open source →- This Initial release features the
difffunction that takes two lists and returns a list ofOperations that turn the first into the second list if applied in order.
- This Initial release features the