mirror of
https://github.com/BreizhHardware/memoizee.git
synced 2026-01-18 16:37:21 +01:00
68 lines
2.8 KiB
Plaintext
68 lines
2.8 KiB
Plaintext
v0.3.3 -- 2014.05.12
|
|
* Fix profiler special property definition
|
|
|
|
v0.3.2 -- 2014.05.01
|
|
* Provide no-arguments memoization out of a box
|
|
(no need to provide normalizer to `memoizee/plain`)
|
|
|
|
v0.3.1 -- 2014.04.27
|
|
* Update package.json to use latest 'tad' engine (fixes tests evaluation)
|
|
|
|
v0.3.0 -- 2014.04.27
|
|
Major reorganization and partial refactoring
|
|
* Move out main modules from lib folder
|
|
* Introduce normalizer based memoization. Primitive and regular handlers were converted into
|
|
dedicated normalizers (located in lib/normalizers folder). Custom normalizers can be provided at
|
|
run time via `normalizer` option.
|
|
* Provide 'plain' module which does not import (require) any extensions or normalizers. Thanks to
|
|
that it's lighter for e.g. client-side bundle. Any extensions that are expected to be used should
|
|
be required upfront, normalizers should be provided via `normalizer` option.
|
|
* Rename `memoized.clear` into `memoized.delete`, and `memoized.clearAll` into `memoized.clear`
|
|
* Rename `memoized.clearRef` into `memoized.deleteRef` (applies to 'refCounter' option)
|
|
* Remove 'method' option. Instead 'methods' and 'methods-plan' modules are provided which generate
|
|
descriptors for lazy created memoized methods.
|
|
* 'profile' is no longer an extension. It's provided as dedicated module.
|
|
* Clean up logic for `async` handling
|
|
* Take out 'max' extension's LRU logic into external `lru-queue` package.
|
|
See https://github.com/medikoo/lru-queue
|
|
* Remove possibility to access original arguments when resolvers are used
|
|
* Assure expected length of memoized functions
|
|
* Remove Makefile (it's environment agnostic package)
|
|
|
|
v0.2.6 -- 2013.10.08
|
|
* Fix internal events propagation when handling async calls that
|
|
resolve with errors. `asyncpurge` was emitted for values that had no
|
|
`asyncinit` emitted. Issue #9
|
|
|
|
v0.2.5 -- 2013.06.21
|
|
* Fix primitive handling for dynamic arguments length
|
|
|
|
v0.2.4 -- 2013.03.23
|
|
* Throw on circular invocations, they cannot be memoized as intended.
|
|
|
|
v0.2.3 -- 2012.10.04
|
|
* Fixed serious bug related to not properly cleared cache when working in
|
|
regular mode
|
|
|
|
v0.2.2 -- 2012.10.03
|
|
* preFetch functionality for maxAge variant
|
|
* Prevent memoization of already memoized functions
|
|
|
|
v0.2.1 -- 2012.09.21
|
|
* Fix missing global reference in method option logic
|
|
* Fix variable visibility in async option logic
|
|
* Lint cleanup
|
|
|
|
v0.2.0 -- 2012.09.21
|
|
* Modularization and general algorithm cleanup
|
|
* Cache is limited (max option) using LRU instead of FIFO algorithm
|
|
* Improved async mode, and its handling by other options
|
|
|
|
v0.1.1 -- 2012.09.19
|
|
* Fix dispose invocations for no arguments call
|
|
* Small documentation improvements
|
|
|
|
v0.1.0 -- 2012.09.18
|
|
* Initial. Derived from es5-ext package and added `async`, `maxAge`,
|
|
`refCounter`, `max` and `dispose` options.
|