зеркало из https://github.com/microsoft/lage.git
applying package updates
This commit is contained in:
Родитель
15f4763e0a
Коммит
0cd656dd0c
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"type": "patch",
|
||||
"comment": "adds a memory limit param",
|
||||
"packageName": "@lage-run/cli",
|
||||
"email": "kchau@microsoft.com",
|
||||
"dependentChangeType": "patch"
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"type": "patch",
|
||||
"comment": "adds memory information from pool",
|
||||
"packageName": "@lage-run/reporters",
|
||||
"email": "kchau@microsoft.com",
|
||||
"dependentChangeType": "patch"
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"type": "patch",
|
||||
"comment": "account for max worker idle memory limit",
|
||||
"packageName": "@lage-run/scheduler",
|
||||
"email": "kchau@microsoft.com",
|
||||
"dependentChangeType": "patch"
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"type": "patch",
|
||||
"comment": "account for max worker idle memory limit",
|
||||
"packageName": "@lage-run/scheduler-types",
|
||||
"email": "kchau@microsoft.com",
|
||||
"dependentChangeType": "patch"
|
||||
}
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"type": "minor",
|
||||
"comment": "adds memory limit + restart capability",
|
||||
"packageName": "@lage-run/worker-threads-pool",
|
||||
"email": "kchau@microsoft.com",
|
||||
"dependentChangeType": "patch"
|
||||
}
|
|
@ -1,6 +1,33 @@
|
|||
{
|
||||
"name": "@lage-run/cli",
|
||||
"entries": [
|
||||
{
|
||||
"date": "Sat, 29 Oct 2022 01:06:17 GMT",
|
||||
"tag": "@lage-run/cli_v0.4.24",
|
||||
"version": "0.4.24",
|
||||
"comments": {
|
||||
"patch": [
|
||||
{
|
||||
"author": "kchau@microsoft.com",
|
||||
"package": "@lage-run/cli",
|
||||
"commit": "15f4763e0ac29760f813523d3f37b6a5078f4897",
|
||||
"comment": "adds a memory limit param"
|
||||
},
|
||||
{
|
||||
"author": "beachball",
|
||||
"package": "@lage-run/cli",
|
||||
"comment": "Bump @lage-run/scheduler to v0.5.1",
|
||||
"commit": "15f4763e0ac29760f813523d3f37b6a5078f4897"
|
||||
},
|
||||
{
|
||||
"author": "beachball",
|
||||
"package": "@lage-run/cli",
|
||||
"comment": "Bump @lage-run/reporters to v0.2.32",
|
||||
"commit": "15f4763e0ac29760f813523d3f37b6a5078f4897"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"date": "Wed, 26 Oct 2022 22:48:35 GMT",
|
||||
"tag": "@lage-run/cli_v0.4.23",
|
||||
|
|
|
@ -1,9 +1,19 @@
|
|||
# Change Log - @lage-run/cli
|
||||
|
||||
This log was last generated on Wed, 26 Oct 2022 22:48:35 GMT and should not be manually modified.
|
||||
This log was last generated on Sat, 29 Oct 2022 01:06:17 GMT and should not be manually modified.
|
||||
|
||||
<!-- Start content -->
|
||||
|
||||
## 0.4.24
|
||||
|
||||
Sat, 29 Oct 2022 01:06:17 GMT
|
||||
|
||||
### Patches
|
||||
|
||||
- adds a memory limit param (kchau@microsoft.com)
|
||||
- Bump @lage-run/scheduler to v0.5.1
|
||||
- Bump @lage-run/reporters to v0.2.32
|
||||
|
||||
## 0.4.23
|
||||
|
||||
Wed, 26 Oct 2022 22:48:35 GMT
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lage-run/cli",
|
||||
"version": "0.4.23",
|
||||
"version": "0.4.24",
|
||||
"description": "Command Line Interface for Lage",
|
||||
"repository": {
|
||||
"url": "https://github.com/microsoft/lage"
|
||||
|
@ -19,10 +19,10 @@
|
|||
"dependencies": {
|
||||
"@lage-run/find-npm-client": "^0.1.1",
|
||||
"@lage-run/logger": "^1.2.0",
|
||||
"@lage-run/scheduler": "^0.5.0",
|
||||
"@lage-run/scheduler": "^0.5.1",
|
||||
"@lage-run/target-graph": "^0.5.0",
|
||||
"@lage-run/cache": "^0.1.25",
|
||||
"@lage-run/reporters": "^0.2.31",
|
||||
"@lage-run/reporters": "^0.2.32",
|
||||
"commander": "^9.4.0",
|
||||
"workspace-tools": "^0.28.0",
|
||||
"chokidar": "3.5.3"
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
"test": "jest"
|
||||
},
|
||||
"dependencies": {
|
||||
"@lage-run/cli": "^0.4.23"
|
||||
"@lage-run/cli": "^0.4.24"
|
||||
},
|
||||
"devDependencies": {
|
||||
"memory-streams": "0.1.3"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lage-run/lage",
|
||||
"version": "2.5.1",
|
||||
"version": "2.5.2",
|
||||
"main": "dist/main.js",
|
||||
"bin": {
|
||||
"lage": "dist/lage.js"
|
||||
|
|
|
@ -1,6 +1,27 @@
|
|||
{
|
||||
"name": "@lage-run/reporters",
|
||||
"entries": [
|
||||
{
|
||||
"date": "Sat, 29 Oct 2022 01:06:17 GMT",
|
||||
"tag": "@lage-run/reporters_v0.2.32",
|
||||
"version": "0.2.32",
|
||||
"comments": {
|
||||
"patch": [
|
||||
{
|
||||
"author": "kchau@microsoft.com",
|
||||
"package": "@lage-run/reporters",
|
||||
"commit": "15f4763e0ac29760f813523d3f37b6a5078f4897",
|
||||
"comment": "adds memory information from pool"
|
||||
},
|
||||
{
|
||||
"author": "beachball",
|
||||
"package": "@lage-run/reporters",
|
||||
"comment": "Bump @lage-run/scheduler-types to v0.2.1",
|
||||
"commit": "15f4763e0ac29760f813523d3f37b6a5078f4897"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"date": "Wed, 26 Oct 2022 22:01:13 GMT",
|
||||
"tag": "@lage-run/reporters_v0.2.31",
|
||||
|
|
|
@ -1,9 +1,18 @@
|
|||
# Change Log - @lage-run/reporters
|
||||
|
||||
This log was last generated on Wed, 26 Oct 2022 22:01:13 GMT and should not be manually modified.
|
||||
This log was last generated on Sat, 29 Oct 2022 01:06:17 GMT and should not be manually modified.
|
||||
|
||||
<!-- Start content -->
|
||||
|
||||
## 0.2.32
|
||||
|
||||
Sat, 29 Oct 2022 01:06:17 GMT
|
||||
|
||||
### Patches
|
||||
|
||||
- adds memory information from pool (kchau@microsoft.com)
|
||||
- Bump @lage-run/scheduler-types to v0.2.1
|
||||
|
||||
## 0.2.31
|
||||
|
||||
Wed, 26 Oct 2022 22:01:13 GMT
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lage-run/reporters",
|
||||
"version": "0.2.31",
|
||||
"version": "0.2.32",
|
||||
"description": "Log reporters for Lage",
|
||||
"repository": {
|
||||
"url": "https://github.com/microsoft/lage"
|
||||
|
@ -16,7 +16,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@lage-run/logger": "^1.2.0",
|
||||
"@lage-run/scheduler-types": "^0.2.0",
|
||||
"@lage-run/scheduler-types": "^0.2.1",
|
||||
"@lage-run/target-graph": "^0.5.0",
|
||||
"@lage-run/format-hrtime": "^0.1.1",
|
||||
"chalk": "^4.0.0",
|
||||
|
|
|
@ -1,6 +1,27 @@
|
|||
{
|
||||
"name": "@lage-run/scheduler-types",
|
||||
"entries": [
|
||||
{
|
||||
"date": "Sat, 29 Oct 2022 01:06:17 GMT",
|
||||
"tag": "@lage-run/scheduler-types_v0.2.1",
|
||||
"version": "0.2.1",
|
||||
"comments": {
|
||||
"patch": [
|
||||
{
|
||||
"author": "kchau@microsoft.com",
|
||||
"package": "@lage-run/scheduler-types",
|
||||
"commit": "15f4763e0ac29760f813523d3f37b6a5078f4897",
|
||||
"comment": "account for max worker idle memory limit"
|
||||
},
|
||||
{
|
||||
"author": "beachball",
|
||||
"package": "@lage-run/scheduler-types",
|
||||
"comment": "Bump @lage-run/worker-threads-pool to v0.4.0",
|
||||
"commit": "15f4763e0ac29760f813523d3f37b6a5078f4897"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"date": "Wed, 26 Oct 2022 22:01:13 GMT",
|
||||
"tag": "@lage-run/scheduler-types_v0.2.0",
|
||||
|
|
|
@ -1,9 +1,18 @@
|
|||
# Change Log - @lage-run/scheduler-types
|
||||
|
||||
This log was last generated on Wed, 26 Oct 2022 22:01:13 GMT and should not be manually modified.
|
||||
This log was last generated on Sat, 29 Oct 2022 01:06:17 GMT and should not be manually modified.
|
||||
|
||||
<!-- Start content -->
|
||||
|
||||
## 0.2.1
|
||||
|
||||
Sat, 29 Oct 2022 01:06:17 GMT
|
||||
|
||||
### Patches
|
||||
|
||||
- account for max worker idle memory limit (kchau@microsoft.com)
|
||||
- Bump @lage-run/worker-threads-pool to v0.4.0
|
||||
|
||||
## 0.2.0
|
||||
|
||||
Wed, 26 Oct 2022 22:01:13 GMT
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lage-run/scheduler-types",
|
||||
"version": "0.2.0",
|
||||
"version": "0.2.1",
|
||||
"description": "Scheduler types for Lage",
|
||||
"repository": {
|
||||
"url": "https://github.com/microsoft/lage"
|
||||
|
@ -17,7 +17,7 @@
|
|||
"@lage-run/target-graph": "^0.5.0",
|
||||
"@lage-run/logger": "^1.2.0",
|
||||
"@lage-run/cache": "^0.1.25",
|
||||
"@lage-run/worker-threads-pool": "^0.3.0",
|
||||
"@lage-run/worker-threads-pool": "^0.4.0",
|
||||
"p-graph": "^1.1.1",
|
||||
"p-profiler": "^0.2.1",
|
||||
"abort-controller": "^3.0.0",
|
||||
|
|
|
@ -1,6 +1,33 @@
|
|||
{
|
||||
"name": "@lage-run/scheduler",
|
||||
"entries": [
|
||||
{
|
||||
"date": "Sat, 29 Oct 2022 01:06:17 GMT",
|
||||
"tag": "@lage-run/scheduler_v0.5.1",
|
||||
"version": "0.5.1",
|
||||
"comments": {
|
||||
"patch": [
|
||||
{
|
||||
"author": "kchau@microsoft.com",
|
||||
"package": "@lage-run/scheduler",
|
||||
"commit": "15f4763e0ac29760f813523d3f37b6a5078f4897",
|
||||
"comment": "account for max worker idle memory limit"
|
||||
},
|
||||
{
|
||||
"author": "beachball",
|
||||
"package": "@lage-run/scheduler",
|
||||
"comment": "Bump @lage-run/worker-threads-pool to v0.4.0",
|
||||
"commit": "15f4763e0ac29760f813523d3f37b6a5078f4897"
|
||||
},
|
||||
{
|
||||
"author": "beachball",
|
||||
"package": "@lage-run/scheduler",
|
||||
"comment": "Bump @lage-run/scheduler-types to v0.2.1",
|
||||
"commit": "15f4763e0ac29760f813523d3f37b6a5078f4897"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"date": "Wed, 26 Oct 2022 22:01:13 GMT",
|
||||
"tag": "@lage-run/scheduler_v0.5.0",
|
||||
|
|
|
@ -1,9 +1,19 @@
|
|||
# Change Log - @lage-run/scheduler
|
||||
|
||||
This log was last generated on Wed, 26 Oct 2022 22:01:13 GMT and should not be manually modified.
|
||||
This log was last generated on Sat, 29 Oct 2022 01:06:17 GMT and should not be manually modified.
|
||||
|
||||
<!-- Start content -->
|
||||
|
||||
## 0.5.1
|
||||
|
||||
Sat, 29 Oct 2022 01:06:17 GMT
|
||||
|
||||
### Patches
|
||||
|
||||
- account for max worker idle memory limit (kchau@microsoft.com)
|
||||
- Bump @lage-run/worker-threads-pool to v0.4.0
|
||||
- Bump @lage-run/scheduler-types to v0.2.1
|
||||
|
||||
## 0.5.0
|
||||
|
||||
Wed, 26 Oct 2022 22:01:13 GMT
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lage-run/scheduler",
|
||||
"version": "0.5.0",
|
||||
"version": "0.5.1",
|
||||
"description": "Scheduler for Lage",
|
||||
"repository": {
|
||||
"url": "https://github.com/microsoft/lage"
|
||||
|
@ -18,7 +18,7 @@
|
|||
"@lage-run/target-graph": "^0.5.0",
|
||||
"@lage-run/logger": "^1.2.0",
|
||||
"@lage-run/cache": "^0.1.25",
|
||||
"@lage-run/worker-threads-pool": "^0.3.0",
|
||||
"@lage-run/worker-threads-pool": "^0.4.0",
|
||||
"@lage-run/format-hrtime": "^0.1.1",
|
||||
"p-graph": "^1.1.1",
|
||||
"p-profiler": "^0.2.1",
|
||||
|
@ -26,7 +26,7 @@
|
|||
"workspace-tools": "^0.28.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@lage-run/scheduler-types": "^0.2.0",
|
||||
"@lage-run/scheduler-types": "^0.2.1",
|
||||
"@lage-run/monorepo-fixture": "*",
|
||||
"@types/workerpool": "6.1.0",
|
||||
"monorepo-scripts": "*"
|
||||
|
|
|
@ -1,6 +1,21 @@
|
|||
{
|
||||
"name": "@lage-run/worker-threads-pool",
|
||||
"entries": [
|
||||
{
|
||||
"date": "Sat, 29 Oct 2022 01:06:17 GMT",
|
||||
"tag": "@lage-run/worker-threads-pool_v0.4.0",
|
||||
"version": "0.4.0",
|
||||
"comments": {
|
||||
"minor": [
|
||||
{
|
||||
"author": "kchau@microsoft.com",
|
||||
"package": "@lage-run/worker-threads-pool",
|
||||
"commit": "15f4763e0ac29760f813523d3f37b6a5078f4897",
|
||||
"comment": "adds memory limit + restart capability"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"date": "Wed, 26 Oct 2022 22:01:13 GMT",
|
||||
"tag": "@lage-run/worker-threads-pool_v0.3.0",
|
||||
|
|
|
@ -1,9 +1,17 @@
|
|||
# Change Log - @lage-run/worker-threads-pool
|
||||
|
||||
This log was last generated on Wed, 26 Oct 2022 22:01:13 GMT and should not be manually modified.
|
||||
This log was last generated on Sat, 29 Oct 2022 01:06:17 GMT and should not be manually modified.
|
||||
|
||||
<!-- Start content -->
|
||||
|
||||
## 0.4.0
|
||||
|
||||
Sat, 29 Oct 2022 01:06:17 GMT
|
||||
|
||||
### Minor changes
|
||||
|
||||
- adds memory limit + restart capability (kchau@microsoft.com)
|
||||
|
||||
## 0.3.0
|
||||
|
||||
Wed, 26 Oct 2022 22:01:13 GMT
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@lage-run/worker-threads-pool",
|
||||
"version": "0.3.0",
|
||||
"version": "0.4.0",
|
||||
"description": "A worker_threads pool implementation based on the official Node.js async_hooks documentation",
|
||||
"repository": {
|
||||
"url": "https://github.com/microsoft/lage"
|
||||
|
|
Загрузка…
Ссылка в новой задаче