@lage-run/hasher 1.0.2 → 1.0.4

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,43 @@
2
2
  "name": "@lage-run/hasher",
3
3
  "entries": [
4
4
  {
5
- "date": "Wed, 21 Jun 2023 19:05:46 GMT",
5
+ "date": "Mon, 17 Jul 2023 15:13:19 GMT",
6
+ "tag": "@lage-run/hasher_v1.0.4",
7
+ "version": "1.0.4",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "email not defined",
12
+ "package": "@lage-run/hasher",
13
+ "commit": "5f41b1db342b6d7a8492a46b68ca328a21e61ee6",
14
+ "comment": "Update lage core deps"
15
+ },
16
+ {
17
+ "author": "beachball",
18
+ "package": "@lage-run/hasher",
19
+ "comment": "Bump @lage-run/target-graph to v0.8.7",
20
+ "commit": "5f41b1db342b6d7a8492a46b68ca328a21e61ee6"
21
+ }
22
+ ]
23
+ }
24
+ },
25
+ {
26
+ "date": "Tue, 11 Jul 2023 14:51:52 GMT",
27
+ "tag": "@lage-run/hasher_v1.0.3",
28
+ "version": "1.0.3",
29
+ "comments": {
30
+ "patch": [
31
+ {
32
+ "author": "brunoru@microsoft.com",
33
+ "package": "@lage-run/hasher",
34
+ "commit": "e7dbec3c24355721132a15425fa5044c74c13efb",
35
+ "comment": "Log file level input file hashes to silly logs"
36
+ }
37
+ ]
38
+ }
39
+ },
40
+ {
41
+ "date": "Wed, 21 Jun 2023 19:06:25 GMT",
6
42
  "tag": "@lage-run/hasher_v1.0.2",
7
43
  "version": "1.0.2",
8
44
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,29 @@
1
1
  # Change Log - @lage-run/hasher
2
2
 
3
- This log was last generated on Wed, 21 Jun 2023 19:05:46 GMT and should not be manually modified.
3
+ This log was last generated on Mon, 17 Jul 2023 15:13:19 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 1.0.4
8
+
9
+ Mon, 17 Jul 2023 15:13:19 GMT
10
+
11
+ ### Patches
12
+
13
+ - Update lage core deps (email not defined)
14
+ - Bump @lage-run/target-graph to v0.8.7
15
+
16
+ ## 1.0.3
17
+
18
+ Tue, 11 Jul 2023 14:51:52 GMT
19
+
20
+ ### Patches
21
+
22
+ - Log file level input file hashes to silly logs (brunoru@microsoft.com)
23
+
7
24
  ## 1.0.2
8
25
 
9
- Wed, 21 Jun 2023 19:05:46 GMT
26
+ Wed, 21 Jun 2023 19:06:25 GMT
10
27
 
11
28
  ### Patches
12
29
 
@@ -133,6 +133,9 @@ class TargetHasher {
133
133
  if (this.logger !== undefined) {
134
134
  const globalInputsHash = (0, _hashStrings.hashStrings)(Object.values(this.globalInputsHash ?? {}));
135
135
  this.logger.verbose(`Global inputs hash: ${globalInputsHash}`);
136
+ // Log global input hashs to log file
137
+ const globalInputsHashJson = JSON.stringify(this.globalInputsHash, null, 2);
138
+ this.logger.silly(globalInputsHashJson);
136
139
  }
137
140
  }
138
141
  async hash(target) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lage-run/hasher",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "Hasher for Lage Targets",
5
5
  "repository": {
6
6
  "url": "https://github.com/microsoft/lage"
@@ -15,10 +15,10 @@
15
15
  "lint": "monorepo-scripts lint"
16
16
  },
17
17
  "dependencies": {
18
- "@lage-run/target-graph": "^0.8.6",
18
+ "@lage-run/target-graph": "^0.8.7",
19
19
  "@lage-run/logger": "^1.3.0",
20
20
  "execa": "5.1.1",
21
- "workspace-tools": "0.30.0",
21
+ "workspace-tools": "0.35.0",
22
22
  "fast-glob": "3.2.12",
23
23
  "glob-hasher": "^1.3.0",
24
24
  "graceful-fs": "^4.2.11",