@lage-run/cache 0.4.2 → 0.5.0

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": "Fri, 10 Mar 2023 01:24:11 GMT",
5
+ "date": "Mon, 27 Mar 2023 18:00:03 GMT",
6
+ "tag": "@lage-run/cache_v0.5.0",
7
+ "version": "0.5.0",
8
+ "comments": {
9
+ "minor": [
10
+ {
11
+ "author": "kchau@microsoft.com",
12
+ "package": "@lage-run/cache",
13
+ "commit": "6a0593b1ef9f7d16e69eb57ee1bc71b8613fd1d8",
14
+ "comment": "gitignore to be respected again in the envglob - this causes major perf regression otherwise"
15
+ }
16
+ ]
17
+ }
18
+ },
19
+ {
20
+ "date": "Tue, 14 Mar 2023 00:28:38 GMT",
21
+ "tag": "@lage-run/cache_v0.4.3",
22
+ "version": "0.4.3",
23
+ "comments": {
24
+ "patch": [
25
+ {
26
+ "author": "beachball",
27
+ "package": "@lage-run/cache",
28
+ "comment": "Bump @lage-run/target-graph to v0.8.1",
29
+ "commit": "c5fc57309aaa493758f646cbfe02dc84f679675e"
30
+ }
31
+ ]
32
+ }
33
+ },
34
+ {
35
+ "date": "Fri, 10 Mar 2023 01:25:03 GMT",
6
36
  "tag": "@lage-run/cache_v0.4.2",
7
37
  "version": "0.4.2",
8
38
  "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 Fri, 10 Mar 2023 01:24:11 GMT and should not be manually modified.
3
+ This log was last generated on Mon, 27 Mar 2023 18:00:03 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 0.5.0
8
+
9
+ Mon, 27 Mar 2023 18:00:03 GMT
10
+
11
+ ### Minor changes
12
+
13
+ - gitignore to be respected again in the envglob - this causes major perf regression otherwise (kchau@microsoft.com)
14
+
15
+ ## 0.4.3
16
+
17
+ Tue, 14 Mar 2023 00:28:38 GMT
18
+
19
+ ### Patches
20
+
21
+ - Bump @lage-run/target-graph to v0.8.1
22
+
7
23
  ## 0.4.2
8
24
 
9
- Fri, 10 Mar 2023 01:24:11 GMT
25
+ Fri, 10 Mar 2023 01:25:03 GMT
10
26
 
11
27
  ### Patches
12
28
 
package/lib/salt.js CHANGED
@@ -52,7 +52,7 @@ function getEnvHashOneAtTime(environmentGlobFiles, repoRoot) {
52
52
  }
53
53
  const hashes = (0, _globHasher.hashGlobGit)(environmentGlobFiles, {
54
54
  cwd: repoRoot,
55
- gitignore: false
55
+ gitignore: true
56
56
  });
57
57
  envHashes[key] = Object.values(hashes);
58
58
  return envHashes[key];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lage-run/cache",
3
- "version": "0.4.2",
3
+ "version": "0.5.0",
4
4
  "description": "Cache for Lage",
5
5
  "repository": {
6
6
  "url": "https://github.com/microsoft/lage"
@@ -16,7 +16,7 @@
16
16
  },
17
17
  "dependencies": {
18
18
  "@lage-run/hasher": "^0.2.1",
19
- "@lage-run/target-graph": "^0.8.0",
19
+ "@lage-run/target-graph": "^0.8.1",
20
20
  "@lage-run/logger": "^1.2.2",
21
21
  "backfill-config": "^6.3.0",
22
22
  "backfill-cache": "^5.6.1",