|
1 | 1 | Changelog is now in the [Github Release Notes](https://github.com/JuliaCollections/DataStructures.jl/releases). |
2 | 2 |
|
| 3 | +Starting from version 0.19.0, CHANGELOG.md is managed in a format that follows <https://keepachangelog.com/en/1.1.0/>. |
| 4 | + |
| 5 | +<!-- links start --> |
| 6 | +[Unreleased]: https://github.com/JuliaCollections/DataStructures.jl/compare/v0.19.0...HEAD |
| 7 | +[0.19.0]: https://github.com/JuliaCollections/DataStructures.jl/compare/v0.18.22...v0.19.0 |
| 8 | +[0.19.1]: https://github.com/JuliaCollections/DataStructures.jl/compare/v0.19.0...v0.19.1 |
| 9 | +[0.19.2]: https://github.com/JuliaCollections/DataStructures.jl/compare/v0.19.1...v0.19.2 |
| 10 | +<!-- links end --> |
| 11 | + |
| 12 | +[0.19.3] |
| 13 | +===================== |
| 14 | + |
| 15 | +## Fixed |
| 16 | + |
| 17 | +- Reintroduce a method for `percolate_up!` `percolate_down!` that doesn't require the element to be passed, which was unintentionally removed in 0.19.2 (JuliaCollections/DataStructures.jl#960). |
| 18 | + |
| 19 | +[0.19.2] |
| 20 | +===================== |
| 21 | + |
| 22 | +## Added |
| 23 | + |
| 24 | +- `percolate_up!`, `percolate_down!` now use `@propagate_inbounds` to control bounds checking (JuliaCollections/DataStructures.jl#954) |
| 25 | + |
| 26 | +[0.19.1] - 2025-08-26 |
| 27 | +===================== |
| 28 | + |
| 29 | +## Fixed |
| 30 | + |
| 31 | +- Add `newsz::Integer` type annotation to `sizehint!` overloads (JuliaCollections/DataStructures.jl#945) |
| 32 | +- Fix `pop!` with default for `OrderedRobinDict` (JuliaCollections/DataStructures.jl#950) |
| 33 | +- Fix deprecation of `DisjointSets(xs...)` to avoid warning on package load (JuliaCollections/DataStructures.jl#951) |
| 34 | + |
| 35 | +## Other |
| 36 | + |
| 37 | +- link to where missing change notes are (JuliaCollections/DataStructures.jl#944) |
| 38 | +- Bump `actions/checkout` from 4 to 5 (JuliaCollections/DataStructures.jl#947) |
| 39 | +- Add docstrings to `DefaultDict` (JuliaCollections/DataStructures.jl#948) |
| 40 | + |
| 41 | +[0.19.0] - 2025-07-31 |
| 42 | +===================== |
| 43 | + |
| 44 | +## Added |
| 45 | +- New `Queue` and `Stack` as separate types with enhanced documentation |
| 46 | +- Add `empty!` method for heaps (JuliaCollections/DataStructures.jl#932) |
| 47 | +- Support for recursive `DefaultDict` creation |
| 48 | +- Add `find_prefixes` method to `Trie` for finding all keys that are prefixes of a given string (JuliaCollections/DataStructures.jl#933) |
| 49 | +- Improved constructors for `CircularBuffer` allowing initialization with an iterable and capacity |
| 50 | +- Add `resize!` method for `CircularBuffer` |
| 51 | +- Enhanced documentation with doctests and improved examples throughout (JuliaCollections/DataStructures.jl#931) |
| 52 | + |
| 53 | +## Changed |
| 54 | +- Minimum Julia version requirement raised to 1.6 (JuliaCollections/DataStructures.jl#874) |
| 55 | +- `DisjointSets` renamed to `DisjointSet` (singular form) (JuliaCollections/DataStructures.jl#700) |
| 56 | +- `IntDisjointSets` renamed to `IntDisjointSet` (singular form) (JuliaCollections/DataStructures.jl#700) |
| 57 | +- PriorityQueue API updated to use standard Julia interfaces: |
| 58 | + - `enqueue!` → `push!` |
| 59 | + - `dequeue!` → `popfirst!` |
| 60 | + - `dequeue_pair!` → `popfirst!` |
| 61 | + - `peek` → `first` |
| 62 | +- Renamed methods in sorted containers: |
| 63 | + - `startof` → `firstindex` |
| 64 | + - `endof` → `lastindex` |
| 65 | + - `insert!` → `push_return_semitoken!` |
| 66 | +- `Accumulator` constructor behavior changed to properly accumulate values when initialized with pairs |
| 67 | +- Documentation significantly expanded and reorganized |
| 68 | +- Performance improvements in heaps and various other data structures (JuliaCollections/DataStructures.jl#907) |
| 69 | + |
| 70 | +## Deprecated |
| 71 | +- `enqueue!` and `dequeue!` methods (use `push!` and `popfirst!` instead) |
| 72 | +- `peek` for PriorityQueue (use `first` instead) |
| 73 | +- `DisjointSets` (use `DisjointSet` instead) (JuliaCollections/DataStructures.jl#700) |
| 74 | +- `IntDisjointSets` (use `IntDisjointSet` instead) (JuliaCollections/DataStructures.jl#700) |
| 75 | +- `startof` and `endof` (use `firstindex` and `lastindex` instead) |
| 76 | + |
| 77 | +## Fixed |
| 78 | +- Memory management improvements using `Base._unsetindex!` in several data structures (JuliaCollections/DataStructures.jl#884) |
| 79 | +- Fixed `append!` behavior in `MutableLinkedList` to properly handle multiple arguments |
| 80 | +- Various bug fixes and correctness improvements |
| 81 | + |
| 82 | +## Removed |
| 83 | +- Dependency on Compat.jl |
| 84 | +- Dependency on InteractiveUtils.jl |
| 85 | +- Support for Julia versions < 1.6 (JuliaCollections/DataStructures.jl#874) |
| 86 | + |
| 87 | +0.8 – 0.18 |
| 88 | +=========== |
| 89 | +Changelogs for 0.8 to 0.18.x are listed only on the [Github release pages](https://github.com/JuliaCollections/DataStructures.jl/releases): |
| 90 | +e.g.: [v0.18.22](https://github.com/JuliaCollections/DataStructures.jl/releases/tag/v0.18.22) |
| 91 | + |
3 | 92 |
|
4 | | -## Old Changelong (pre-2018) |
5 | 93 |
|
6 | 94 | 0.7.0 / 2017-09-02 |
7 | 95 | ================== |
|
0 commit comments