-
Notifications
You must be signed in to change notification settings - Fork 0
Develop #7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
y-aithnini
wants to merge
11
commits into
master
Choose a base branch
from
develop
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Develop #7
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
1be7028
ops: UPDATED publish workflow and dependabot PR limits
Zaiidmo 23be62d
ops (ci): standardize publish validation and dependabot across all pa…
Zaiidmo d076d49
security: added CODEOWNER file for branches security
Zaiidmo c1047cf
ops: updated relese check workflow#
Zaiidmo 7179644
feat(COMPT-55): add ICacheStore port and Redis/InMemory adapters (#1)
y-aithnini 56e9bc7
Feature/compt 56 cache module service (#2)
y-aithnini ccd8c89
Feature/compt 57 cacheable cacheevict decorators (#3)
y-aithnini 8b0d360
Feature/compt 58 test suite (#4)
y-aithnini d4b3570
docs(COMPT-59): add README, update peer deps, create v0.1.0 changeset…
y-aithnini 3eb5fe9
improvement: replace KEYS with SCAN, fix @Cacheable null-return bug, …
y-aithnini bf3a3dd
fix(ci): fix SonarCloud coverage — use src/**/*.spec.ts instead of te…
y-aithnini File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| --- | ||
| "@ciscode/cachekit": minor | ||
| --- | ||
|
|
||
| Initial public release of @ciscode/cachekit v0.1.0. | ||
|
|
||
| ### Added | ||
|
|
||
| - `CacheModule.register()` and `CacheModule.registerAsync()` — dynamic NestJS module with in-memory and Redis store support | ||
| - `CacheService` — injectable service with `get`, `set`, `delete`, `clear`, `has`, and `wrap` (cache-aside) methods | ||
| - `@Cacheable(key, ttl?)` — method decorator for transparent cache-aside with `{n}` argument interpolation | ||
| - `@CacheEvict(key)` — method decorator to evict cache entries after successful method execution | ||
| - `ICacheStore` port — interface for custom store adapter implementations | ||
| - `InMemoryCacheStore` — zero-dependency Map-backed adapter with lazy TTL expiry | ||
| - `RedisCacheStore` — ioredis-backed adapter with key prefix and full `ICacheStore` contract | ||
| - Peer dependencies: `@nestjs/common`, `@nestjs/core`, `ioredis` (optional — only required for Redis store) | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| * @CISCODE-MA/devops |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| version: 2 | ||
| updates: | ||
| - package-ecosystem: npm | ||
| directory: "/" | ||
| schedule: | ||
| interval: monthly | ||
| open-pull-requests-limit: 1 | ||
| groups: | ||
| npm-dependencies: | ||
| patterns: | ||
| - "*" | ||
| assignees: | ||
| - CISCODE-MA/cloud-devops | ||
| labels: | ||
| - "dependencies" | ||
| - "npm" | ||
| commit-message: | ||
| prefix: "chore(deps)" | ||
| include: "scope" | ||
| rebase-strategy: auto |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.