- 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.
8.11.3 (2024-06-21)
- rename various rest args to be more semantically meaningful (8088a56)
- enforce uniform naming convention of internal functions (56992b2)
8.11.0 (2024-04-20)
- add Maybe type alias, refactor related (0777d33)
8.10.0 (2024-04-08)
8.9.0 (2023-08-04)
- add generics for Event & INotify (7702882)
- add basic utility functions: identity, always, never (4801e2d)
- add generics for INotify, Event, Listener types (dd0a6ed)
- add IIDGen interface (26cf9d1)
8.8.0 (2023-04-19)
- add typedArrayOfVec() (39307bf)
8.7.0 (2023-02-05)
- add narrow/widenType() fns (5ce9938)
8.6.0 (2022-12-16)
- add SomeRequired type alias (ff28e71)
8.5.0 (2022-11-28)
- add boolean result for INotifiy.notify(), update mixin (f4cb33a)
8.4.5 (2022-11-01)
- off-by-one error for BIT_SHIFTS LUT (f64) (dae2279)
8.4.0 (2022-08-15)
- add i64/u64 support for typed arrays (0bb5277)
- add various 64bit bigint related types & lookups
- add BIT_SHIFTS LUT
- update sizeOf()
- update typedArray()
8.3.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
- disable debug console output in mixin() (50354c8)
- 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.
8.2.0 (2021-11-10)
- update IGrid types, add mixins (f0f3236)
- add missing module exports (fc8805e)
- update all countdown loops (a5f374b)
8.1.0 (2021-11-03)
8.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)
8.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
- remove obsolete assert() (5f6ec5c)
- BREAKING CHANGE: assert() moved to @thi.ng/errors pkg
- see 7030a6aec for details
- major pkg restructure (98e286d)
- BREAKING CHANGE: major pkg restructure, migrations
- migrate logging related types/classes to new @thi.ng/logger pkg
- see e0399a8f6 for details
- migrate
exposeGlobal()
to new @thi.ng/expose pkg- see 323995fd7 for details
- lift /api source files to main /src folder for easier import
- this pkg now only contains type defs, constants, decorators and mixins all other functionality migrated to other packages...
- migrate logging related types/classes to new @thi.ng/logger pkg
- update all tests in all pkgs (8b582bc)
- update all to use @thi.ng/testament
- 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:
- minor pkg restructure (various) (47f88d2)
7.2.0 (2021-09-03)
- add DeepArrayValue type (a309fac)
7.1.7 (2021-08-04)
- dedupe IEnableMixin method impls (3433e5d)
7.1.5 (2021-06-08)
- #294 update recursive helper types (6ad582d)
- simplify Head, Tail, Prepend type defs
- update ArrayValue, Reverse
7.1.0 (2021-03-03)
- add StringOrSym type alias (fb92c9d)
7.0.0 (2021-02-20)
- replace Type enum w/ strings consts (a333d41)
- BREAKING CHANGE: replace Type enum w/ string consts
- update Type, UintType, IntType, FloatType aliases
- update GL2TYPE, TYPE2GL, SIZEOF, TYPEDARRAY_CTORS tables
- add asNativeType(), asGLType() conversions
- add sizeOf()
- add uintTypeForBits(), intTypeForBits()
- update/rename uintTypeForSize(), intTypeForSize()
- add Range type (5d94974)
- add typedArrayType() classifier (5c81fd8)
- more finely grained typedarray types (8316d05)
6.13.4 (2020-12-07)
- update type-only imports (94be931)
6.13.0 (2020-09-13)
- update assert() & exposeGlobal() detection (2cdc038)
6.12.0 (2020-07-28)
- add Always & ArrayValue types (dcf9aeb)
6.11.0 (2020-06-01)
- add deref(), isDeref() fns & MaybeDeref (722bf3e) (cherry picked from commit 2ab46adee629bf06d064bdcd5c064f7fcc1e7433)
- add deref(), isDeref() fns & MaybeDeref (2ab46ad)
6.10.0 (2020-04-06)
- add LogLevelName type (25b6c67)
6.9.1 (2020-04-05)
- switch to non-const enums (b247903)
6.9.0 (2020-03-28)
- add Path0-8, PathVal1-8, DeepPath types (0c76108)
- update Path alias, add doc strings (e2b35bc)
- add Derefed & DerefedKeys types (95f1576)
- add optional props in Keys/Val types (08b88f0)
- force intermediate props using
Required<T>
- update Keys1-8, Val1-8
- update KeysN / ValN
- force intermediate props using
- update path value & tuple types (aa9db3a)
- replace PathVal1-8 w/ PathVal
- add OptPathVal
- add IsOpt, IsOptPath type predicates
- add IsEmpty type predicate
- update Last, ButLast tuple types
6.8.0 (2020-02-25)
- add TypedKeys, NumericKeys, StringKeys (fab1a5e)
- fix imports (e3e0cdc)
- update type exports, internal restructure (b8c7681)
- dissolve api.ts
- move constants to constants.ts
6.7.1 (2020-01-26)
6.7.0 (2020-01-24)
- add exposeGlobal(), update assert(), update readme (7981cc9)
- add more RangeXX types & RangeValueMap (654ea53)
- add IClear interface (38f03ff)
- added the Head type (f000a3d)
- added the Tail type (fa59ff3)
- added the Prepend type (7bfe7a8)
- added the Reverse type (88cfaa4)
- added the KeysN type (e0f0e90)
- added the ValN type (b48623f)
- added the Last type (44ae2f7)
- added the Init type (f6c333a)
- added the WithoutN type (0d13af5)
- added the ReplaceN type (4da54ae)
- add Drop, TupleLength, update Tuple (dc79324)
- add IReset interface (d491bd0)
- don't use optional chaining, update assert(), exposeGlobal() (ddfc65e)
6.6.0 (2019-11-30)
- add Uint/Int/FloatType & helpers (1d3c824)
- add grouped Type aliases
- add uintType() / intType() helpers
- add ISeq, ISeqable (541e9c8)
- add WithoutX & ReplaceX types, update KeysX/ValX (7707370)
- add versions up to arity 8
- replace error w/ assert() in decorator (adfec26)
6.5.0 (2019-11-09)
- add types, split api.ts into separate files (b72e664)
- add GLType enum & GL2TYPE / TYPE2GL conversions
- add TypedArrayContstructor, TYPEDARRAY_CTORS LUT
- add RangeXX types (fc9cf21)
- add typedArray() factory, update type mappers, docs (ac7fa13)
6.4.0 (2019-09-21)
- add Nullable (8366223) (cherry picked from commit bed4c3c95293374bcf002266c4a906e11f68bed3)
- add Nullable (bed4c3c)
- Use
this
parameter to avoid casts in mixins. (c78cf32)
6.3.0 (2019-07-07)
- enable TS strict compiler flags (refactor) (0430d01)
- add missing return types for IEnable, IGet, IGetIn
- update mixins, add private interfaces
- update assert() message arg types (6137b48)
- add support for supplying message as no-arg fn to delay execution of template string literals
- add Select2/3/4 conditional types (a4bfb88)
- update IEnable mixin (strictNullChecks) (525ad0d)
- update IStack return types (TS strictNullChecks flag) (daf1f4c)
6.2.0 (2019-05-22)
- add Type enum, IntArray, UIntArray, FloatArray, SIZEOF (b0c44fe)
6.1.1 (2019-04-26)
- make LogLevel non-const enum, minor fix ConsoleLogger (88d5e9d)
6.1.0 (2019-04-24)
- add common logging types & default impls (4578604)
- add ILogger interface, LogLevel enum
- add NULL_LOGGER & ConsoleLogger
- update ILogger, freeze NULL_LOGGER (27ff8de)
6.0.0 (2019-03-28)
- add new types, update existing (560eb90)
- add Keys* & Val* types
- add ArrayLikeIterable
- add Primitive
- add Tuple, IterableTuple
- BREAKING CHANGE: split up, remove & update various interfaces
- split IAssociative => IAssoc, IAssocIn
- update IDissoc, add IDissocIn
- split IGet => IGet, IGetIn
- update IInto generics & return type
- update ISet, remove IImmutableSet
- update IStack, remove IImmutableStack
5.1.0 (2019-03-10)
- update Fn args in various packages (e453ac3)
5.0.0 (2019-01-21)
- update package build scripts / outputs (f913d7b)
- BREAKING CHANGE: rename mixins to avoid name clashes, update decorators
- append
Mixin
suffix to all mixins (i.e.INotify
=>INotifyMixin
) - update re-exports of mixins & decorators (no more nested child namespace)
- append
- update assert(), re-export mixin() (9f91cfa)
4.2.0 (2018-09-22)
- add
IToHiccup
interface (e390a54)
4.1.0 (2018-08-24)
- add new/move type aliases into api.ts (cf30ba2)
- Fn, FnAny, Pair, SEMAPHORE
- add NumericArray and TypedArray types (519394b)
4.0.6 (2018-08-01)
- TS3.0 PropertyKey handling (2047807)
4.0.0 (2018-05-12)
- update interfaces, add docs (9b38860)
- BREAKING CHANGE: IBind, IEnable now include generics,
update IIndexed, IMeta, ISet, IStack
- add IInto
- add IImmutableSet
- add IImmutableStack
- minor update IEnabled mixin
3.0.0 (2018-05-10)
- remove obsolete files from package (f051ca3)
- BREAKING CHANGE: @thi.ng/api now only contains type declarations, decorators and mixins. All other features have been moved to new dedicated packages:
2.3.1 (2018-04-29)
- major speedup equivObject(), update equivSet() (7fdf172)
- equivSet() now only checks keys
- add equivMap() to check full entries/pairs
2.3.0 (2018-04-26)
- support more types in equiv(), add tests (2ac8bff)
- add equivSetLike() for ES6 Set/Map
- add checks for Date, RegExp & NaN
2.2.0 (2018-04-08)
- add bench() & timed() utils (d310345)
2.1.1 (2018-03-28)
- illegalState() creates IllegalStateError (2b7e99b)
2.1.0 (2018-03-21)
- add error types & ctor fns (4d3785f)
- update mixins, IEnable / INotify return types (fbb19ac)
2.0.1 (2018-02-02)
- update compare() & equiv() (110a9de)
2.0.0 (2018-02-01)
- update equiv() null handling, add tests (878520e)
- BREAKING CHANGE: equiv now treats null & undefined as equal
- fix equiv string handling, update tests (1354e29)
1.5.0 (2018-01-31)
- add Predicate2 & StatefulPredicate2 types (fbf8453)
1.4.0 (2018-01-29)
- update IWatch & mixin, boolean returns (bddd5ce)
1.3.0 (2018-01-28)
- add StatefulPredicate (c74353b)
1.2.1 (2018-01-24)
- initial re-import as monorepo, update readme files, cleanup imports (04ff6e9)