@lage-run/scheduler
Advanced tools
Comparing version 0.8.0 to 0.8.1
@@ -5,3 +5,18 @@ { | ||
{ | ||
"date": "Wed, 18 Jan 2023 18:18:13 GMT", | ||
"date": "Fri, 27 Jan 2023 00:28:03 GMT", | ||
"tag": "@lage-run/scheduler_v0.8.1", | ||
"version": "0.8.1", | ||
"comments": { | ||
"patch": [ | ||
{ | ||
"author": "kchau@microsoft.com", | ||
"package": "@lage-run/scheduler", | ||
"commit": "b0f0b5a7773a71c111799f3a3b0a48a7824b838b", | ||
"comment": "fixing profiler so that it will load correctly in the tracing UI" | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"date": "Wed, 18 Jan 2023 18:18:35 GMT", | ||
"tag": "@lage-run/scheduler_v0.8.0", | ||
@@ -8,0 +23,0 @@ "version": "0.8.0", |
# Change Log - @lage-run/scheduler | ||
This log was last generated on Wed, 18 Jan 2023 18:18:13 GMT and should not be manually modified. | ||
This log was last generated on Fri, 27 Jan 2023 00:28:03 GMT and should not be manually modified. | ||
<!-- Start content --> | ||
## 0.8.1 | ||
Fri, 27 Jan 2023 00:28:03 GMT | ||
### Patches | ||
- fixing profiler so that it will load correctly in the tracing UI (kchau@microsoft.com) | ||
## 0.8.0 | ||
Wed, 18 Jan 2023 18:18:13 GMT | ||
Wed, 18 Jan 2023 18:18:35 GMT | ||
@@ -11,0 +19,0 @@ ### Minor changes |
@@ -253,3 +253,4 @@ "use strict"; | ||
} else { | ||
target.status = "skipped"; | ||
target.onStart(0); | ||
target.onSkipped(); | ||
} | ||
@@ -256,0 +257,0 @@ } catch (e1) { |
@@ -49,5 +49,5 @@ /// <reference types="node" /> | ||
onFail(): void; | ||
onSkipped(hash: string | null): void; | ||
onSkipped(hash?: string | undefined): void; | ||
getCache(): Promise<{ | ||
hash: null; | ||
hash: undefined; | ||
cacheHit: boolean; | ||
@@ -54,0 +54,0 @@ } | { |
@@ -48,2 +48,3 @@ "use strict"; | ||
if (this.status !== "running") { | ||
this.threadId = threadId; | ||
this.status = "running"; | ||
@@ -94,3 +95,3 @@ this.startTime = process.hrtime(); | ||
const { cacheProvider , hasher } = this.options; | ||
let hash = null; | ||
let hash = undefined; | ||
let cacheHit = false; | ||
@@ -97,0 +98,0 @@ const { target , shouldCache , shouldResetCache } = this.options; |
{ | ||
"name": "@lage-run/scheduler", | ||
"version": "0.8.0", | ||
"version": "0.8.1", | ||
"description": "Scheduler for Lage", | ||
@@ -5,0 +5,0 @@ "repository": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
102671
2676