@lage-run/scheduler 1.3.7 → 1.3.8

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/scheduler",
3
3
  "entries": [
4
4
  {
5
- "date": "Fri, 01 Nov 2024 08:07:21 GMT",
5
+ "date": "Fri, 08 Nov 2024 19:27:31 GMT",
6
+ "version": "1.3.8",
7
+ "tag": "@lage-run/scheduler_v1.3.8",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "brunoru@microsoft.com",
12
+ "package": "@lage-run/scheduler",
13
+ "commit": "824eeab824f26c6eaedd58416848c469a0c24f50",
14
+ "comment": "Escape with env.LAGE_WRITE_CACHE"
15
+ }
16
+ ]
17
+ }
18
+ },
19
+ {
20
+ "date": "Fri, 01 Nov 2024 08:07:38 GMT",
6
21
  "version": "1.3.7",
7
22
  "tag": "@lage-run/scheduler_v1.3.7",
8
23
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,20 @@
1
1
  # Change Log - @lage-run/scheduler
2
2
 
3
- <!-- This log was last generated on Fri, 01 Nov 2024 08:07:21 GMT and should not be manually modified. -->
3
+ <!-- This log was last generated on Fri, 08 Nov 2024 19:27:31 GMT and should not be manually modified. -->
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 1.3.8
8
+
9
+ Fri, 08 Nov 2024 19:27:31 GMT
10
+
11
+ ### Patches
12
+
13
+ - Escape with env.LAGE_WRITE_CACHE (brunoru@microsoft.com)
14
+
7
15
  ## 1.3.7
8
16
 
9
- Fri, 01 Nov 2024 08:07:21 GMT
17
+ Fri, 01 Nov 2024 08:07:38 GMT
10
18
 
11
19
  ### Patches
12
20
 
@@ -35,7 +35,7 @@ async function createCache(options) {
35
35
  root,
36
36
  cacheOptions: cacheOptions ?? {}
37
37
  }) : undefined,
38
- writeRemoteCache: cacheOptions?.writeRemoteCache === true || String(process.env.LAGE_WRITE_CACHE).toLowerCase() === "true" || _isRunningFromCI.isRunningFromCI
38
+ writeRemoteCache: (cacheOptions?.writeRemoteCache === true || String(process.env.LAGE_WRITE_CACHE).toLowerCase() === "true" || _isRunningFromCI.isRunningFromCI) && String(process.env.LAGE_WRITE_CACHE).toLowerCase() !== "false"
39
39
  });
40
40
  return {
41
41
  cacheProvider
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lage-run/scheduler",
3
- "version": "1.3.7",
3
+ "version": "1.3.8",
4
4
  "description": "Scheduler for Lage",
5
5
  "repository": {
6
6
  "type": "git",