Releases: datastructures-js/linked-list
Releases · datastructures-js/linked-list
@datastructures-js/linked-list-v6.1.3
[6.1.3] - 2024-07-14
Fixed
- jsdocs
@datastructures-js/linked-list-v6.1.2
[6.1.2] - 2024-07-13
Fixed
- LinkedList
removeEach
edge case to disconnect removed nodes from the remaining nodes in the list. - LinkedList & DoublyLinkedList ts types, remove the necessity to cast to the custom node type in functions.
@datastructures-js/linked-list-v6.1.0
[6.1.0] - 2023-05-28
Added
insertBefore
to add a node before an existing node in the DoublyLinkedList.insertAfter
to add a node after an existing node in the DoublyLinkedList.
@datastructures-js/linked-list-v6.0.0
[6.0.0] - 2023-03-20
Changed
- Allow inserting node types into the linked list.
@datastructures-js/linked-list-v5.2.5
[5.2.5] - 2023-01-09
Fixed
- a bug in
removeEach
.
@datastructures-js/linked-list-v5.2.4
[5.2.4] - 2022-09-04
Fixed
- typo in LinkedListNode.
@datastructures-js/linked-list-v5.2.3
[5.2.3] - 2022-08-15
Fixed
- add types to package.json
@datastructures-js/linked-list-v5.2.2
[5.2.2] - 2022-06-19
Fixed
- readme.
@datastructures-js/linked-list-v5.2.1
[5.2.1] - 2022-02-16
Fixed
- TS types and readme.
@datastructures-js/linked-list-v5.2.0
[5.2.0] - 2022-02-14
Added
.find
now accepts a second param as the starting node in both types..findReverse
added to DoublyLinkedList..fromArray
static method added to both types.