Skip to content
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

fix(deps): update dependency cache-manager to v6 #3789

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 23, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
cache-manager (source) ^4.0.0 -> ^6.0.0 age adoption passing confidence
cache-manager (source) 4.1.0 -> 6.3.2 age adoption passing confidence

Release Notes

jaredwray/cacheable (cache-manager)

v5.5.0

Added Event Errors

Cache Manager now does not throw errors by default. Instead, all errors are evented through the error event. Here is an example on how to use it:

const memoryCache = await caching('memory', {
  max: 100,
  ttl: 10 * 1000 /*milliseconds*/,
});
memoryCache.on('error', (error) => {
  console.error('Cache error:', error);
});

What's Changed

New Contributors

Full Changelog: jaredwray/cacheable@v5.4.0...v5.5.0

v5.4.0

Refresh cache keys in background

Both the caching and multicaching modules support a mechanism to refresh expiring cache keys in background when using the wrap function.
This is done by adding a refreshThreshold attribute while creating the caching store or passing it to the wrap function.

If refreshThreshold is set and after retrieving a value from cache the TTL will be checked.
If the remaining TTL is less than refreshThreshold, the system will update the value asynchronously,
following same rules as standard fetching. In the meantime, the system will return the old value until expiration.

What's Changed

Full Changelog: jaredwray/cacheable@v5.3.2...v5.4.0

v5.3.2

What's Changed

New Contributors

Full Changelog: jaredwray/cacheable@v5.3.0...v5.3.2

v5.3.1

Major fix as 5.3.0 did not have the dist folder on release.

What's Changed

New Contributors

Full Changelog: jaredwray/cacheable@5.2.4...v5.3.1

v5.3.0

What's Changed

New Contributors

Full Changelog: jaredwray/cacheable@5.2.4...v5.3.0

v5.2.4

Updates 🍻

What's Changed

New Contributors

Full Changelog: jaredwray/cacheable@5.2.3...5.2.4

v5.2.3

Bug Fixes

v5.2.2

Bug Fixes

v5.2.1

Bug Fixes
  • deps: update dependency lru-cache to ~9.1.0 (d9ec046)
  • deps: update dependency lru-cache to v9 (fde0015)
  • update lru-cache (87efeff)

v5.2.0

Bug Fixes
  • multi-caching: minor issues (bf68d36)
Features

v5.1.7

Bug Fixes
  • lru-cache breaking changes (8398494)

v5.1.6

Bug Fixes

v5.1.5

Bug Fixes
  • rename type alias Ttl as Milliseconds (daa5fa8)

v5.1.4

Compare Source

Bug Fixes

v5.1.3

Bug Fixes
  • example multichaching in README (e01f780)
  • parallelize set higher priority at wrap (7f76e54)

v5.1.2

Bug Fixes
  • links to ioredis in Readme (1ba46d8)
  • re populate higher priority caches when a key is found in lower ones (7a6a10c)

v5.1.1

Bug Fixes
  • bad Cache definition (3746c39)
  • mget/mset examples in README (1ca67a4)

v5.1.0

Features
  • add ttl argument in wrap method (b06c1e5)

v5.0.1

v5.0.0


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added [status] needs review PRs that are ready to be reviewed. [type] chore labels Sep 23, 2024
@renovate renovate bot force-pushed the renovate/cache-manager-6.x branch 2 times, most recently from 0be979f to 6ff1e47 Compare September 25, 2024 19:17
@renovate renovate bot force-pushed the renovate/cache-manager-6.x branch from 6ff1e47 to 4860489 Compare October 16, 2024 20:51
@renovate renovate bot force-pushed the renovate/cache-manager-6.x branch from 4860489 to 5d20d48 Compare October 27, 2024 19:45
@renovate renovate bot force-pushed the renovate/cache-manager-6.x branch from 5d20d48 to 6e7cf4e Compare November 11, 2024 00:33
@renovate renovate bot force-pushed the renovate/cache-manager-6.x branch from 6e7cf4e to 0ff75bd Compare November 24, 2024 01:02
@renovate renovate bot force-pushed the renovate/cache-manager-6.x branch from 0ff75bd to 3500d47 Compare December 5, 2024 06:02
@renovate renovate bot changed the title fix(deps): update dependency cache-manager to v6 fix(deps): update dependency cache-manager to v6 - autoclosed Dec 8, 2024
@renovate renovate bot closed this Dec 8, 2024
@renovate renovate bot deleted the renovate/cache-manager-6.x branch December 8, 2024 18:41
@renovate renovate bot changed the title fix(deps): update dependency cache-manager to v6 - autoclosed fix(deps): update dependency cache-manager to v6 Dec 9, 2024
@renovate renovate bot reopened this Dec 9, 2024
@renovate renovate bot force-pushed the renovate/cache-manager-6.x branch 2 times, most recently from 3500d47 to b14300f Compare December 11, 2024 21:24
@renovate renovate bot force-pushed the renovate/cache-manager-6.x branch 5 times, most recently from a727749 to 8076d55 Compare December 29, 2024 18:37
@renovate renovate bot force-pushed the renovate/cache-manager-6.x branch from 8076d55 to 9a5e0ac Compare December 30, 2024 04:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
[status] needs review PRs that are ready to be reviewed. [type] chore
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants