@lage-run/cache 1.1.5 → 1.1.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.json CHANGED
@@ -2,7 +2,52 @@
2
2
  "name": "@lage-run/cache",
3
3
  "entries": [
4
4
  {
5
- "date": "Thu, 21 Dec 2023 09:48:33 GMT",
5
+ "date": "Thu, 23 May 2024 18:14:47 GMT",
6
+ "version": "1.1.7",
7
+ "tag": "@lage-run/cache_v1.1.7",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "renovate@whitesourcesoftware.com",
12
+ "package": "@lage-run/cache",
13
+ "commit": "04cdac2a148208348ea26f0d0190b90f947d2cfd",
14
+ "comment": "Update backfill monorepo"
15
+ }
16
+ ]
17
+ }
18
+ },
19
+ {
20
+ "date": "Sun, 05 May 2024 22:55:45 GMT",
21
+ "version": "1.1.6",
22
+ "tag": "@lage-run/cache_v1.1.6",
23
+ "comments": {
24
+ "patch": [
25
+ {
26
+ "author": "kchau@microsoft.com",
27
+ "package": "@lage-run/cache",
28
+ "commit": "1e36de04ab83fc0cde38062fc1543e4b12902166",
29
+ "comment": "fixing hashing issues related to rust panic"
30
+ }
31
+ ]
32
+ }
33
+ },
34
+ {
35
+ "date": "Wed, 17 Apr 2024 23:20:47 GMT",
36
+ "version": "1.1.5",
37
+ "tag": "@lage-run/cache_v1.1.5",
38
+ "comments": {
39
+ "none": [
40
+ {
41
+ "author": "elcraig@microsoft.com",
42
+ "package": "@lage-run/cache",
43
+ "commit": "fb4fcb8419cc778210104d7d04102fc95df13d5b",
44
+ "comment": "Update formatting"
45
+ }
46
+ ]
47
+ }
48
+ },
49
+ {
50
+ "date": "Thu, 21 Dec 2023 09:49:09 GMT",
6
51
  "version": "1.1.5",
7
52
  "tag": "@lage-run/cache_v1.1.5",
8
53
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,28 @@
1
1
  # Change Log - @lage-run/cache
2
2
 
3
- This log was last generated on Thu, 21 Dec 2023 09:48:33 GMT and should not be manually modified.
3
+ This log was last generated on Thu, 23 May 2024 18:14:47 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 1.1.7
8
+
9
+ Thu, 23 May 2024 18:14:47 GMT
10
+
11
+ ### Patches
12
+
13
+ - Update backfill monorepo (renovate@whitesourcesoftware.com)
14
+
15
+ ## 1.1.6
16
+
17
+ Sun, 05 May 2024 22:55:45 GMT
18
+
19
+ ### Patches
20
+
21
+ - fixing hashing issues related to rust panic (kchau@microsoft.com)
22
+
7
23
  ## 1.1.5
8
24
 
9
- Thu, 21 Dec 2023 09:48:33 GMT
25
+ Thu, 21 Dec 2023 09:49:09 GMT
10
26
 
11
27
  ### Patches
12
28
 
package/README.md CHANGED
@@ -70,17 +70,17 @@ await cacheProvider.put(hash, target);
70
70
  ```
71
71
 
72
72
  ## Differentiating Cache
73
+
73
74
  To specifically differentiate the hash generated for the cache, between different steps the parameter `cacheKey` can be used. The parameter will be a part of the hash generation for the cache, and generated hash can be altered by modifying the parameter.
74
75
 
75
76
  ### Usage
77
+
76
78
  Add the parameter in your `lage.config.js` as follows
77
79
 
78
80
  ```ts
79
81
  {
80
82
  cacheOptions: {
81
- cacheKey: "some cache key"
83
+ cacheKey: "some cache key";
82
84
  }
83
85
  }
84
86
  ```
85
-
86
-
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lage-run/cache",
3
- "version": "1.1.5",
3
+ "version": "1.1.7",
4
4
  "description": "Cache for Lage",
5
5
  "repository": {
6
6
  "type": "git",
@@ -19,10 +19,10 @@
19
19
  "dependencies": {
20
20
  "@lage-run/target-graph": "^0.8.9",
21
21
  "@lage-run/logger": "^1.3.0",
22
- "backfill-cache": "5.7.1",
23
- "backfill-config": "6.4.1",
22
+ "backfill-cache": "5.8.0",
23
+ "backfill-config": "6.4.2",
24
24
  "backfill-logger": "5.2.1",
25
- "glob-hasher": "^1.3.0"
25
+ "glob-hasher": "^1.4.2"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@lage-run/monorepo-fixture": "*",