@neezco/cache 0.5.0 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/index.d.ts +2 -2
- package/dist/browser/index.js +43 -105
- package/dist/browser/index.js.map +1 -1
- package/dist/node/index.cjs +58 -145
- package/dist/node/index.cjs.map +1 -1
- package/dist/node/index.d.cts +2 -2
- package/dist/node/index.d.mts +2 -2
- package/dist/node/index.mjs +54 -142
- package/dist/node/index.mjs.map +1 -1
- package/package.json +16 -26
- package/CHANGELOG.md +0 -63
- package/docs/.gitkeep +0 -0
package/CHANGELOG.md
DELETED
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
|
|
5
|
-
# [0.5.0](https://github.com/neezco/cache/compare/v0.4.1...v0.5.0) (2026-02-21)
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
### Features
|
|
9
|
-
|
|
10
|
-
* include createdAt in metadata returned when includeMetadata is true ([b8b51c8](https://github.com/neezco/cache/commit/b8b51c8f74d9801f630fa2fe14bfe8519127791e)), closes [#17](https://github.com/neezco/cache/issues/17)
|
|
11
|
-
|
|
12
|
-
## [0.4.1](https://github.com/neezco/cache/compare/v0.4.0...v0.4.1) (2026-02-21)
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
### Bug Fixes
|
|
16
|
-
|
|
17
|
-
* adjust semantic-release title and section configuration for proper changelog grouping ([919729a](https://github.com/neezco/cache/commit/919729a9d4d826e5ea78e7147914fc52f8d12149))
|
|
18
|
-
|
|
19
|
-
## 0.4.0 (2026-02-14)
|
|
20
|
-
|
|
21
|
-
* chore: implement startSweep function to manage cache sweep process ([78ded7a](https://github.com/neezco/cache/commit/78ded7a))
|
|
22
|
-
* chore: install semantic-release plugins and add unified release script ([5b7a8b3](https://github.com/neezco/cache/commit/5b7a8b3))
|
|
23
|
-
* test: add comprehensive tests for LocalTtlCache purge strategies and basic operations ([a410f2d](https://github.com/neezco/cache/commit/a410f2d))
|
|
24
|
-
* test: ensure tag invalidation does not affect entries created after the tag ([9282397](https://github.com/neezco/cache/commit/9282397))
|
|
25
|
-
* fix: enforce stale window upper bound when applying tag-based stale invalidation ([593c1d4](https://github.com/neezco/cache/commit/593c1d4)), closes [#19](https://github.com/neezco/cache/issues/19)
|
|
26
|
-
* feat: enhance cache purging strategy with configurable thresholds ([ee762c1](https://github.com/neezco/cache/commit/ee762c1))
|
|
27
|
-
* feat: refactor purge configuration logic and enhance validation for thresholds ([350b9de](https://github.com/neezco/cache/commit/350b9de)), closes [#18](https://github.com/neezco/cache/issues/18)
|
|
28
|
-
* style: add conventional-changelog-conventionalcommits package for improved changelog generation ([5435048](https://github.com/neezco/cache/commit/5435048))
|
|
29
|
-
* style: simplify commit-analyzer plugin configuration ([ecff6a0](https://github.com/neezco/cache/commit/ecff6a0))
|
|
30
|
-
* style: update release notes generator configuration for improved changelog formatting ([1ac4776](https://github.com/neezco/cache/commit/1ac4776))
|
|
31
|
-
|
|
32
|
-
# [0.3.0](https://github.com/neezco/cache/compare/v0.2.1...v0.3.0) (2026-02-11)
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
### Features
|
|
36
|
-
|
|
37
|
-
* enhance cache retrieval with metadata support in `get()` method ([eb198d6](https://github.com/neezco/cache/commit/eb198d66c9e1abda86c448fb81a35f14e376a79c)), closes [#17](https://github.com/neezco/cache/issues/17)
|
|
38
|
-
|
|
39
|
-
## [0.2.1](https://github.com/neezco/cache/compare/v0.2.0...v0.2.1) (2026-02-11)
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
### Performance Improvements
|
|
43
|
-
|
|
44
|
-
* optimize cache entry validation by introducing pre-computed status handling ([bafb6a0](https://github.com/neezco/cache/commit/bafb6a024b0082a1b81f2d0e959c883df4136976))
|
|
45
|
-
|
|
46
|
-
# [0.2.0](https://github.com/neezco/cache/compare/v0.1.1...v0.2.0) (2026-02-09)
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
### Bug Fixes
|
|
50
|
-
|
|
51
|
-
* add regex for todo-tree to enhance tag recognition ([e0c3292](https://github.com/neezco/cache/commit/e0c3292cd83f5e6d1c5cd9b9c2e199b4a7c9eda0))
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
### Features
|
|
55
|
-
|
|
56
|
-
* add maxMemorySize configuration and update cache behavior for size limits ([fb3f173](https://github.com/neezco/cache/commit/fb3f173b891fc4f345596904ad82b606e5cbc00c))
|
|
57
|
-
|
|
58
|
-
## [0.1.1](https://github.com/neezco/cache/compare/v0.1.0...v0.1.1) (2026-02-09)
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
### Bug Fixes
|
|
62
|
-
|
|
63
|
-
* update `invalidateTag` method to use `InvalidateTagOptions` for extensibility ([8184098](https://github.com/neezco/cache/commit/8184098a3b7eed24dc8ebf211b4929f4b383b4a9))
|
package/docs/.gitkeep
DELETED
|
File without changes
|