@lage-run/scheduler
Advanced tools
Comparing version 0.5.6 to 0.5.7
@@ -5,3 +5,30 @@ { | ||
{ | ||
"date": "Tue, 01 Nov 2022 22:25:35 GMT", | ||
"date": "Tue, 01 Nov 2022 22:48:19 GMT", | ||
"tag": "@lage-run/scheduler_v0.5.7", | ||
"version": "0.5.7", | ||
"comments": { | ||
"patch": [ | ||
{ | ||
"author": "kchau@microsoft.com", | ||
"package": "@lage-run/scheduler", | ||
"commit": "97b306418acd099a3ed6f3dfc062b513f5fe391c", | ||
"comment": "get rid of third party abort-controller impl" | ||
}, | ||
{ | ||
"author": "beachball", | ||
"package": "@lage-run/scheduler", | ||
"comment": "Bump @lage-run/worker-threads-pool to v0.4.4", | ||
"commit": "97b306418acd099a3ed6f3dfc062b513f5fe391c" | ||
}, | ||
{ | ||
"author": "beachball", | ||
"package": "@lage-run/scheduler", | ||
"comment": "Bump @lage-run/scheduler-types to v0.2.6", | ||
"commit": "97b306418acd099a3ed6f3dfc062b513f5fe391c" | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"date": "Tue, 01 Nov 2022 22:25:59 GMT", | ||
"tag": "@lage-run/scheduler_v0.5.6", | ||
@@ -8,0 +35,0 @@ "version": "0.5.6", |
# Change Log - @lage-run/scheduler | ||
This log was last generated on Tue, 01 Nov 2022 22:25:35 GMT and should not be manually modified. | ||
This log was last generated on Tue, 01 Nov 2022 22:48:19 GMT and should not be manually modified. | ||
<!-- Start content --> | ||
## 0.5.7 | ||
Tue, 01 Nov 2022 22:48:19 GMT | ||
### Patches | ||
- get rid of third party abort-controller impl (kchau@microsoft.com) | ||
- Bump @lage-run/worker-threads-pool to v0.4.4 | ||
- Bump @lage-run/scheduler-types to v0.2.6 | ||
## 0.5.6 | ||
Tue, 01 Nov 2022 22:25:35 GMT | ||
Tue, 01 Nov 2022 22:25:59 GMT | ||
@@ -11,0 +21,0 @@ ### Patches |
@@ -1,4 +0,4 @@ | ||
import { AbortController } from "abort-controller"; | ||
/// <reference types="node" /> | ||
/// <reference types="global" /> | ||
import { WrappedTarget } from "./WrappedTarget.js"; | ||
import type { AbortSignal } from "abort-controller"; | ||
import type { CacheProvider, TargetHasher } from "@lage-run/cache"; | ||
@@ -5,0 +5,0 @@ import type { Logger } from "@lage-run/logger"; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.SimpleScheduler = void 0; | ||
const abort_controller_1 = require("abort-controller"); | ||
const categorizeTargetRuns_js_1 = require("./categorizeTargetRuns.js"); | ||
@@ -28,3 +27,3 @@ const target_graph_1 = require("@lage-run/target-graph"); | ||
this.targetsByPriority = []; | ||
this.abortController = new abort_controller_1.AbortController(); | ||
this.abortController = new AbortController(); | ||
this.abortSignal = this.abortController.signal; | ||
@@ -137,3 +136,3 @@ this.dependencies = []; | ||
} | ||
this.abortController = new abort_controller_1.AbortController(); | ||
this.abortController = new AbortController(); | ||
this.abortSignal = this.abortController.signal; | ||
@@ -140,0 +139,0 @@ for (const targetRun of this.targetRuns.values()) { |
@@ -1,2 +0,2 @@ | ||
import type { AbortController } from "abort-controller"; | ||
/// <reference types="node" /> | ||
import type { CacheProvider } from "@lage-run/cache"; | ||
@@ -3,0 +3,0 @@ import type { Pool } from "@lage-run/worker-threads-pool"; |
{ | ||
"name": "@lage-run/scheduler", | ||
"version": "0.5.6", | ||
"version": "0.5.7", | ||
"description": "Scheduler for Lage", | ||
@@ -21,7 +21,6 @@ "repository": { | ||
"@lage-run/cache": "^0.1.28", | ||
"@lage-run/worker-threads-pool": "^0.4.3", | ||
"abort-controller": "^3.0.0" | ||
"@lage-run/worker-threads-pool": "^0.4.4" | ||
}, | ||
"devDependencies": { | ||
"@lage-run/scheduler-types": "^0.2.5", | ||
"@lage-run/scheduler-types": "^0.2.6", | ||
"monorepo-scripts": "*" | ||
@@ -28,0 +27,0 @@ }, |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
110529
4
2225
- Removedabort-controller@^3.0.0
- Removedabort-controller@3.0.0(transitive)
- Removedevent-target-shim@5.0.1(transitive)