@zudojs/cache 1.1.0 → 1.1.1

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.
Files changed (2) hide show
  1. package/dist/cache.js +1 -1
  2. package/package.json +5 -5
package/dist/cache.js CHANGED
@@ -298,7 +298,7 @@ export class CacheService {
298
298
  const qualified = this.qualifyPattern(pattern, options?.namespace);
299
299
  try {
300
300
  const result = await this.invalidation.invalidateByPattern(qualified);
301
- this.purgeTagsMatching(qualified);
301
+ await this.purgeTagsMatching(qualified);
302
302
  return result;
303
303
  }
304
304
  catch (error) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zudojs/cache",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Caching primitives, abstractions, and adapters for the Zudojs framework.",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -24,10 +24,10 @@
24
24
  "!dist/.tsbuildinfo"
25
25
  ],
26
26
  "dependencies": {
27
- "@zudojs/constants": "1.1.0",
28
- "@zudojs/errors": "1.1.0",
29
- "@zudojs/serialization": "1.1.0",
30
- "@zudojs/types": "1.1.0"
27
+ "@zudojs/constants": "1.1.1",
28
+ "@zudojs/errors": "1.2.0",
29
+ "@zudojs/serialization": "1.1.1",
30
+ "@zudojs/types": "1.1.1"
31
31
  },
32
32
  "devDependencies": {
33
33
  "typescript": "7.0.2",