This commit is contained in:
Ken Chau 2024-10-04 23:41:44 +00:00
Родитель 5030c3eca2
Коммит 5797a7bdc2
13 изменённых файлов: 97 добавлений и 43 удалений

Просмотреть файл

@ -1,18 +0,0 @@
{
"changes": [
{
"type": "patch",
"comment": "Modified info command to accommodate a \"LAGE_WORKER_SERVER\" flag (also, --server)",
"packageName": "@lage-run/cli",
"email": "kchau@microsoft.com",
"dependentChangeType": "patch"
},
{
"type": "patch",
"comment": "adds support for stdout / stderr output",
"packageName": "@lage-run/rpc",
"email": "kchau@microsoft.com",
"dependentChangeType": "patch"
}
]
}

Просмотреть файл

@ -1,11 +0,0 @@
{
"changes": [
{
"type": "minor",
"comment": "adds the exec --server capability that would launch the background server",
"packageName": "lage",
"email": "kchau@microsoft.com",
"dependentChangeType": "patch"
}
]
}

Просмотреть файл

@ -1,6 +1,27 @@
{
"name": "@lage-run/cli",
"entries": [
{
"date": "Fri, 04 Oct 2024 23:41:44 GMT",
"version": "0.23.1",
"tag": "@lage-run/cli_v0.23.1",
"comments": {
"patch": [
{
"author": "kchau@microsoft.com",
"package": "@lage-run/cli",
"commit": "5030c3eca2e52a4b31e4246b06dea37e126aa659",
"comment": "Modified info command to accommodate a \"LAGE_WORKER_SERVER\" flag (also, --server)"
},
{
"author": "beachball",
"package": "@lage-run/cli",
"comment": "Bump @lage-run/rpc to v1.2.3",
"commit": "not available"
}
]
}
},
{
"date": "Wed, 02 Oct 2024 20:26:19 GMT",
"version": "0.23.0",

Просмотреть файл

@ -1,9 +1,18 @@
# Change Log - @lage-run/cli
<!-- This log was last generated on Wed, 02 Oct 2024 20:26:19 GMT and should not be manually modified. -->
<!-- This log was last generated on Fri, 04 Oct 2024 23:41:44 GMT and should not be manually modified. -->
<!-- Start content -->
## 0.23.1
Fri, 04 Oct 2024 23:41:44 GMT
### Patches
- Modified info command to accommodate a "LAGE_WORKER_SERVER" flag (also, --server) (kchau@microsoft.com)
- Bump @lage-run/rpc to v1.2.3
## 0.23.0
Wed, 02 Oct 2024 20:26:19 GMT

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@lage-run/cli",
"version": "0.23.0",
"version": "0.23.1",
"description": "Command Line Interface for Lage",
"repository": {
"type": "git",
@ -27,7 +27,7 @@
"@lage-run/hasher": "^1.6.0",
"@lage-run/logger": "^1.3.1",
"@lage-run/reporters": "^1.2.11",
"@lage-run/rpc": "^1.2.2",
"@lage-run/rpc": "^1.2.3",
"@lage-run/runners": "^1.0.3",
"@lage-run/scheduler": "^1.3.2",
"@lage-run/scheduler-types": "^0.3.16",

Просмотреть файл

@ -19,7 +19,7 @@
"lint": "monorepo-scripts lint"
},
"dependencies": {
"@lage-run/cli": "^0.23.0",
"@lage-run/cli": "^0.23.1",
"@lage-run/globby": "^14.2.0",
"@lage-run/monorepo-scripts": "*",
"@lage-run/scheduler-types": "^0.3.16",

Просмотреть файл

@ -1,6 +1,27 @@
{
"name": "lage",
"entries": [
{
"date": "Fri, 04 Oct 2024 23:41:44 GMT",
"version": "2.11.0",
"tag": "lage_v2.11.0",
"comments": {
"minor": [
{
"author": "kchau@microsoft.com",
"package": "lage",
"commit": "5030c3eca2e52a4b31e4246b06dea37e126aa659",
"comment": "adds the exec --server capability that would launch the background server"
},
{
"author": "beachball",
"package": "lage",
"comment": "Bump @lage-run/cli to v0.23.1",
"commit": "not available"
}
]
}
},
{
"date": "Wed, 02 Oct 2024 20:26:19 GMT",
"version": "2.10.2",

Просмотреть файл

@ -1,9 +1,18 @@
# Change Log - lage
<!-- This log was last generated on Wed, 02 Oct 2024 20:26:19 GMT and should not be manually modified. -->
<!-- This log was last generated on Fri, 04 Oct 2024 23:41:44 GMT and should not be manually modified. -->
<!-- Start content -->
## 2.11.0
Fri, 04 Oct 2024 23:41:44 GMT
### Minor changes
- adds the exec --server capability that would launch the background server (kchau@microsoft.com)
- Bump @lage-run/cli to v0.23.1
## 2.10.2
Wed, 02 Oct 2024 20:26:19 GMT

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "lage",
"version": "2.10.2",
"version": "2.11.0",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/lage"
@ -23,7 +23,7 @@
"fsevents": "~2.3.2"
},
"devDependencies": {
"@lage-run/cli": "^0.23.0",
"@lage-run/cli": "^0.23.1",
"@lage-run/runners": "^1.0.3",
"backfill-config": "6.4.2",
"dts-bundle-generator": "^9.5.1",

Просмотреть файл

@ -1,6 +1,21 @@
{
"name": "@lage-run/rpc",
"entries": [
{
"date": "Fri, 04 Oct 2024 23:41:44 GMT",
"version": "1.2.3",
"tag": "@lage-run/rpc_v1.2.3",
"comments": {
"patch": [
{
"author": "kchau@microsoft.com",
"package": "@lage-run/rpc",
"commit": "5030c3eca2e52a4b31e4246b06dea37e126aa659",
"comment": "adds support for stdout / stderr output"
}
]
}
},
{
"date": "Wed, 02 Oct 2024 20:26:19 GMT",
"version": "1.2.2",

Просмотреть файл

@ -1,9 +1,17 @@
# Change Log - @lage-run/rpc
<!-- This log was last generated on Wed, 02 Oct 2024 20:26:19 GMT and should not be manually modified. -->
<!-- This log was last generated on Fri, 04 Oct 2024 23:41:44 GMT and should not be manually modified. -->
<!-- Start content -->
## 1.2.3
Fri, 04 Oct 2024 23:41:44 GMT
### Patches
- adds support for stdout / stderr output (kchau@microsoft.com)
## 1.2.2
Wed, 02 Oct 2024 20:26:19 GMT

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@lage-run/rpc",
"version": "1.2.2",
"version": "1.2.3",
"description": "RPC server and client for Lage",
"repository": {
"type": "git",

Просмотреть файл

@ -1697,7 +1697,7 @@ __metadata:
languageName: unknown
linkType: soft
"@lage-run/cli@npm:^0.23.0, @lage-run/cli@workspace:packages/cli":
"@lage-run/cli@npm:^0.23.1, @lage-run/cli@workspace:packages/cli":
version: 0.0.0-use.local
resolution: "@lage-run/cli@workspace:packages/cli"
dependencies:
@ -1709,7 +1709,7 @@ __metadata:
"@lage-run/monorepo-fixture": "npm:*"
"@lage-run/monorepo-scripts": "npm:*"
"@lage-run/reporters": "npm:^1.2.11"
"@lage-run/rpc": "npm:^1.2.2"
"@lage-run/rpc": "npm:^1.2.3"
"@lage-run/runners": "npm:^1.0.3"
"@lage-run/scheduler": "npm:^1.3.2"
"@lage-run/scheduler-types": "npm:^0.3.16"
@ -1746,7 +1746,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@lage-run/e2e-tests@workspace:packages/e2e-tests"
dependencies:
"@lage-run/cli": "npm:^0.23.0"
"@lage-run/cli": "npm:^0.23.1"
"@lage-run/globby": "npm:^14.2.0"
"@lage-run/monorepo-scripts": "npm:*"
"@lage-run/scheduler-types": "npm:^0.3.16"
@ -1862,7 +1862,7 @@ __metadata:
languageName: unknown
linkType: soft
"@lage-run/rpc@npm:^1.2.2, @lage-run/rpc@workspace:packages/rpc":
"@lage-run/rpc@npm:^1.2.3, @lage-run/rpc@workspace:packages/rpc":
version: 0.0.0-use.local
resolution: "@lage-run/rpc@workspace:packages/rpc"
dependencies:
@ -6067,7 +6067,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "lage@workspace:packages/lage"
dependencies:
"@lage-run/cli": "npm:^0.23.0"
"@lage-run/cli": "npm:^0.23.1"
"@lage-run/runners": "npm:^1.0.3"
backfill-config: "npm:6.4.2"
dts-bundle-generator: "npm:^9.5.1"