@lage-run/hasher 1.0.2 → 1.0.3

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,22 @@
2
2
  "name": "@lage-run/hasher",
3
3
  "entries": [
4
4
  {
5
- "date": "Wed, 21 Jun 2023 19:05:46 GMT",
5
+ "date": "Tue, 11 Jul 2023 14:51:38 GMT",
6
+ "tag": "@lage-run/hasher_v1.0.3",
7
+ "version": "1.0.3",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "brunoru@microsoft.com",
12
+ "package": "@lage-run/hasher",
13
+ "commit": "e7dbec3c24355721132a15425fa5044c74c13efb",
14
+ "comment": "Log file level input file hashes to silly logs"
15
+ }
16
+ ]
17
+ }
18
+ },
19
+ {
20
+ "date": "Wed, 21 Jun 2023 19:06:25 GMT",
6
21
  "tag": "@lage-run/hasher_v1.0.2",
7
22
  "version": "1.0.2",
8
23
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,20 @@
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 Tue, 11 Jul 2023 14:51:38 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 1.0.3
8
+
9
+ Tue, 11 Jul 2023 14:51:38 GMT
10
+
11
+ ### Patches
12
+
13
+ - Log file level input file hashes to silly logs (brunoru@microsoft.com)
14
+
7
15
  ## 1.0.2
8
16
 
9
- Wed, 21 Jun 2023 19:05:46 GMT
17
+ Wed, 21 Jun 2023 19:06:25 GMT
10
18
 
11
19
  ### Patches
12
20
 
@@ -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.3",
4
4
  "description": "Hasher for Lage Targets",
5
5
  "repository": {
6
6
  "url": "https://github.com/microsoft/lage"