- Last updated: 2024-10-05T12:12:32Z
- Generator: thi.ng/monopub
All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.
Note: Unlisted patch versions only involve non-code or otherwise excluded changes and/or version bumps of transitive dependencies.
3.0.0 (2024-07-22)
- migrate/remove DisjointSet (#486) (c4a9798)
- BREAKING CHANGE: migrate DisjointSet to @thi.ng/disjoint-set pkg
- remove obsolete files
- update pkg
2.5.48 (2024-04-20)
- update type usage (c7376f3)
2.5.0 (2023-10-19)
- explicit version bump for @firfi's recent additions (#400) (0d00025)
- see: 2fd123d741586fe29a8cc63b7aa30f3ea9d35ab2
- update readme with API examples
- fix AdjacencyBitMatrix.numVertices() (bd034ab)
2.4.0 (2023-10-18)
- add AdjacencyBitMatrix.similarity(), other updates (259b507)
- add AdjacencyBitMatrix.similarity() to select related nodes (based on shared connections)
- simplify AdjacencyBitMatrix.neighbors()
- fix iteration bug in AdjacencyBitMatrix.edges()
2.3.0 (2022-12-22)
2.2.12 (2022-10-26)
- update AdjacencyBitMatrix & tests (a86b6ee)
- update .neighbors() impl to adjust to new u8 backing array (see aaa0ecb1d)
- add/update test cases
2.2.0 (2022-07-19)
- update AdjacencyList (5d85d87)
- add vertices() iterator
- rename old
.vertices
field =>.adjacency
- add adjListFromAdjacency() factory fn
- update DCons call sites (2dfec21)
2.1.0 (2021-11-17)
- Using workspaces for local tools (bf7a404)
Improving the overall build ergonomics
- introduced a tools workspaces
- imported it in all needed packages/examples
- inclusive project root
- testrunner to binary (4ebbbb2) this commit reverts (partly) changes made in: ef346d7a8753590dc9094108a3d861a8dbd5dd2c overall purpose is better testament ergonomics: instead of having to pass NODE_OPTIONS with every invocation having a binary to handle this for us.
2.0.10 (2021-11-10)
- update all countdown loops (a5f374b)
2.0.1 (2021-10-13)
- update imports in all pkgs (5fa2b6f)
- add .js suffix for all relative imports
- update imports in all tests/pkgs (effd591)
2.0.0 (2021-10-12)
- major update of ALL pkgs (export maps, ESM only) (0d1d6ea)
- BREAKING CHANGE: discontinue CommonJS & UMD versions
- only ESM modules will be published from now on
- CJS obsolete due to ESM support in recent versions of node:
- i.e. launch NodeJS via:
node --experimental-specifier-resolution=node --experimental-repl-await
- in the node REPL use
await import(...)
instead ofrequire()
- UMD obsolete due to widespread browser support for ESM Also:
- normalize/restructure/reorg all package.json files
- cleanup all build scripts, remove obsolete
- switch from mocha to @thi.ng/testament for all tests
- update all tests in all pkgs (8b582bc)
- update all to use @thi.ng/testament
- update imports (ee847e0)
- minor pkg restructure (various) (47f88d2)
0.3.7 (2021-03-17)
- dedupe OOB error handling (84bbaaa)
0.3.0 (2021-02-20)
- major update Adjacency(Bit)Matrix classes & API (cd71a5f)
- BREAKING CHANGE: fixed order add/removeEdge(), valence(), neighbors(),
remove static methods
- update IGraph, add/update methods, return types, generics
- remove/replace static methods in Adjacency(Bit)Matrix
- add defAdjBitMatrix/defAdjMatrix
- refactor/extract/re-use .toDot() graphviz conversion
- update tests
- add IGraph.degree() & impls (9fb02ac)
- BREAKING CHANGE: replace .valence() w/ more flexible .degree() methods
- add IGraph.degree() with same default behavior as .valence(), but supporting diff degree types (in/out/inout)
- add .degree() impls for all
- remove old .valence() methods
- update tests
- add AdjacencyList impl & initial tests (8f44c97)
- pre-cache MST edge costs (290f3a6)
- update BFS/DFS impls (7bb045b)
- add one-off search bfs()/dfs() functions/syntax sugar
- update BFS to be single-source only (for more predictable results)
- update DisjointSet, add defDisjointSet() (cfe3ed5)
0.2.0 (2020-12-22)
0.1.67 (2020-12-07)
- update type-only imports (b8243b9)
0.1.65 (2020-11-24)
- update destructuring (3524982)
0.1.61 (2020-09-13)
- update imports, use new Fn types in various pkgs (ced1e5d)
0.1.35 (2020-04-05)
- switch to non-const enums (fd5c401)
0.1.29 (2020-02-25)
- update type imports (3d9ebcf)
0.1.16 (2019-07-07)
- TS strictNullChecks (b628e61)
0.1.7 (2019-03-18)
- update subsets() to use canonical() (0918c5b)