@lage-run/cache 1.1.5 → 1.1.6

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,37 @@
2
2
  "name": "@lage-run/cache",
3
3
  "entries": [
4
4
  {
5
- "date": "Thu, 21 Dec 2023 09:48:33 GMT",
5
+ "date": "Sun, 05 May 2024 22:55:31 GMT",
6
+ "version": "1.1.6",
7
+ "tag": "@lage-run/cache_v1.1.6",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "kchau@microsoft.com",
12
+ "package": "@lage-run/cache",
13
+ "commit": "1e36de04ab83fc0cde38062fc1543e4b12902166",
14
+ "comment": "fixing hashing issues related to rust panic"
15
+ }
16
+ ]
17
+ }
18
+ },
19
+ {
20
+ "date": "Wed, 17 Apr 2024 23:20:47 GMT",
21
+ "version": "1.1.5",
22
+ "tag": "@lage-run/cache_v1.1.5",
23
+ "comments": {
24
+ "none": [
25
+ {
26
+ "author": "elcraig@microsoft.com",
27
+ "package": "@lage-run/cache",
28
+ "commit": "fb4fcb8419cc778210104d7d04102fc95df13d5b",
29
+ "comment": "Update formatting"
30
+ }
31
+ ]
32
+ }
33
+ },
34
+ {
35
+ "date": "Thu, 21 Dec 2023 09:49:09 GMT",
6
36
  "version": "1.1.5",
7
37
  "tag": "@lage-run/cache_v1.1.5",
8
38
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,20 @@
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 Sun, 05 May 2024 22:55:31 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 1.1.6
8
+
9
+ Sun, 05 May 2024 22:55:31 GMT
10
+
11
+ ### Patches
12
+
13
+ - fixing hashing issues related to rust panic (kchau@microsoft.com)
14
+
7
15
  ## 1.1.5
8
16
 
9
- Thu, 21 Dec 2023 09:48:33 GMT
17
+ Thu, 21 Dec 2023 09:49:09 GMT
10
18
 
11
19
  ### Patches
12
20
 
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.6",
4
4
  "description": "Cache for Lage",
5
5
  "repository": {
6
6
  "type": "git",
@@ -22,7 +22,7 @@
22
22
  "backfill-cache": "5.7.1",
23
23
  "backfill-config": "6.4.1",
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": "*",