1 | # Change Log
|
2 |
|
3 | - **Last updated**: 2022-11-30T22:27:37Z
|
4 | - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
|
5 |
|
6 | All notable changes to this project will be documented in this file.
|
7 | See [Conventional Commits](https://conventionalcommits.org/) for commit guidelines.
|
8 |
|
9 | **Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
|
10 | and/or version bumps of transitive dependencies.
|
11 |
|
12 | ## [8.5.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@8.5.0) (2022-11-28)
|
13 |
|
14 | #### 🚀 Features
|
15 |
|
16 | - add boolean result for INotifiy.notify(), update mixin ([f4cb33a](https://github.com/thi-ng/umbrella/commit/f4cb33a))
|
17 |
|
18 | ### [8.4.5](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@8.4.5) (2022-11-01)
|
19 |
|
20 | #### 🩹 Bug fixes
|
21 |
|
22 | - off-by-one error for BIT_SHIFTS LUT (f64) ([dae2279](https://github.com/thi-ng/umbrella/commit/dae2279))
|
23 |
|
24 | ## [8.4.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@8.4.0) (2022-08-15)
|
25 |
|
26 | #### 🚀 Features
|
27 |
|
28 | - add i64/u64 support for typed arrays ([0bb5277](https://github.com/thi-ng/umbrella/commit/0bb5277))
|
29 | - add various 64bit bigint related types & lookups
|
30 | - add BIT_SHIFTS LUT
|
31 | - update sizeOf()
|
32 | - update typedArray()
|
33 |
|
34 | ## [8.3.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@8.3.0) (2021-11-17)
|
35 |
|
36 | #### 🚀 Features
|
37 |
|
38 | - Using workspaces for local tools ([bf7a404](https://github.com/thi-ng/umbrella/commit/bf7a404))
|
39 | Improving the overall build ergonomics
|
40 | - introduced a tools workspaces
|
41 | - imported it in all needed packages/examples
|
42 | - inclusive project root
|
43 |
|
44 | #### 🩹 Bug fixes
|
45 |
|
46 | - disable debug console output in mixin() ([50354c8](https://github.com/thi-ng/umbrella/commit/50354c8))
|
47 |
|
48 | #### ♻️ Refactoring
|
49 |
|
50 | - testrunner to binary ([4ebbbb2](https://github.com/thi-ng/umbrella/commit/4ebbbb2))
|
51 | this commit reverts (partly) changes made in:
|
52 | ef346d7a8753590dc9094108a3d861a8dbd5dd2c
|
53 | overall purpose is better testament ergonomics:
|
54 | instead of having to pass NODE_OPTIONS with every invocation
|
55 | having a binary to handle this for us.
|
56 |
|
57 | ## [8.2.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@8.2.0) (2021-11-10)
|
58 |
|
59 | #### 🚀 Features
|
60 |
|
61 | - update IGrid types, add mixins ([f0f3236](https://github.com/thi-ng/umbrella/commit/f0f3236))
|
62 |
|
63 | #### 🩹 Bug fixes
|
64 |
|
65 | - add missing module exports ([fc8805e](https://github.com/thi-ng/umbrella/commit/fc8805e))
|
66 |
|
67 | #### ♻️ Refactoring
|
68 |
|
69 | - update all countdown loops ([a5f374b](https://github.com/thi-ng/umbrella/commit/a5f374b))
|
70 |
|
71 | ## [8.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@8.1.0) (2021-11-03)
|
72 |
|
73 | #### 🚀 Features
|
74 |
|
75 | - add IGrid2D/3D interfaces ([e57ad7e](https://github.com/thi-ng/umbrella/commit/e57ad7e))
|
76 | - add asInt() coercion helper ([49cd772](https://github.com/thi-ng/umbrella/commit/49cd772))
|
77 |
|
78 | ### [8.0.1](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@8.0.1) (2021-10-13)
|
79 |
|
80 | #### ♻️ Refactoring
|
81 |
|
82 | - update imports in all pkgs ([5fa2b6f](https://github.com/thi-ng/umbrella/commit/5fa2b6f))
|
83 | - add .js suffix for all relative imports
|
84 | - update imports in all tests/pkgs ([effd591](https://github.com/thi-ng/umbrella/commit/effd591))
|
85 |
|
86 | # [8.0.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@8.0.0) (2021-10-12)
|
87 |
|
88 | #### 🛑 Breaking changes
|
89 |
|
90 | - major update of ALL pkgs (export maps, ESM only) ([0d1d6ea](https://github.com/thi-ng/umbrella/commit/0d1d6ea))
|
91 | - BREAKING CHANGE: discontinue CommonJS & UMD versions
|
92 | - only ESM modules will be published from now on
|
93 | - CJS obsolete due to ESM support in recent versions of node:
|
94 | - i.e. launch NodeJS via:
|
95 | - `node --experimental-specifier-resolution=node --experimental-repl-await`
|
96 | - in the node REPL use `await import(...)` instead of `require()`
|
97 | - UMD obsolete due to widespread browser support for ESM
|
98 | Also:
|
99 | - normalize/restructure/reorg all package.json files
|
100 | - cleanup all build scripts, remove obsolete
|
101 | - switch from mocha to [@thi.ng/testament](https://github.com/thi-ng/umbrella/tree/main/packages/testament) for all tests
|
102 | - remove obsolete assert() ([5f6ec5c](https://github.com/thi-ng/umbrella/commit/5f6ec5c))
|
103 | - BREAKING CHANGE: assert() moved to [@thi.ng/errors](https://github.com/thi-ng/umbrella/tree/main/packages/errors) pkg
|
104 | - see [7030a6aec](https://github.com/thi-ng/umbrella/commit/7030a6aec) for details
|
105 | - major pkg restructure ([98e286d](https://github.com/thi-ng/umbrella/commit/98e286d))
|
106 | - BREAKING CHANGE: major pkg restructure, migrations
|
107 | - migrate logging related types/classes to new [@thi.ng/logger](https://github.com/thi-ng/umbrella/tree/main/packages/logger) pkg
|
108 | - see [e0399a8f6](https://github.com/thi-ng/umbrella/commit/e0399a8f6) for details
|
109 | - migrate `exposeGlobal()` to new [@thi.ng/expose](https://github.com/thi-ng/umbrella/tree/main/packages/expose) pkg
|
110 | - see [323995fd7](https://github.com/thi-ng/umbrella/commit/323995fd7) for details
|
111 | - lift /api source files to main /src folder for easier import
|
112 | - this pkg now only contains type defs, constants, decorators and mixins
|
113 | all other functionality migrated to other packages...
|
114 |
|
115 | #### ♻️ Refactoring
|
116 |
|
117 | - update all tests in _all_ pkgs ([8b582bc](https://github.com/thi-ng/umbrella/commit/8b582bc))
|
118 | - update all to use [@thi.ng/testament](https://github.com/thi-ng/umbrella/tree/main/packages/testament)
|
119 | - update deps & imports in various pkgs ([e1cf29e](https://github.com/thi-ng/umbrella/commit/e1cf29e))
|
120 | - largely related to recent updates/restructuring of these packages:
|
121 | - api
|
122 | - defmulti
|
123 | - errors
|
124 | - logger
|
125 | - minor pkg restructure (various) ([47f88d2](https://github.com/thi-ng/umbrella/commit/47f88d2))
|
126 |
|
127 | ## [7.2.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@7.2.0) (2021-09-03)
|
128 |
|
129 | #### 🚀 Features
|
130 |
|
131 | - add DeepArrayValue type ([a309fac](https://github.com/thi-ng/umbrella/commit/a309fac))
|
132 |
|
133 | ### [7.1.7](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@7.1.7) (2021-08-04)
|
134 |
|
135 | #### ♻️ Refactoring
|
136 |
|
137 | - dedupe IEnableMixin method impls ([3433e5d](https://github.com/thi-ng/umbrella/commit/3433e5d))
|
138 |
|
139 | ### [7.1.5](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@7.1.5) (2021-06-08)
|
140 |
|
141 | #### ♻️ Refactoring
|
142 |
|
143 | - [#294](https://github.com/thi-ng/umbrella/issues/294) update recursive helper types ([6ad582d](https://github.com/thi-ng/umbrella/commit/6ad582d))
|
144 | - simplify Head, Tail, Prepend type defs
|
145 | - update ArrayValue, Reverse
|
146 |
|
147 | ## [7.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@7.1.0) (2021-03-03)
|
148 |
|
149 | #### 🚀 Features
|
150 |
|
151 | - add StringOrSym type alias ([fb92c9d](https://github.com/thi-ng/umbrella/commit/fb92c9d))
|
152 |
|
153 | # [7.0.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@7.0.0) (2021-02-20)
|
154 |
|
155 | #### 🛑 Breaking changes
|
156 |
|
157 | - replace Type enum w/ strings consts ([a333d41](https://github.com/thi-ng/umbrella/commit/a333d41))
|
158 | - BREAKING CHANGE: replace Type enum w/ string consts
|
159 | - update Type, UintType, IntType, FloatType aliases
|
160 | - update GL2TYPE, TYPE2GL, SIZEOF, TYPEDARRAY_CTORS tables
|
161 | - add asNativeType(), asGLType() conversions
|
162 | - add sizeOf()
|
163 | - add uintTypeForBits(), intTypeForBits()
|
164 | - update/rename uintTypeForSize(), intTypeForSize()
|
165 |
|
166 | #### 🚀 Features
|
167 |
|
168 | - add Range type ([5d94974](https://github.com/thi-ng/umbrella/commit/5d94974))
|
169 | - add typedArrayType() classifier ([5c81fd8](https://github.com/thi-ng/umbrella/commit/5c81fd8))
|
170 | - more finely grained typedarray types ([8316d05](https://github.com/thi-ng/umbrella/commit/8316d05))
|
171 |
|
172 | ### [6.13.4](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@6.13.4) (2020-12-07)
|
173 |
|
174 | #### ♻️ Refactoring
|
175 |
|
176 | - update type-only imports ([94be931](https://github.com/thi-ng/umbrella/commit/94be931))
|
177 |
|
178 | ## [6.13.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@6.13.0) (2020-09-13)
|
179 |
|
180 | #### 🚀 Features
|
181 |
|
182 | - add FnU and FnN function types ([4ba48d0](https://github.com/thi-ng/umbrella/commit/4ba48d0))
|
183 | - add DeepPartial type ([0d9a0de](https://github.com/thi-ng/umbrella/commit/0d9a0de))
|
184 |
|
185 | #### 🩹 Bug fixes
|
186 |
|
187 | - update assert() & exposeGlobal() detection ([2cdc038](https://github.com/thi-ng/umbrella/commit/2cdc038))
|
188 |
|
189 | ## [6.12.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@6.12.0) (2020-07-28)
|
190 |
|
191 | #### 🚀 Features
|
192 |
|
193 | - add Always & ArrayValue types ([dcf9aeb](https://github.com/thi-ng/umbrella/commit/dcf9aeb))
|
194 |
|
195 | ## [6.11.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@6.11.0) (2020-06-01)
|
196 |
|
197 | #### 🚀 Features
|
198 |
|
199 | - add deref(), isDeref() fns & MaybeDeref ([722bf3e](https://github.com/thi-ng/umbrella/commit/722bf3e))
|
200 | (cherry picked from commit [2ab46adee629bf06d064bdcd5c064f7fcc1e7433](https://github.com/thi-ng/umbrella/commit/2ab46adee629bf06d064bdcd5c064f7fcc1e7433))
|
201 | - add deref(), isDeref() fns & MaybeDeref ([2ab46ad](https://github.com/thi-ng/umbrella/commit/2ab46ad))
|
202 |
|
203 | ## [6.10.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@6.10.0) (2020-04-06)
|
204 |
|
205 | #### 🚀 Features
|
206 |
|
207 | - add LogLevelName type ([25b6c67](https://github.com/thi-ng/umbrella/commit/25b6c67))
|
208 |
|
209 | ### [6.9.1](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@6.9.1) (2020-04-05)
|
210 |
|
211 | #### ♻️ Refactoring
|
212 |
|
213 | - switch to non-const enums ([b247903](https://github.com/thi-ng/umbrella/commit/b247903))
|
214 |
|
215 | ## [6.9.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@6.9.0) (2020-03-28)
|
216 |
|
217 | #### 🚀 Features
|
218 |
|
219 | - add Path0-8, PathVal1-8, DeepPath types ([0c76108](https://github.com/thi-ng/umbrella/commit/0c76108))
|
220 | - update Path alias, add doc strings ([e2b35bc](https://github.com/thi-ng/umbrella/commit/e2b35bc))
|
221 | - add Derefed & DerefedKeys types ([95f1576](https://github.com/thi-ng/umbrella/commit/95f1576))
|
222 | - add optional props in Keys/Val types ([08b88f0](https://github.com/thi-ng/umbrella/commit/08b88f0))
|
223 | - force intermediate props using `Required<T>`
|
224 | - update Keys1-8, Val1-8
|
225 | - update KeysN / ValN
|
226 |
|
227 | #### ♻️ Refactoring
|
228 |
|
229 | - update path value & tuple types ([aa9db3a](https://github.com/thi-ng/umbrella/commit/aa9db3a))
|
230 | - replace PathVal1-8 w/ PathVal
|
231 | - add OptPathVal
|
232 | - add IsOpt, IsOptPath type predicates
|
233 | - add IsEmpty type predicate
|
234 | - update Last, ButLast tuple types
|
235 |
|
236 | ## [6.8.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@6.8.0) (2020-02-25)
|
237 |
|
238 | #### 🚀 Features
|
239 |
|
240 | - add TypedKeys, NumericKeys, StringKeys ([fab1a5e](https://github.com/thi-ng/umbrella/commit/fab1a5e))
|
241 |
|
242 | #### 🩹 Bug fixes
|
243 |
|
244 | - fix imports ([e3e0cdc](https://github.com/thi-ng/umbrella/commit/e3e0cdc))
|
245 |
|
246 | #### ♻️ Refactoring
|
247 |
|
248 | - update type exports, internal restructure ([b8c7681](https://github.com/thi-ng/umbrella/commit/b8c7681))
|
249 | - dissolve api.ts
|
250 | - move constants to constants.ts
|
251 |
|
252 | ### [6.7.1](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@6.7.1) (2020-01-26)
|
253 |
|
254 | #### ♻️ Refactoring
|
255 |
|
256 | - update IToHiccup, add opt args ([ac35685](https://github.com/thi-ng/umbrella/commit/ac35685))
|
257 | - remove obsolete Drop/DropReducer ([5e80c4d](https://github.com/thi-ng/umbrella/commit/5e80c4d))
|
258 |
|
259 | ## [6.7.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@6.7.0) (2020-01-24)
|
260 |
|
261 | #### 🚀 Features
|
262 |
|
263 | - add exposeGlobal(), update assert(), update readme ([7981cc9](https://github.com/thi-ng/umbrella/commit/7981cc9))
|
264 | - add more RangeXX types & RangeValueMap ([654ea53](https://github.com/thi-ng/umbrella/commit/654ea53))
|
265 | - add IClear interface ([38f03ff](https://github.com/thi-ng/umbrella/commit/38f03ff))
|
266 | - added the Head type ([f000a3d](https://github.com/thi-ng/umbrella/commit/f000a3d))
|
267 | - added the Tail type ([fa59ff3](https://github.com/thi-ng/umbrella/commit/fa59ff3))
|
268 | - added the Prepend type ([7bfe7a8](https://github.com/thi-ng/umbrella/commit/7bfe7a8))
|
269 | - added the Reverse type ([88cfaa4](https://github.com/thi-ng/umbrella/commit/88cfaa4))
|
270 | - added the KeysN type ([e0f0e90](https://github.com/thi-ng/umbrella/commit/e0f0e90))
|
271 | - added the ValN type ([b48623f](https://github.com/thi-ng/umbrella/commit/b48623f))
|
272 | - added the Last type ([44ae2f7](https://github.com/thi-ng/umbrella/commit/44ae2f7))
|
273 | - added the Init type ([f6c333a](https://github.com/thi-ng/umbrella/commit/f6c333a))
|
274 | - added the WithoutN type ([0d13af5](https://github.com/thi-ng/umbrella/commit/0d13af5))
|
275 | - added the ReplaceN type ([4da54ae](https://github.com/thi-ng/umbrella/commit/4da54ae))
|
276 | - add Drop, TupleLength, update Tuple ([dc79324](https://github.com/thi-ng/umbrella/commit/dc79324))
|
277 | - add IReset interface ([d491bd0](https://github.com/thi-ng/umbrella/commit/d491bd0))
|
278 |
|
279 | #### 🩹 Bug fixes
|
280 |
|
281 | - don't use optional chaining, update assert(), exposeGlobal() ([ddfc65e](https://github.com/thi-ng/umbrella/commit/ddfc65e))
|
282 |
|
283 | ## [6.6.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@6.6.0) (2019-11-30)
|
284 |
|
285 | #### 🚀 Features
|
286 |
|
287 | - add Uint/Int/FloatType & helpers ([1d3c824](https://github.com/thi-ng/umbrella/commit/1d3c824))
|
288 | - add grouped Type aliases
|
289 | - add uintType() / intType() helpers
|
290 | - add ISeq, ISeqable ([541e9c8](https://github.com/thi-ng/umbrella/commit/541e9c8))
|
291 | - add WithoutX & ReplaceX types, update KeysX/ValX ([7707370](https://github.com/thi-ng/umbrella/commit/7707370))
|
292 | - add versions up to arity 8
|
293 |
|
294 | #### ♻️ Refactoring
|
295 |
|
296 | - replace error w/ assert() in decorator ([adfec26](https://github.com/thi-ng/umbrella/commit/adfec26))
|
297 |
|
298 | ## [6.5.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@6.5.0) (2019-11-09)
|
299 |
|
300 | #### 🚀 Features
|
301 |
|
302 | - add types, split api.ts into separate files ([b72e664](https://github.com/thi-ng/umbrella/commit/b72e664))
|
303 | - add GLType enum & GL2TYPE / TYPE2GL conversions
|
304 | - add TypedArrayContstructor, TYPEDARRAY_CTORS LUT
|
305 | - add RangeXX types ([fc9cf21](https://github.com/thi-ng/umbrella/commit/fc9cf21))
|
306 | - add typedArray() factory, update type mappers, docs ([ac7fa13](https://github.com/thi-ng/umbrella/commit/ac7fa13))
|
307 |
|
308 | #### ♻️ Refactoring
|
309 |
|
310 | - update INotifyMixin to clean up listeners ([ed2be64](https://github.com/thi-ng/umbrella/commit/ed2be64))
|
311 | - fix [#168](https://github.com/thi-ng/umbrella/issues/168), refactor Range types ([39bf8f1](https://github.com/thi-ng/umbrella/commit/39bf8f1))
|
312 |
|
313 | ## [6.4.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@6.4.0) (2019-09-21)
|
314 |
|
315 | #### 🚀 Features
|
316 |
|
317 | - add Nullable ([8366223](https://github.com/thi-ng/umbrella/commit/8366223))
|
318 | (cherry picked from commit [bed4c3c95293374bcf002266c4a906e11f68bed3](https://github.com/thi-ng/umbrella/commit/bed4c3c95293374bcf002266c4a906e11f68bed3))
|
319 | - add Nullable ([bed4c3c](https://github.com/thi-ng/umbrella/commit/bed4c3c))
|
320 |
|
321 | #### ♻️ Refactoring
|
322 |
|
323 | - Use `this` parameter to avoid casts in mixins. ([c78cf32](https://github.com/thi-ng/umbrella/commit/c78cf32))
|
324 |
|
325 | ## [6.3.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@6.3.0) (2019-07-07)
|
326 |
|
327 | #### 🚀 Features
|
328 |
|
329 | - enable TS strict compiler flags (refactor) ([0430d01](https://github.com/thi-ng/umbrella/commit/0430d01))
|
330 | - add missing return types for IEnable, IGet, IGetIn
|
331 | - update mixins, add private interfaces
|
332 | - update assert() message arg types ([6137b48](https://github.com/thi-ng/umbrella/commit/6137b48))
|
333 | - add support for supplying message as no-arg fn to delay
|
334 | execution of template string literals
|
335 | - add Select2/3/4 conditional types ([a4bfb88](https://github.com/thi-ng/umbrella/commit/a4bfb88))
|
336 |
|
337 | #### ♻️ Refactoring
|
338 |
|
339 | - update IEnable mixin (strictNullChecks) ([525ad0d](https://github.com/thi-ng/umbrella/commit/525ad0d))
|
340 | - update IStack return types (TS strictNullChecks flag) ([daf1f4c](https://github.com/thi-ng/umbrella/commit/daf1f4c))
|
341 |
|
342 | ## [6.2.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@6.2.0) (2019-05-22)
|
343 |
|
344 | #### 🚀 Features
|
345 |
|
346 | - add Type enum, IntArray, UIntArray, FloatArray, SIZEOF ([b0c44fe](https://github.com/thi-ng/umbrella/commit/b0c44fe))
|
347 |
|
348 | ### [6.1.1](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@6.1.1) (2019-04-26)
|
349 |
|
350 | #### 🩹 Bug fixes
|
351 |
|
352 | - make LogLevel non-const enum, minor fix ConsoleLogger ([88d5e9d](https://github.com/thi-ng/umbrella/commit/88d5e9d))
|
353 |
|
354 | ## [6.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@6.1.0) (2019-04-24)
|
355 |
|
356 | #### 🚀 Features
|
357 |
|
358 | - add common logging types & default impls ([4578604](https://github.com/thi-ng/umbrella/commit/4578604))
|
359 | - add ILogger interface, LogLevel enum
|
360 | - add NULL_LOGGER & ConsoleLogger
|
361 | - update ILogger, freeze NULL_LOGGER ([27ff8de](https://github.com/thi-ng/umbrella/commit/27ff8de))
|
362 |
|
363 | # [6.0.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@6.0.0) (2019-03-28)
|
364 |
|
365 | #### 🛑 Breaking changes
|
366 |
|
367 | - add new types, update existing ([560eb90](https://github.com/thi-ng/umbrella/commit/560eb90))
|
368 | - add Keys* & Val* types
|
369 | - add ArrayLikeIterable
|
370 | - add Primitive
|
371 | - add Tuple, IterableTuple
|
372 | - BREAKING CHANGE: split up, remove & update various interfaces
|
373 | - split IAssociative => IAssoc, IAssocIn
|
374 | - update IDissoc, add IDissocIn
|
375 | - split IGet => IGet, IGetIn
|
376 | - update IInto generics & return type
|
377 | - update ISet, remove IImmutableSet
|
378 | - update IStack, remove IImmutableStack
|
379 |
|
380 | ## [5.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@5.1.0) (2019-03-10)
|
381 |
|
382 | #### 🚀 Features
|
383 |
|
384 | - add additional Fn arities ([33c7dfe](https://github.com/thi-ng/umbrella/commit/33c7dfe))
|
385 | - add more Fn type aliases, update existing ([3707e61](https://github.com/thi-ng/umbrella/commit/3707e61))
|
386 |
|
387 | #### ♻️ Refactoring
|
388 |
|
389 | - update Fn args in various packages ([e453ac3](https://github.com/thi-ng/umbrella/commit/e453ac3))
|
390 |
|
391 | # [5.0.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@5.0.0) (2019-01-21)
|
392 |
|
393 | #### 🛑 Breaking changes
|
394 |
|
395 | - update package build scripts / outputs ([f913d7b](https://github.com/thi-ng/umbrella/commit/f913d7b))
|
396 | - BREAKING CHANGE: rename mixins to avoid name clashes, update decorators
|
397 | - append `Mixin` suffix to all mixins (i.e. `INotify` => `INotifyMixin`)
|
398 | - update re-exports of mixins & decorators (no more nested child namespace)
|
399 |
|
400 | #### 🩹 Bug fixes
|
401 |
|
402 | - update assert(), re-export mixin() ([9f91cfa](https://github.com/thi-ng/umbrella/commit/9f91cfa))
|
403 |
|
404 | ## [4.2.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@4.2.0) (2018-09-22)
|
405 |
|
406 | #### 🚀 Features
|
407 |
|
408 | - add `IToHiccup` interface ([e390a54](https://github.com/thi-ng/umbrella/commit/e390a54))
|
409 |
|
410 | ## [4.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@4.1.0) (2018-08-24)
|
411 |
|
412 | #### 🚀 Features
|
413 |
|
414 | - add new/move type aliases into api.ts ([cf30ba2](https://github.com/thi-ng/umbrella/commit/cf30ba2))
|
415 | - Fn, FnAny, Pair, SEMAPHORE
|
416 | - add NumericArray and TypedArray types ([519394b](https://github.com/thi-ng/umbrella/commit/519394b))
|
417 |
|
418 | ### [4.0.6](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@4.0.6) (2018-08-01)
|
419 |
|
420 | #### ♻️ Refactoring
|
421 |
|
422 | - TS3.0 PropertyKey handling ([2047807](https://github.com/thi-ng/umbrella/commit/2047807))
|
423 |
|
424 | # [4.0.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@4.0.0) (2018-05-12)
|
425 |
|
426 | #### 🛑 Breaking changes
|
427 |
|
428 | - update interfaces, add docs ([9b38860](https://github.com/thi-ng/umbrella/commit/9b38860))
|
429 | - BREAKING CHANGE: IBind, IEnable now include generics,
|
430 | update IIndexed, IMeta, ISet, IStack
|
431 | - add IInto
|
432 | - add IImmutableSet
|
433 | - add IImmutableStack
|
434 | - minor update IEnabled mixin
|
435 |
|
436 | # [3.0.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@3.0.0) (2018-05-10)
|
437 |
|
438 | #### 🛑 Breaking changes
|
439 |
|
440 | - remove obsolete files from package ([f051ca3](https://github.com/thi-ng/umbrella/commit/f051ca3))
|
441 | - BREAKING CHANGE: [@thi.ng/api](https://github.com/thi-ng/umbrella/tree/main/packages/api) now only contains type declarations,
|
442 | decorators and mixins. All other features have been moved
|
443 | to new dedicated packages:
|
444 | - [@thi.ng/bench](https://github.com/thi-ng/umbrella/tree/main/packages/bench)
|
445 | - [@thi.ng/compare](https://github.com/thi-ng/umbrella/tree/main/packages/compare)
|
446 | - [@thi.ng/equiv](https://github.com/thi-ng/umbrella/tree/main/packages/equiv)
|
447 | - [@thi.ng/errors](https://github.com/thi-ng/umbrella/tree/main/packages/errors)
|
448 |
|
449 | ### [2.3.1](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@2.3.1) (2018-04-29)
|
450 |
|
451 | #### ⏱ Performance improvements
|
452 |
|
453 | - major speedup equivObject(), update equivSet() ([7fdf172](https://github.com/thi-ng/umbrella/commit/7fdf172))
|
454 | - equivSet() now only checks keys
|
455 | - add equivMap() to check full entries/pairs
|
456 |
|
457 | ## [2.3.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@2.3.0) (2018-04-26)
|
458 |
|
459 | #### 🚀 Features
|
460 |
|
461 | - support more types in equiv(), add tests ([2ac8bff](https://github.com/thi-ng/umbrella/commit/2ac8bff))
|
462 | - add equivSetLike() for ES6 Set/Map
|
463 | - add checks for Date, RegExp & NaN
|
464 |
|
465 | ## [2.2.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@2.2.0) (2018-04-08)
|
466 |
|
467 | #### 🚀 Features
|
468 |
|
469 | - add bench() & timed() utils ([d310345](https://github.com/thi-ng/umbrella/commit/d310345))
|
470 |
|
471 | ### [2.1.1](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@2.1.1) (2018-03-28)
|
472 |
|
473 | #### 🩹 Bug fixes
|
474 |
|
475 | - illegalState() creates IllegalStateError ([2b7e99b](https://github.com/thi-ng/umbrella/commit/2b7e99b))
|
476 |
|
477 | ## [2.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@2.1.0) (2018-03-21)
|
478 |
|
479 | #### 🚀 Features
|
480 |
|
481 | - add error types & ctor fns ([4d3785f](https://github.com/thi-ng/umbrella/commit/4d3785f))
|
482 |
|
483 | #### ♻️ Refactoring
|
484 |
|
485 | - update mixins, IEnable / INotify return types ([fbb19ac](https://github.com/thi-ng/umbrella/commit/fbb19ac))
|
486 |
|
487 | ### [2.0.1](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@2.0.1) (2018-02-02)
|
488 |
|
489 | #### 🩹 Bug fixes
|
490 |
|
491 | - update compare() & equiv() ([110a9de](https://github.com/thi-ng/umbrella/commit/110a9de))
|
492 |
|
493 | # [2.0.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@2.0.0) (2018-02-01)
|
494 |
|
495 | #### 🛑 Breaking changes
|
496 |
|
497 | - update equiv() null handling, add tests ([878520e](https://github.com/thi-ng/umbrella/commit/878520e))
|
498 | - BREAKING CHANGE: equiv now treats null & undefined as equal
|
499 |
|
500 | #### 🩹 Bug fixes
|
501 |
|
502 | - fix equiv string handling, update tests ([1354e29](https://github.com/thi-ng/umbrella/commit/1354e29))
|
503 |
|
504 | ## [1.5.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@1.5.0) (2018-01-31)
|
505 |
|
506 | #### 🚀 Features
|
507 |
|
508 | - add Predicate2 & StatefulPredicate2 types ([fbf8453](https://github.com/thi-ng/umbrella/commit/fbf8453))
|
509 |
|
510 | ## [1.4.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@1.4.0) (2018-01-29)
|
511 |
|
512 | #### 🚀 Features
|
513 |
|
514 | - update IWatch & mixin, boolean returns ([bddd5ce](https://github.com/thi-ng/umbrella/commit/bddd5ce))
|
515 |
|
516 | ## [1.3.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@1.3.0) (2018-01-28)
|
517 |
|
518 | #### 🚀 Features
|
519 |
|
520 | - add StatefulPredicate ([c74353b](https://github.com/thi-ng/umbrella/commit/c74353b))
|
521 |
|
522 | ### [1.2.1](https://github.com/thi-ng/umbrella/tree/@thi.ng/api@1.2.1) (2018-01-24)
|
523 |
|
524 | #### 🚀 Features
|
525 |
|
526 | - initial re-import as monorepo, update readme files, cleanup imports ([04ff6e9](https://github.com/thi-ng/umbrella/commit/04ff6e9))
|