@adobe/helix-shared-config 2.0.4 → 2.0.7

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/CHANGELOG.md CHANGED
@@ -3,6 +3,36 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.0.7](https://github.com/adobe/helix-shared/compare/@adobe/helix-shared-config@2.0.6...@adobe/helix-shared-config@2.0.7) (2022-05-14)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **deps:** update external fixes ([#680](https://github.com/adobe/helix-shared/issues/680)) ([75dc78e](https://github.com/adobe/helix-shared/commit/75dc78ef83e862f199c2fd56f298f2f9459dd742))
12
+
13
+
14
+
15
+
16
+
17
+ ## [2.0.6](https://github.com/adobe/helix-shared/compare/@adobe/helix-shared-config@2.0.5...@adobe/helix-shared-config@2.0.6) (2022-05-06)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * suppress deprecation warning (maxAge has been replaced by ttl) ([#678](https://github.com/adobe/helix-shared/issues/678)) ([7fb2df9](https://github.com/adobe/helix-shared/commit/7fb2df94f4f06d984c326b5ee897f877d69e86b0))
23
+
24
+
25
+
26
+
27
+
28
+ ## [2.0.5](https://github.com/adobe/helix-shared/compare/@adobe/helix-shared-config@2.0.4...@adobe/helix-shared-config@2.0.5) (2022-05-03)
29
+
30
+ **Note:** Version bump only for package @adobe/helix-shared-config
31
+
32
+
33
+
34
+
35
+
6
36
  ## [2.0.4](https://github.com/adobe/helix-shared/compare/@adobe/helix-shared-config@2.0.3...@adobe/helix-shared-config@2.0.4) (2022-05-03)
7
37
 
8
38
  **Note:** Version bump only for package @adobe/helix-shared-config
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-shared-config",
3
- "version": "2.0.4",
3
+ "version": "2.0.7",
4
4
  "description": "Shared modules of the Helix Project - config",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -27,27 +27,27 @@
27
27
  },
28
28
  "dependencies": {
29
29
  "@adobe/helix-fetch": "^3.0.3",
30
- "@adobe/helix-shared-git": "^2.0.2",
30
+ "@adobe/helix-shared-git": "^2.0.3",
31
31
  "@adobe/helix-shared-prune": "^1.0.5",
32
- "@adobe/helix-shared-utils": "^2.0.9",
32
+ "@adobe/helix-shared-utils": "^2.0.10",
33
33
  "ajv": "8.11.0",
34
34
  "ajv-formats": "2.1.1",
35
35
  "cookie": "0.5.0",
36
36
  "fs-extra": "10.1.0",
37
37
  "ignore": "5.2.0",
38
- "lru-cache": "7.9.0",
38
+ "lru-cache": "7.10.1",
39
39
  "object-hash": "3.0.0",
40
40
  "uri-js": "4.4.1",
41
- "yaml": "2.0.1"
41
+ "yaml": "2.1.0"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@adobe/helix-shared-wrap": "^1.0.5",
45
- "@adobe/helix-testutils": "0.4.12",
45
+ "@adobe/helix-testutils": "0.4.13",
46
46
  "@pollyjs/adapter-node-http": "6.0.5",
47
47
  "@pollyjs/core": "6.0.5",
48
48
  "@pollyjs/persister-fs": "6.0.5",
49
49
  "mocha": "10.0.0",
50
50
  "nock": "13.2.4"
51
51
  },
52
- "gitHead": "6fe15017b9be4c8fe8b7bfc48f68229003c4a411"
52
+ "gitHead": "8329b6609872ddb48dfd247f9953f43379907b81"
53
53
  }
@@ -12,7 +12,7 @@
12
12
 
13
13
  const LRU = require('lru-cache');
14
14
 
15
- let lru = new LRU({ max: 1000, maxAge: 60 * 1000 });
15
+ let lru = new LRU({ max: 1000, ttl: 60 * 1000 });
16
16
 
17
17
  /**
18
18
  * Returns a memoized version of the function `fn`.