- 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.
2.1.140 (2024-08-20)
- update internal close mode handling (33b1d16f34) (adb89d5)
2.1.127 (2024-06-21)
- enforce uniform naming convention of internal functions (56992b2)
2.1.123 (2024-04-20)
- update type usage (a216a9b)
2.1.121 (2024-04-08)
- update reducer handling due to updates in @thi.ng/transducers pkg (e0e5654)
2.1.102 (2024-02-16)
- update LOGGER handling (fc1df24)
2.1.81 (2023-11-09)
- update all tests (packages A-S) (e3085e4)
2.1.50 (2023-04-08)
- update TripleStore.toDot() impl (303a730)
2.1.7 (2022-04-07)
- replace deprecated .substr() w/ .substring() (0710509)
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.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 (138571a)
- update imports (transducers) (7fc60cd)
- update deps & imports in various pkgs (e1cf29e)
- largely related to recent updates/restructuring of these packages:
- api
- defmulti
- errors
- logger
- largely related to recent updates/restructuring of these packages:
- update imports in various pkgs (rstream) (342cf54)
- migrate logger to own file (6f0c8c3)
1.1.66 (2021-03-12)
1.1.52 (2020-12-07)
1.1.46 (2020-09-13)
- update imports (a35efa8)
1.1.42 (2020-07-28)
- update sync() callsites (0fc16c4)
1.1.10 (2020-02-25)
- update imports (6bf5df5)
1.1.7 (2019-11-30)
- update TripleStore to reflect rstream changes (1936cd3)
1.1.4 (2019-08-21)
- simplify .findTriple(), move xforms, update deps (c6a40df)
- update addQueryFromSpec, nextID (4a140e8)
1.1.0 (2019-07-07)
- enable TS strict compiler flags (refactor) (6d35b86)
- disambiguate return generics for addPatternQuery() (7ffe25d)
- TS strictNullChecks (0c05d6c)
1.0.24 (2019-04-24)
- replace DEBUG w/ LOGGER impl, add setLogger() (77fcc9b)
1.0.0 (2019-01-21)
- update package scripts, outputs, imports in remaining packages (f912a84)
- BREAKING CHANGE: enable multi-outputs (ES6 modules, CJS, UMD)
- build scripts now first build ES6 modules in package root, then call
scripts/bundle-module
to build minified CJS & UMD bundles in/lib
- all imports MUST be updated to only refer to package level (not individual files anymore). tree shaking in user land will get rid of all unused imported symbols
- build scripts now first build ES6 modules in package root, then call
- use rstream nextID() util (fix regression) (a42b2e1)
0.3.35 (2018-08-24)
- simplify transducer uses (eb1714f)
0.3.32 (2018-08-03)
- remove obsolete
reset
in addJoin() (361f8b4)
0.3.30 (2018-08-01)
- cleanup imports (4db3fa8)
0.3.3 (2018-05-10)
- update deps & imports in all packages due to @thi.ng/api split (bc45636)
0.3.0 (2018-04-27)
- add obj->triple converter, update readme & example (6f95bcb)
0.2.2 (2018-04-26)
- simplify case selection in addPatternQuery() (d36a5ea)
0.2.1 (2018-04-26)
- optimize pattern queries, fix bindVars() (75f2af2)
- using only single intersection if 2 null terms in pattern query
- update bindVars() to create shallow copy (else dedupe fails)
0.2.0 (2018-04-26)
- add addQueryJoin(), add type aliases, update tests (c5f36a2)
- add removeTriple(), simplify wildcard subqueries (443ff8f)
- add freeID list to reduce store fragmentation
- remove obsolete allSelections cache
- fix addQueryJoin() xform to also return empty result sets
- rename TripleStore methods, use Set-like API (9b5c58a)
- rename addTriple() => add()
- rename addTriples() => into()
- rename removeTriple() => delete()
- add get()
- refactor has()
- add path query, multi-joins, pattern query reuse (679c4e0)
- add addPathQuery()
- add addMultiJoin()
- rename addQueryJoin() => addJoin()
- update query ID arg order
- add type aliases
- add pattern query cache
- add patternVars() helper
- add query spec types, addQueryFromSpec(), dedupe xforms (d093a5c)