@lage-run/cache 1.1.4 → 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,73 @@
2
2
  "name": "@lage-run/cache",
3
3
  "entries": [
4
4
  {
5
- "date": "Tue, 12 Dec 2023 04:22:18 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",
36
+ "version": "1.1.5",
37
+ "tag": "@lage-run/cache_v1.1.5",
38
+ "comments": {
39
+ "patch": [
40
+ {
41
+ "author": "elcraig@microsoft.com",
42
+ "package": "@lage-run/cache",
43
+ "commit": "429047eb173880261b9e76f82ef1fcf7bfe9e29a",
44
+ "comment": "Pin external deps to ensure explicit updates to lage bundle"
45
+ },
46
+ {
47
+ "author": "beachball",
48
+ "package": "@lage-run/cache",
49
+ "comment": "Bump @lage-run/target-graph to v0.8.9",
50
+ "commit": "not available"
51
+ }
52
+ ]
53
+ }
54
+ },
55
+ {
56
+ "date": "Thu, 21 Dec 2023 08:37:41 GMT",
57
+ "version": "1.1.4",
58
+ "tag": "@lage-run/cache_v1.1.4",
59
+ "comments": {
60
+ "none": [
61
+ {
62
+ "author": "elcraig@microsoft.com",
63
+ "package": "@lage-run/cache",
64
+ "commit": "0752bad677868d982719f792f6692ab43ad325e0",
65
+ "comment": "Use ranges for devDependencies"
66
+ }
67
+ ]
68
+ }
69
+ },
70
+ {
71
+ "date": "Tue, 12 Dec 2023 04:22:41 GMT",
6
72
  "version": "1.1.4",
7
73
  "tag": "@lage-run/cache_v1.1.4",
8
74
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,29 @@
1
1
  # Change Log - @lage-run/cache
2
2
 
3
- This log was last generated on Tue, 12 Dec 2023 04:22:18 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
+
15
+ ## 1.1.5
16
+
17
+ Thu, 21 Dec 2023 09:49:09 GMT
18
+
19
+ ### Patches
20
+
21
+ - Pin external deps to ensure explicit updates to lage bundle (elcraig@microsoft.com)
22
+ - Bump @lage-run/target-graph to v0.8.9
23
+
7
24
  ## 1.1.4
8
25
 
9
- Tue, 12 Dec 2023 04:22:18 GMT
26
+ Tue, 12 Dec 2023 04:22:41 GMT
10
27
 
11
28
  ### Patches
12
29
 
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/jest.config.js CHANGED
@@ -1 +1 @@
1
- module.exports = require("monorepo-scripts/config/jest.config.js");
1
+ module.exports = require("@lage-run/monorepo-scripts/config/jest.config.js");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lage-run/cache",
3
- "version": "1.1.4",
3
+ "version": "1.1.6",
4
4
  "description": "Cache for Lage",
5
5
  "repository": {
6
6
  "type": "git",
@@ -17,16 +17,16 @@
17
17
  "lint": "monorepo-scripts lint"
18
18
  },
19
19
  "dependencies": {
20
- "@lage-run/target-graph": "^0.8.8",
20
+ "@lage-run/target-graph": "^0.8.9",
21
21
  "@lage-run/logger": "^1.3.0",
22
- "backfill-config": "^6.4.1",
23
- "backfill-cache": "^5.7.1",
24
- "backfill-logger": "^5.2.1",
25
- "glob-hasher": "^1.3.0"
22
+ "backfill-cache": "5.7.1",
23
+ "backfill-config": "6.4.1",
24
+ "backfill-logger": "5.2.1",
25
+ "glob-hasher": "^1.4.2"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@lage-run/monorepo-fixture": "*",
29
- "monorepo-scripts": "*"
29
+ "@lage-run/monorepo-scripts": "*"
30
30
  },
31
31
  "publishConfig": {
32
32
  "access": "public"