@ethereumjs/trie v6.2.0
holgerd77
released this
18 Mar 12:28
·
324 commits
to master
since this release
In the hope that you do not have yet integrated: we needed to remove the new more modern async trie iteration with web streams functionality (new createAsyncReadStream()
method) introduced with the v6.1.0
release - see PR #3231 for context - since the related Node.js web streams API import caused relatively severe problems for all upstream libraries when being used in the browser.
So functionality has been removed in PR #3280. We hope we find a good way to re-introduce along with the next breaking release round without limiting browser functionality.
Other Changes
- Add optional
partialPath
parameter totrie.findPath()
, PR #3305 - Add export for
Path
interface for better TypeScript integration when using thefindPath()
method, PR #3292 - Improved zero-element proof behavior in
verifyProof()
method, PR #3047 - Fix a type error related to the
lru-cache
dependency, PR #3285