@lage-run/config 0.7.2 → 0.7.3
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/lib/index.d.ts +1 -1
- package/lib/index.js.map +1 -1
- package/lib/types/ConfigOptions.d.ts +26 -8
- package/package.json +13 -11
- package/CHANGELOG.json +0 -763
- package/CHANGELOG.md +0 -331
- package/jest.config.js +0 -1
- package/tsconfig.json +0 -7
package/lib/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ export { getConcurrency } from "./getConcurrency.js";
|
|
|
3
3
|
export { getMaxWorkersPerTask, getMaxWorkersPerTaskFromOptions } from "./getMaxWorkersPerTask.js";
|
|
4
4
|
export { readConfigFile } from "./readConfigFile.js";
|
|
5
5
|
export type { PipelineDefinition } from "./types/PipelineDefinition.js";
|
|
6
|
-
export type { ConfigOptions } from "./types/ConfigOptions.js";
|
|
6
|
+
export type { ConfigOptions, ConfigFileOptions } from "./types/ConfigOptions.js";
|
|
7
7
|
export type { CacheOptions } from "./types/CacheOptions.js";
|
|
8
8
|
export type { AzureCredentialName } from "./types/CacheOptions.js";
|
|
9
9
|
export type { LoggerOptions } from "./types/LoggerOptions.js";
|
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts"],"sourcesContent":["export { getConfig } from \"./getConfig.js\";\nexport { getConcurrency } from \"./getConcurrency.js\";\nexport { getMaxWorkersPerTask, getMaxWorkersPerTaskFromOptions } from \"./getMaxWorkersPerTask.js\";\nexport { readConfigFile } from \"./readConfigFile.js\";\nexport type { PipelineDefinition } from \"./types/PipelineDefinition.js\";\nexport type { ConfigOptions } from \"./types/ConfigOptions.js\";\nexport type { CacheOptions } from \"./types/CacheOptions.js\";\nexport type { AzureCredentialName } from \"./types/CacheOptions.js\";\nexport type { LoggerOptions } from \"./types/LoggerOptions.js\";\nexport type { Priority } from \"./types/Priority.js\";\n"],"names":["getConcurrency","getConfig","getMaxWorkersPerTask","getMaxWorkersPerTaskFromOptions","readConfigFile"],"mappings":";;;;;;;;;;;QACSA;eAAAA,8BAAc;;QADdC;eAAAA,oBAAS;;QAETC;eAAAA,0CAAoB;;QAAEC;eAAAA,qDAA+B;;QACrDC;eAAAA,8BAAc;;;2BAHG;gCACK;sCACuC;gCACvC"}
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"sourcesContent":["export { getConfig } from \"./getConfig.js\";\nexport { getConcurrency } from \"./getConcurrency.js\";\nexport { getMaxWorkersPerTask, getMaxWorkersPerTaskFromOptions } from \"./getMaxWorkersPerTask.js\";\nexport { readConfigFile } from \"./readConfigFile.js\";\nexport type { PipelineDefinition } from \"./types/PipelineDefinition.js\";\nexport type { ConfigOptions, ConfigFileOptions } from \"./types/ConfigOptions.js\";\nexport type { CacheOptions } from \"./types/CacheOptions.js\";\nexport type { AzureCredentialName } from \"./types/CacheOptions.js\";\nexport type { LoggerOptions } from \"./types/LoggerOptions.js\";\nexport type { Priority } from \"./types/Priority.js\";\n"],"names":["getConcurrency","getConfig","getMaxWorkersPerTask","getMaxWorkersPerTaskFromOptions","readConfigFile"],"mappings":";;;;;;;;;;;QACSA;eAAAA,8BAAc;;QADdC;eAAAA,oBAAS;;QAETC;eAAAA,0CAAoB;;QAAEC;eAAAA,qDAA+B;;QACrDC;eAAAA,8BAAc;;;2BAHG;gCACK;sCACuC;gCACvC"}
|
|
@@ -4,33 +4,46 @@ import type { PipelineDefinition } from "./PipelineDefinition.js";
|
|
|
4
4
|
import type { LoggerOptions } from "./LoggerOptions.js";
|
|
5
5
|
import type { TargetRunnerPickerOptions } from "@lage-run/runners";
|
|
6
6
|
export type NpmClient = "npm" | "yarn" | "pnpm";
|
|
7
|
+
/**
|
|
8
|
+
* lage options including defaults (after the config file is read).
|
|
9
|
+
* For the object in a config file, use `ConfigFileOptions` instead.
|
|
10
|
+
*/
|
|
7
11
|
export interface ConfigOptions {
|
|
8
12
|
/**
|
|
9
|
-
* Defines the task pipeline
|
|
10
|
-
*
|
|
13
|
+
* Defines the task pipeline (task names, dependencies, and optional custom target configuration).
|
|
14
|
+
* See [full pipeline docs](https://microsoft.github.io/lage/docs/guides/pipeline) for more details.
|
|
15
|
+
*
|
|
16
|
+
* Dependency syntax:
|
|
17
|
+
* - No prefix for dependencies on tasks for the same package.
|
|
18
|
+
* - Prefix with `^` to denote a direct package-topological dependency. (e.g. `^build` means run the `build` task
|
|
19
|
+
* in topological order by package.)
|
|
20
|
+
* - Prefix with `^^` to denote a transitive package-topological dependency. (e.g. `^^transpile` means run the `transpile` task for nested dependencies, but *not* for the current package.)
|
|
21
|
+
* - Use `packageName#taskName` to denote a dependency on a specific package's task: in the example below,
|
|
22
|
+
* package `foo`'s `build` task depends on package `bar`'s `bundle` task.
|
|
11
23
|
*
|
|
12
24
|
* Example:
|
|
13
25
|
*
|
|
14
|
-
* ```
|
|
26
|
+
* ```js
|
|
15
27
|
* {
|
|
16
28
|
* build: ["^build"],
|
|
17
29
|
* test: ["build"],
|
|
18
|
-
* lint: []
|
|
30
|
+
* lint: [],
|
|
19
31
|
* bundle: ["^^transpile"],
|
|
20
32
|
* transpile: [],
|
|
33
|
+
* "foo#build": ["bar#bundle"]
|
|
21
34
|
* }
|
|
22
35
|
* ```
|
|
23
36
|
*/
|
|
24
37
|
pipeline: PipelineDefinition;
|
|
25
38
|
/** Backfill cache options */
|
|
26
39
|
cacheOptions: CacheOptions;
|
|
27
|
-
/** Which files to ignore when calculating scopes with
|
|
40
|
+
/** Which files to ignore when calculating scopes with `--since` */
|
|
28
41
|
ignore: string[];
|
|
29
|
-
/**
|
|
42
|
+
/** Disable the `--since` flag when any of these files changed */
|
|
30
43
|
repoWideChanges: string[];
|
|
31
44
|
/** Which NPM Client to use when running npm lifecycle scripts */
|
|
32
45
|
npmClient: NpmClient;
|
|
33
|
-
/** Optional
|
|
46
|
+
/** Optional package task priorities, to make the scheduler give higher priority to tasks on the critical path */
|
|
34
47
|
priorities: Priority[];
|
|
35
48
|
/**
|
|
36
49
|
* Options that will be sent to all log reporters.
|
|
@@ -42,7 +55,7 @@ export interface ConfigOptions {
|
|
|
42
55
|
*/
|
|
43
56
|
runners: TargetRunnerPickerOptions;
|
|
44
57
|
/**
|
|
45
|
-
* Maximum worker idle memory
|
|
58
|
+
* Maximum worker idle memory in bytes. If exceeded, the worker will be restarted. This is useful to mitigate memory leaks.
|
|
46
59
|
*/
|
|
47
60
|
workerIdleMemoryLimit: number;
|
|
48
61
|
/**
|
|
@@ -70,3 +83,8 @@ export interface ConfigOptions {
|
|
|
70
83
|
*/
|
|
71
84
|
reporters: Record<string, string>;
|
|
72
85
|
}
|
|
86
|
+
/** Options for a lage configuration file */
|
|
87
|
+
export type ConfigFileOptions = Partial<Omit<ConfigOptions, "cacheOptions">> & {
|
|
88
|
+
/** Backfill cache options */
|
|
89
|
+
cacheOptions?: Partial<CacheOptions>;
|
|
90
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lage-run/config",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.3",
|
|
4
4
|
"description": "Config management for Lage",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -11,23 +11,25 @@
|
|
|
11
11
|
"main": "lib/index.js",
|
|
12
12
|
"types": "lib/index.d.ts",
|
|
13
13
|
"scripts": {
|
|
14
|
-
"build": "
|
|
15
|
-
"
|
|
16
|
-
"
|
|
14
|
+
"build": "yarn types && yarn transpile",
|
|
15
|
+
"transpile": "monorepo-scripts transpile",
|
|
16
|
+
"types": "yarn run -T tsc",
|
|
17
|
+
"test": "yarn run -T jest",
|
|
17
18
|
"lint": "monorepo-scripts lint"
|
|
18
19
|
},
|
|
19
20
|
"dependencies": {
|
|
20
|
-
"@lage-run/logger": "^1.3.
|
|
21
|
-
"@lage-run/runners": "^1.2.
|
|
22
|
-
"@lage-run/target-graph": "^0.12.
|
|
21
|
+
"@lage-run/logger": "^1.3.3",
|
|
22
|
+
"@lage-run/runners": "^1.2.7",
|
|
23
|
+
"@lage-run/target-graph": "^0.12.3",
|
|
23
24
|
"backfill-config": "^6.7.1",
|
|
24
25
|
"cosmiconfig": "^7.1.0",
|
|
25
|
-
"workspace-tools": "^0.
|
|
26
|
+
"workspace-tools": "^0.41.0"
|
|
26
27
|
},
|
|
27
28
|
"devDependencies": {
|
|
28
29
|
"@lage-run/monorepo-scripts": "^1.0.0"
|
|
29
30
|
},
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
|
|
31
|
+
"files": [
|
|
32
|
+
"lib/!(__*)",
|
|
33
|
+
"lib/!(__*)/**"
|
|
34
|
+
]
|
|
33
35
|
}
|
package/CHANGELOG.json
DELETED
|
@@ -1,763 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@lage-run/config",
|
|
3
|
-
"entries": [
|
|
4
|
-
{
|
|
5
|
-
"date": "Sat, 24 Jan 2026 09:00:58 GMT",
|
|
6
|
-
"version": "0.7.2",
|
|
7
|
-
"tag": "@lage-run/config_v0.7.2",
|
|
8
|
-
"comments": {
|
|
9
|
-
"patch": [
|
|
10
|
-
{
|
|
11
|
-
"author": "elcraig@microsoft.com",
|
|
12
|
-
"package": "@lage-run/config",
|
|
13
|
-
"commit": "092607a7d55561a9342ab3265ccab0142dd59b9b",
|
|
14
|
-
"comment": "Add explicit module boundary types and update typescript version"
|
|
15
|
-
},
|
|
16
|
-
{
|
|
17
|
-
"author": "email not defined",
|
|
18
|
-
"package": "@lage-run/config",
|
|
19
|
-
"commit": "092607a7d55561a9342ab3265ccab0142dd59b9b",
|
|
20
|
-
"comment": "Update dependency workspace-tools to v0.40.4 and fix deprecated API usage"
|
|
21
|
-
}
|
|
22
|
-
]
|
|
23
|
-
}
|
|
24
|
-
},
|
|
25
|
-
{
|
|
26
|
-
"date": "Thu, 15 Jan 2026 23:24:00 GMT",
|
|
27
|
-
"version": "0.7.1",
|
|
28
|
-
"tag": "@lage-run/config_v0.7.1",
|
|
29
|
-
"comments": {
|
|
30
|
-
"patch": [
|
|
31
|
-
{
|
|
32
|
-
"author": "renovate@whitesourcesoftware.com",
|
|
33
|
-
"package": "@lage-run/config",
|
|
34
|
-
"commit": "3d7ac61faadf82097fb2996431b537b2a9baa0e3",
|
|
35
|
-
"comment": "Update dependency workspace-tools to v0.40.0"
|
|
36
|
-
}
|
|
37
|
-
]
|
|
38
|
-
}
|
|
39
|
-
},
|
|
40
|
-
{
|
|
41
|
-
"date": "Tue, 21 Oct 2025 23:42:35 GMT",
|
|
42
|
-
"version": "0.7.0",
|
|
43
|
-
"tag": "@lage-run/config_v0.7.0",
|
|
44
|
-
"comments": {
|
|
45
|
-
"minor": [
|
|
46
|
-
{
|
|
47
|
-
"author": "nemanjatesic@microsoft.com",
|
|
48
|
-
"package": "@lage-run/config",
|
|
49
|
-
"commit": "cd3ca59beba687a1d3c859524786e2aeeea09953",
|
|
50
|
-
"comment": "Add custom reporter capability to Lage"
|
|
51
|
-
}
|
|
52
|
-
]
|
|
53
|
-
}
|
|
54
|
-
},
|
|
55
|
-
{
|
|
56
|
-
"date": "Thu, 25 Sep 2025 18:00:51 GMT",
|
|
57
|
-
"version": "0.6.0",
|
|
58
|
-
"tag": "@lage-run/config_v0.6.0",
|
|
59
|
-
"comments": {
|
|
60
|
-
"minor": [
|
|
61
|
-
{
|
|
62
|
-
"author": "brunoru@microsoft.com",
|
|
63
|
-
"package": "@lage-run/config",
|
|
64
|
-
"commit": "38888a6891fa45232aeba64f222d17177114dd23",
|
|
65
|
-
"comment": "Enhance CredentialCache to support multiple Azure credential types and allow configuration of credentialName in cache options"
|
|
66
|
-
}
|
|
67
|
-
]
|
|
68
|
-
}
|
|
69
|
-
},
|
|
70
|
-
{
|
|
71
|
-
"date": "Mon, 01 Sep 2025 08:10:36 GMT",
|
|
72
|
-
"version": "0.5.0",
|
|
73
|
-
"tag": "@lage-run/config_v0.5.0",
|
|
74
|
-
"comments": {
|
|
75
|
-
"minor": [
|
|
76
|
-
{
|
|
77
|
-
"author": "dannyvv@microsoft.com",
|
|
78
|
-
"package": "@lage-run/config",
|
|
79
|
-
"commit": "5f2d28335f9293a5cc44a3bc6a99f41f8f981e7c",
|
|
80
|
-
"comment": "Add merge logic for targetConfig"
|
|
81
|
-
}
|
|
82
|
-
]
|
|
83
|
-
}
|
|
84
|
-
},
|
|
85
|
-
{
|
|
86
|
-
"date": "Thu, 07 Aug 2025 08:10:10 GMT",
|
|
87
|
-
"version": "0.4.17",
|
|
88
|
-
"tag": "@lage-run/config_v0.4.17",
|
|
89
|
-
"comments": {
|
|
90
|
-
"patch": [
|
|
91
|
-
{
|
|
92
|
-
"author": "email not defined",
|
|
93
|
-
"package": "@lage-run/config",
|
|
94
|
-
"commit": "7ca58c8121ab43d58ba76379e5e0c2320622cf5d",
|
|
95
|
-
"comment": "Update backfill monorepo"
|
|
96
|
-
}
|
|
97
|
-
]
|
|
98
|
-
}
|
|
99
|
-
},
|
|
100
|
-
{
|
|
101
|
-
"date": "Fri, 01 Aug 2025 08:10:15 GMT",
|
|
102
|
-
"version": "0.4.16",
|
|
103
|
-
"tag": "@lage-run/config_v0.4.16",
|
|
104
|
-
"comments": {
|
|
105
|
-
"patch": [
|
|
106
|
-
{
|
|
107
|
-
"author": "renovate@whitesourcesoftware.com",
|
|
108
|
-
"package": "@lage-run/config",
|
|
109
|
-
"commit": "28308e0b441f625fb5a83daabadb55f49b208603",
|
|
110
|
-
"comment": "Update backfill monorepo"
|
|
111
|
-
},
|
|
112
|
-
{
|
|
113
|
-
"author": "renovate@whitesourcesoftware.com",
|
|
114
|
-
"package": "@lage-run/config",
|
|
115
|
-
"commit": "28308e0b441f625fb5a83daabadb55f49b208603",
|
|
116
|
-
"comment": "Update dependency workspace-tools to v0.38.4"
|
|
117
|
-
}
|
|
118
|
-
]
|
|
119
|
-
}
|
|
120
|
-
},
|
|
121
|
-
{
|
|
122
|
-
"date": "Tue, 29 Apr 2025 08:10:03 GMT",
|
|
123
|
-
"version": "0.4.15",
|
|
124
|
-
"tag": "@lage-run/config_v0.4.15",
|
|
125
|
-
"comments": {
|
|
126
|
-
"patch": [
|
|
127
|
-
{
|
|
128
|
-
"author": "elcraig@microsoft.com",
|
|
129
|
-
"package": "@lage-run/config",
|
|
130
|
-
"commit": "8cd955ef4910abb9fff6f0de40255fe842847a79",
|
|
131
|
-
"comment": "Make CacheOptions properties optional and document them"
|
|
132
|
-
}
|
|
133
|
-
]
|
|
134
|
-
}
|
|
135
|
-
},
|
|
136
|
-
{
|
|
137
|
-
"date": "Sat, 26 Apr 2025 08:08:38 GMT",
|
|
138
|
-
"version": "0.4.14",
|
|
139
|
-
"tag": "@lage-run/config_v0.4.14",
|
|
140
|
-
"comments": {
|
|
141
|
-
"patch": [
|
|
142
|
-
{
|
|
143
|
-
"author": "elcraig@microsoft.com",
|
|
144
|
-
"package": "@lage-run/config",
|
|
145
|
-
"commit": "31b9b2861d9aa59d8dd5b6b2ceb2444b11198694",
|
|
146
|
-
"comment": "Remove incorrect bin entries"
|
|
147
|
-
}
|
|
148
|
-
]
|
|
149
|
-
}
|
|
150
|
-
},
|
|
151
|
-
{
|
|
152
|
-
"date": "Thu, 17 Apr 2025 08:10:01 GMT",
|
|
153
|
-
"version": "0.4.13",
|
|
154
|
-
"tag": "@lage-run/config_v0.4.13",
|
|
155
|
-
"comments": {
|
|
156
|
-
"patch": [
|
|
157
|
-
{
|
|
158
|
-
"author": "renovate@whitesourcesoftware.com",
|
|
159
|
-
"package": "@lage-run/config",
|
|
160
|
-
"commit": "00e45954e48cdddcb3fa4b68a6e732a43ec7bd57",
|
|
161
|
-
"comment": "Update backfill monorepo"
|
|
162
|
-
},
|
|
163
|
-
{
|
|
164
|
-
"author": "email not defined",
|
|
165
|
-
"package": "@lage-run/config",
|
|
166
|
-
"commit": "00e45954e48cdddcb3fa4b68a6e732a43ec7bd57",
|
|
167
|
-
"comment": "Update dependency workspace-tools to v0.38.3"
|
|
168
|
-
}
|
|
169
|
-
]
|
|
170
|
-
}
|
|
171
|
-
},
|
|
172
|
-
{
|
|
173
|
-
"date": "Sat, 29 Mar 2025 02:16:38 GMT",
|
|
174
|
-
"version": "0.4.12",
|
|
175
|
-
"tag": "@lage-run/config_v0.4.12",
|
|
176
|
-
"comments": {
|
|
177
|
-
"none": [
|
|
178
|
-
{
|
|
179
|
-
"author": "elcraig@microsoft.com",
|
|
180
|
-
"package": "@lage-run/config",
|
|
181
|
-
"commit": "a680ab60dcddd84808f223a1b5f38a16e868b66f",
|
|
182
|
-
"comment": "Sync versions, and use workspace:^ versions for local deps"
|
|
183
|
-
}
|
|
184
|
-
]
|
|
185
|
-
}
|
|
186
|
-
},
|
|
187
|
-
{
|
|
188
|
-
"date": "Wed, 15 Jan 2025 16:56:22 GMT",
|
|
189
|
-
"version": "0.4.12",
|
|
190
|
-
"tag": "@lage-run/config_v0.4.12",
|
|
191
|
-
"comments": {
|
|
192
|
-
"patch": [
|
|
193
|
-
{
|
|
194
|
-
"author": "beachball",
|
|
195
|
-
"package": "@lage-run/config",
|
|
196
|
-
"comment": "Bump @lage-run/runners to v1.2.1",
|
|
197
|
-
"commit": "not available"
|
|
198
|
-
},
|
|
199
|
-
{
|
|
200
|
-
"author": "beachball",
|
|
201
|
-
"package": "@lage-run/config",
|
|
202
|
-
"comment": "Bump @lage-run/target-graph to v0.11.1",
|
|
203
|
-
"commit": "not available"
|
|
204
|
-
}
|
|
205
|
-
]
|
|
206
|
-
}
|
|
207
|
-
},
|
|
208
|
-
{
|
|
209
|
-
"date": "Mon, 02 Dec 2024 17:23:22 GMT",
|
|
210
|
-
"version": "0.4.11",
|
|
211
|
-
"tag": "@lage-run/config_v0.4.11",
|
|
212
|
-
"comments": {
|
|
213
|
-
"patch": [
|
|
214
|
-
{
|
|
215
|
-
"author": "beachball",
|
|
216
|
-
"package": "@lage-run/config",
|
|
217
|
-
"comment": "Bump @lage-run/runners to v1.2.0",
|
|
218
|
-
"commit": "not available"
|
|
219
|
-
},
|
|
220
|
-
{
|
|
221
|
-
"author": "beachball",
|
|
222
|
-
"package": "@lage-run/config",
|
|
223
|
-
"comment": "Bump @lage-run/target-graph to v0.11.0",
|
|
224
|
-
"commit": "not available"
|
|
225
|
-
}
|
|
226
|
-
]
|
|
227
|
-
}
|
|
228
|
-
},
|
|
229
|
-
{
|
|
230
|
-
"date": "Wed, 20 Nov 2024 08:12:37 GMT",
|
|
231
|
-
"version": "0.4.10",
|
|
232
|
-
"tag": "@lage-run/config_v0.4.10",
|
|
233
|
-
"comments": {
|
|
234
|
-
"patch": [
|
|
235
|
-
{
|
|
236
|
-
"author": "email not defined",
|
|
237
|
-
"package": "@lage-run/config",
|
|
238
|
-
"commit": "c6e9f4e5339a897dd06a54fe528a1fadd75db243",
|
|
239
|
-
"comment": "Update dependency workspace-tools to v0.38.1"
|
|
240
|
-
},
|
|
241
|
-
{
|
|
242
|
-
"author": "beachball",
|
|
243
|
-
"package": "@lage-run/config",
|
|
244
|
-
"comment": "Bump @lage-run/runners to v1.1.2",
|
|
245
|
-
"commit": "not available"
|
|
246
|
-
},
|
|
247
|
-
{
|
|
248
|
-
"author": "beachball",
|
|
249
|
-
"package": "@lage-run/config",
|
|
250
|
-
"comment": "Bump @lage-run/target-graph to v0.10.1",
|
|
251
|
-
"commit": "not available"
|
|
252
|
-
}
|
|
253
|
-
]
|
|
254
|
-
}
|
|
255
|
-
},
|
|
256
|
-
{
|
|
257
|
-
"date": "Wed, 20 Nov 2024 02:43:43 GMT",
|
|
258
|
-
"version": "0.4.9",
|
|
259
|
-
"tag": "@lage-run/config_v0.4.9",
|
|
260
|
-
"comments": {
|
|
261
|
-
"patch": [
|
|
262
|
-
{
|
|
263
|
-
"author": "beachball",
|
|
264
|
-
"package": "@lage-run/config",
|
|
265
|
-
"comment": "Bump @lage-run/runners to v1.1.1",
|
|
266
|
-
"commit": "not available"
|
|
267
|
-
}
|
|
268
|
-
]
|
|
269
|
-
}
|
|
270
|
-
},
|
|
271
|
-
{
|
|
272
|
-
"date": "Fri, 08 Nov 2024 19:45:09 GMT",
|
|
273
|
-
"version": "0.4.8",
|
|
274
|
-
"tag": "@lage-run/config_v0.4.8",
|
|
275
|
-
"comments": {
|
|
276
|
-
"patch": [
|
|
277
|
-
{
|
|
278
|
-
"author": "beachball",
|
|
279
|
-
"package": "@lage-run/config",
|
|
280
|
-
"comment": "Bump @lage-run/runners to v1.1.0",
|
|
281
|
-
"commit": "not available"
|
|
282
|
-
},
|
|
283
|
-
{
|
|
284
|
-
"author": "beachball",
|
|
285
|
-
"package": "@lage-run/config",
|
|
286
|
-
"comment": "Bump @lage-run/target-graph to v0.10.0",
|
|
287
|
-
"commit": "not available"
|
|
288
|
-
}
|
|
289
|
-
]
|
|
290
|
-
}
|
|
291
|
-
},
|
|
292
|
-
{
|
|
293
|
-
"date": "Fri, 01 Nov 2024 08:07:38 GMT",
|
|
294
|
-
"version": "0.4.7",
|
|
295
|
-
"tag": "@lage-run/config_v0.4.7",
|
|
296
|
-
"comments": {
|
|
297
|
-
"patch": [
|
|
298
|
-
{
|
|
299
|
-
"author": "beachball",
|
|
300
|
-
"package": "@lage-run/config",
|
|
301
|
-
"comment": "Bump @lage-run/runners to v1.0.7",
|
|
302
|
-
"commit": "not available"
|
|
303
|
-
}
|
|
304
|
-
]
|
|
305
|
-
}
|
|
306
|
-
},
|
|
307
|
-
{
|
|
308
|
-
"date": "Tue, 22 Oct 2024 15:19:29 GMT",
|
|
309
|
-
"version": "0.4.6",
|
|
310
|
-
"tag": "@lage-run/config_v0.4.6",
|
|
311
|
-
"comments": {
|
|
312
|
-
"patch": [
|
|
313
|
-
{
|
|
314
|
-
"author": "email not defined",
|
|
315
|
-
"package": "@lage-run/config",
|
|
316
|
-
"commit": "067b34dac0e6621e6dab889b4ecb3ffb96ed3b7c",
|
|
317
|
-
"comment": "Update dependency workspace-tools to v0.37.0"
|
|
318
|
-
},
|
|
319
|
-
{
|
|
320
|
-
"author": "beachball",
|
|
321
|
-
"package": "@lage-run/config",
|
|
322
|
-
"comment": "Bump @lage-run/runners to v1.0.6",
|
|
323
|
-
"commit": "not available"
|
|
324
|
-
},
|
|
325
|
-
{
|
|
326
|
-
"author": "beachball",
|
|
327
|
-
"package": "@lage-run/config",
|
|
328
|
-
"comment": "Bump @lage-run/target-graph to v0.9.3",
|
|
329
|
-
"commit": "not available"
|
|
330
|
-
}
|
|
331
|
-
]
|
|
332
|
-
}
|
|
333
|
-
},
|
|
334
|
-
{
|
|
335
|
-
"date": "Mon, 21 Oct 2024 22:18:54 GMT",
|
|
336
|
-
"version": "0.4.5",
|
|
337
|
-
"tag": "@lage-run/config_v0.4.5",
|
|
338
|
-
"comments": {
|
|
339
|
-
"patch": [
|
|
340
|
-
{
|
|
341
|
-
"author": "beachball",
|
|
342
|
-
"package": "@lage-run/config",
|
|
343
|
-
"comment": "Bump @lage-run/runners to v1.0.5",
|
|
344
|
-
"commit": "not available"
|
|
345
|
-
},
|
|
346
|
-
{
|
|
347
|
-
"author": "beachball",
|
|
348
|
-
"package": "@lage-run/config",
|
|
349
|
-
"comment": "Bump @lage-run/target-graph to v0.9.2",
|
|
350
|
-
"commit": "not available"
|
|
351
|
-
}
|
|
352
|
-
]
|
|
353
|
-
}
|
|
354
|
-
},
|
|
355
|
-
{
|
|
356
|
-
"date": "Thu, 17 Oct 2024 20:33:04 GMT",
|
|
357
|
-
"version": "0.4.4",
|
|
358
|
-
"tag": "@lage-run/config_v0.4.4",
|
|
359
|
-
"comments": {
|
|
360
|
-
"patch": [
|
|
361
|
-
{
|
|
362
|
-
"author": "beachball",
|
|
363
|
-
"package": "@lage-run/config",
|
|
364
|
-
"comment": "Bump @lage-run/runners to v1.0.4",
|
|
365
|
-
"commit": "not available"
|
|
366
|
-
},
|
|
367
|
-
{
|
|
368
|
-
"author": "beachball",
|
|
369
|
-
"package": "@lage-run/config",
|
|
370
|
-
"comment": "Bump @lage-run/target-graph to v0.9.1",
|
|
371
|
-
"commit": "not available"
|
|
372
|
-
}
|
|
373
|
-
]
|
|
374
|
-
}
|
|
375
|
-
},
|
|
376
|
-
{
|
|
377
|
-
"date": "Wed, 02 Oct 2024 20:26:19 GMT",
|
|
378
|
-
"version": "0.4.3",
|
|
379
|
-
"tag": "@lage-run/config_v0.4.3",
|
|
380
|
-
"comments": {
|
|
381
|
-
"patch": [
|
|
382
|
-
{
|
|
383
|
-
"author": "beachball",
|
|
384
|
-
"package": "@lage-run/config",
|
|
385
|
-
"comment": "Bump @lage-run/runners to v1.0.3",
|
|
386
|
-
"commit": "not available"
|
|
387
|
-
},
|
|
388
|
-
{
|
|
389
|
-
"author": "beachball",
|
|
390
|
-
"package": "@lage-run/config",
|
|
391
|
-
"comment": "Bump @lage-run/target-graph to v0.9.0",
|
|
392
|
-
"commit": "not available"
|
|
393
|
-
}
|
|
394
|
-
]
|
|
395
|
-
}
|
|
396
|
-
},
|
|
397
|
-
{
|
|
398
|
-
"date": "Fri, 13 Sep 2024 18:05:04 GMT",
|
|
399
|
-
"version": "0.4.2",
|
|
400
|
-
"tag": "@lage-run/config_v0.4.2",
|
|
401
|
-
"comments": {
|
|
402
|
-
"patch": [
|
|
403
|
-
{
|
|
404
|
-
"author": "beachball",
|
|
405
|
-
"package": "@lage-run/config",
|
|
406
|
-
"comment": "Bump @lage-run/runners to v1.0.2",
|
|
407
|
-
"commit": "not available"
|
|
408
|
-
},
|
|
409
|
-
{
|
|
410
|
-
"author": "beachball",
|
|
411
|
-
"package": "@lage-run/config",
|
|
412
|
-
"comment": "Bump @lage-run/target-graph to v0.8.10",
|
|
413
|
-
"commit": "not available"
|
|
414
|
-
}
|
|
415
|
-
]
|
|
416
|
-
}
|
|
417
|
-
},
|
|
418
|
-
{
|
|
419
|
-
"date": "Wed, 11 Sep 2024 20:30:48 GMT",
|
|
420
|
-
"version": "0.4.1",
|
|
421
|
-
"tag": "@lage-run/config_v0.4.1",
|
|
422
|
-
"comments": {
|
|
423
|
-
"patch": [
|
|
424
|
-
{
|
|
425
|
-
"author": "beachball",
|
|
426
|
-
"package": "@lage-run/config",
|
|
427
|
-
"comment": "Bump @lage-run/logger to v1.3.1",
|
|
428
|
-
"commit": "not available"
|
|
429
|
-
}
|
|
430
|
-
]
|
|
431
|
-
}
|
|
432
|
-
},
|
|
433
|
-
{
|
|
434
|
-
"date": "Sat, 07 Sep 2024 00:01:57 GMT",
|
|
435
|
-
"version": "0.4.0",
|
|
436
|
-
"tag": "@lage-run/config_v0.4.0",
|
|
437
|
-
"comments": {
|
|
438
|
-
"minor": [
|
|
439
|
-
{
|
|
440
|
-
"author": "kchau@microsoft.com",
|
|
441
|
-
"package": "@lage-run/config",
|
|
442
|
-
"commit": "fb00e0249a448bd0ab09a0f68e9ea3456d2a7152",
|
|
443
|
-
"comment": "adding parallelism to server"
|
|
444
|
-
}
|
|
445
|
-
]
|
|
446
|
-
}
|
|
447
|
-
},
|
|
448
|
-
{
|
|
449
|
-
"date": "Wed, 28 Aug 2024 21:12:45 GMT",
|
|
450
|
-
"version": "0.3.7",
|
|
451
|
-
"tag": "@lage-run/config_v0.3.7",
|
|
452
|
-
"comments": {
|
|
453
|
-
"patch": [
|
|
454
|
-
{
|
|
455
|
-
"author": "kchau@microsoft.com",
|
|
456
|
-
"package": "@lage-run/config",
|
|
457
|
-
"commit": "8b27a04b8d5916457d1c8219edd1f2d216543954",
|
|
458
|
-
"comment": "moving runners to its own package, fixing up imports"
|
|
459
|
-
},
|
|
460
|
-
{
|
|
461
|
-
"author": "beachball",
|
|
462
|
-
"package": "@lage-run/config",
|
|
463
|
-
"comment": "Bump @lage-run/runners to v1.0.1",
|
|
464
|
-
"commit": "not available"
|
|
465
|
-
}
|
|
466
|
-
]
|
|
467
|
-
}
|
|
468
|
-
},
|
|
469
|
-
{
|
|
470
|
-
"date": "Thu, 23 May 2024 18:15:05 GMT",
|
|
471
|
-
"version": "0.3.6",
|
|
472
|
-
"tag": "@lage-run/config_v0.3.6",
|
|
473
|
-
"comments": {
|
|
474
|
-
"patch": [
|
|
475
|
-
{
|
|
476
|
-
"author": "renovate@whitesourcesoftware.com",
|
|
477
|
-
"package": "@lage-run/config",
|
|
478
|
-
"commit": "04cdac2a148208348ea26f0d0190b90f947d2cfd",
|
|
479
|
-
"comment": "Update backfill monorepo"
|
|
480
|
-
}
|
|
481
|
-
]
|
|
482
|
-
}
|
|
483
|
-
},
|
|
484
|
-
{
|
|
485
|
-
"date": "Thu, 21 Dec 2023 09:49:09 GMT",
|
|
486
|
-
"version": "0.3.5",
|
|
487
|
-
"tag": "@lage-run/config_v0.3.5",
|
|
488
|
-
"comments": {
|
|
489
|
-
"patch": [
|
|
490
|
-
{
|
|
491
|
-
"author": "elcraig@microsoft.com",
|
|
492
|
-
"package": "@lage-run/config",
|
|
493
|
-
"commit": "429047eb173880261b9e76f82ef1fcf7bfe9e29a",
|
|
494
|
-
"comment": "Pin external deps to ensure explicit updates to lage bundle"
|
|
495
|
-
},
|
|
496
|
-
{
|
|
497
|
-
"author": "beachball",
|
|
498
|
-
"package": "@lage-run/config",
|
|
499
|
-
"comment": "Bump @lage-run/scheduler-types to v0.3.13",
|
|
500
|
-
"commit": "not available"
|
|
501
|
-
},
|
|
502
|
-
{
|
|
503
|
-
"author": "beachball",
|
|
504
|
-
"package": "@lage-run/config",
|
|
505
|
-
"comment": "Bump @lage-run/target-graph to v0.8.9",
|
|
506
|
-
"commit": "not available"
|
|
507
|
-
}
|
|
508
|
-
]
|
|
509
|
-
}
|
|
510
|
-
},
|
|
511
|
-
{
|
|
512
|
-
"date": "Thu, 21 Dec 2023 08:37:41 GMT",
|
|
513
|
-
"version": "0.3.4",
|
|
514
|
-
"tag": "@lage-run/config_v0.3.4",
|
|
515
|
-
"comments": {
|
|
516
|
-
"patch": [
|
|
517
|
-
{
|
|
518
|
-
"author": "elcraig@microsoft.com",
|
|
519
|
-
"package": "@lage-run/config",
|
|
520
|
-
"commit": "0752bad677868d982719f792f6692ab43ad325e0",
|
|
521
|
-
"comment": "Update backfill-config to ^6.4.1"
|
|
522
|
-
}
|
|
523
|
-
],
|
|
524
|
-
"none": [
|
|
525
|
-
{
|
|
526
|
-
"author": "elcraig@microsoft.com",
|
|
527
|
-
"package": "@lage-run/config",
|
|
528
|
-
"commit": "0752bad677868d982719f792f6692ab43ad325e0",
|
|
529
|
-
"comment": "Use ranges for devDependencies"
|
|
530
|
-
}
|
|
531
|
-
]
|
|
532
|
-
}
|
|
533
|
-
},
|
|
534
|
-
{
|
|
535
|
-
"date": "Tue, 12 Dec 2023 04:22:41 GMT",
|
|
536
|
-
"version": "0.3.3",
|
|
537
|
-
"tag": "@lage-run/config_v0.3.3",
|
|
538
|
-
"comments": {
|
|
539
|
-
"patch": [
|
|
540
|
-
{
|
|
541
|
-
"author": "stchur@microsoft.com",
|
|
542
|
-
"package": "@lage-run/config",
|
|
543
|
-
"commit": "f631134451741444619e28c80616ba22fc6454cf",
|
|
544
|
-
"comment": "Upgrade workspace-tools package to latest"
|
|
545
|
-
},
|
|
546
|
-
{
|
|
547
|
-
"author": "beachball",
|
|
548
|
-
"package": "@lage-run/config",
|
|
549
|
-
"comment": "Bump @lage-run/scheduler-types to v0.3.12",
|
|
550
|
-
"commit": "not available"
|
|
551
|
-
},
|
|
552
|
-
{
|
|
553
|
-
"author": "beachball",
|
|
554
|
-
"package": "@lage-run/config",
|
|
555
|
-
"comment": "Bump @lage-run/target-graph to v0.8.8",
|
|
556
|
-
"commit": "not available"
|
|
557
|
-
}
|
|
558
|
-
]
|
|
559
|
-
}
|
|
560
|
-
},
|
|
561
|
-
{
|
|
562
|
-
"date": "Mon, 17 Jul 2023 15:14:04 GMT",
|
|
563
|
-
"tag": "@lage-run/config_v0.3.2",
|
|
564
|
-
"version": "0.3.2",
|
|
565
|
-
"comments": {
|
|
566
|
-
"patch": [
|
|
567
|
-
{
|
|
568
|
-
"author": "email not defined",
|
|
569
|
-
"package": "@lage-run/config",
|
|
570
|
-
"commit": "5f41b1db342b6d7a8492a46b68ca328a21e61ee6",
|
|
571
|
-
"comment": "Update lage core deps"
|
|
572
|
-
},
|
|
573
|
-
{
|
|
574
|
-
"author": "beachball",
|
|
575
|
-
"package": "@lage-run/config",
|
|
576
|
-
"comment": "Bump @lage-run/scheduler-types to v0.3.11",
|
|
577
|
-
"commit": "5f41b1db342b6d7a8492a46b68ca328a21e61ee6"
|
|
578
|
-
},
|
|
579
|
-
{
|
|
580
|
-
"author": "beachball",
|
|
581
|
-
"package": "@lage-run/config",
|
|
582
|
-
"comment": "Bump @lage-run/target-graph to v0.8.7",
|
|
583
|
-
"commit": "5f41b1db342b6d7a8492a46b68ca328a21e61ee6"
|
|
584
|
-
}
|
|
585
|
-
]
|
|
586
|
-
}
|
|
587
|
-
},
|
|
588
|
-
{
|
|
589
|
-
"date": "Thu, 15 Jun 2023 17:04:58 GMT",
|
|
590
|
-
"tag": "@lage-run/config_v0.3.1",
|
|
591
|
-
"version": "0.3.1",
|
|
592
|
-
"comments": {
|
|
593
|
-
"patch": [
|
|
594
|
-
{
|
|
595
|
-
"author": "beachball",
|
|
596
|
-
"package": "@lage-run/config",
|
|
597
|
-
"comment": "Bump @lage-run/scheduler-types to v0.3.10",
|
|
598
|
-
"commit": "91dfab46c2cb13c175931f12f2964b2b9ace491a"
|
|
599
|
-
}
|
|
600
|
-
]
|
|
601
|
-
}
|
|
602
|
-
},
|
|
603
|
-
{
|
|
604
|
-
"date": "Thu, 25 May 2023 15:46:02 GMT",
|
|
605
|
-
"tag": "@lage-run/config_v0.3.0",
|
|
606
|
-
"version": "0.3.0",
|
|
607
|
-
"comments": {
|
|
608
|
-
"minor": [
|
|
609
|
-
{
|
|
610
|
-
"author": "altinokd@microsoft.com",
|
|
611
|
-
"package": "@lage-run/config",
|
|
612
|
-
"commit": "c2bf5ab7a31c05a11e9488a92d58ef0f74bc3e9d",
|
|
613
|
-
"comment": "Do not read config in targetWorker, instead pass CacheOptions as part of workerdata"
|
|
614
|
-
}
|
|
615
|
-
]
|
|
616
|
-
}
|
|
617
|
-
},
|
|
618
|
-
{
|
|
619
|
-
"date": "Mon, 08 May 2023 22:27:16 GMT",
|
|
620
|
-
"tag": "@lage-run/config_v0.2.1",
|
|
621
|
-
"version": "0.2.1",
|
|
622
|
-
"comments": {
|
|
623
|
-
"patch": [
|
|
624
|
-
{
|
|
625
|
-
"author": "beachball",
|
|
626
|
-
"package": "@lage-run/config",
|
|
627
|
-
"comment": "Bump @lage-run/scheduler-types to v0.3.9",
|
|
628
|
-
"commit": "5a132808f166179bc316a279c9e11a13d3a39103"
|
|
629
|
-
},
|
|
630
|
-
{
|
|
631
|
-
"author": "beachball",
|
|
632
|
-
"package": "@lage-run/config",
|
|
633
|
-
"comment": "Bump @lage-run/target-graph to v0.8.6",
|
|
634
|
-
"commit": "5a132808f166179bc316a279c9e11a13d3a39103"
|
|
635
|
-
}
|
|
636
|
-
]
|
|
637
|
-
}
|
|
638
|
-
},
|
|
639
|
-
{
|
|
640
|
-
"date": "Wed, 26 Apr 2023 04:56:20 GMT",
|
|
641
|
-
"tag": "@lage-run/config_v0.2.0",
|
|
642
|
-
"version": "0.2.0",
|
|
643
|
-
"comments": {
|
|
644
|
-
"minor": [
|
|
645
|
-
{
|
|
646
|
-
"author": "elcraig@microsoft.com",
|
|
647
|
-
"package": "@lage-run/config",
|
|
648
|
-
"commit": "56910ce2ef67d9d3dc99b7a75df007820e9444c8",
|
|
649
|
-
"comment": "Add readConfigFile API to read the file without defaults"
|
|
650
|
-
}
|
|
651
|
-
]
|
|
652
|
-
}
|
|
653
|
-
},
|
|
654
|
-
{
|
|
655
|
-
"date": "Tue, 25 Apr 2023 02:51:19 GMT",
|
|
656
|
-
"tag": "@lage-run/config_v0.1.4",
|
|
657
|
-
"version": "0.1.4",
|
|
658
|
-
"comments": {
|
|
659
|
-
"patch": [
|
|
660
|
-
{
|
|
661
|
-
"author": "elcraig@microsoft.com",
|
|
662
|
-
"package": "@lage-run/config",
|
|
663
|
-
"commit": "a2e112e8aafee26380684efca4db994a9c5e3801",
|
|
664
|
-
"comment": "Update repository and homepage"
|
|
665
|
-
},
|
|
666
|
-
{
|
|
667
|
-
"author": "beachball",
|
|
668
|
-
"package": "@lage-run/config",
|
|
669
|
-
"comment": "Bump @lage-run/logger to v1.3.0",
|
|
670
|
-
"commit": "a2e112e8aafee26380684efca4db994a9c5e3801"
|
|
671
|
-
},
|
|
672
|
-
{
|
|
673
|
-
"author": "beachball",
|
|
674
|
-
"package": "@lage-run/config",
|
|
675
|
-
"comment": "Bump @lage-run/scheduler-types to v0.3.8",
|
|
676
|
-
"commit": "a2e112e8aafee26380684efca4db994a9c5e3801"
|
|
677
|
-
},
|
|
678
|
-
{
|
|
679
|
-
"author": "beachball",
|
|
680
|
-
"package": "@lage-run/config",
|
|
681
|
-
"comment": "Bump @lage-run/target-graph to v0.8.4",
|
|
682
|
-
"commit": "a2e112e8aafee26380684efca4db994a9c5e3801"
|
|
683
|
-
}
|
|
684
|
-
]
|
|
685
|
-
}
|
|
686
|
-
},
|
|
687
|
-
{
|
|
688
|
-
"date": "Fri, 14 Apr 2023 04:37:54 GMT",
|
|
689
|
-
"tag": "@lage-run/config_v0.1.3",
|
|
690
|
-
"version": "0.1.3",
|
|
691
|
-
"comments": {
|
|
692
|
-
"patch": [
|
|
693
|
-
{
|
|
694
|
-
"author": "kchau@microsoft.com",
|
|
695
|
-
"package": "@lage-run/config",
|
|
696
|
-
"commit": "bb22ec2ee3a793eef0a09feb6759f7c10db65fe0",
|
|
697
|
-
"comment": "making lage boot faster"
|
|
698
|
-
},
|
|
699
|
-
{
|
|
700
|
-
"author": "beachball",
|
|
701
|
-
"package": "@lage-run/config",
|
|
702
|
-
"comment": "Bump @lage-run/scheduler-types to v0.3.7",
|
|
703
|
-
"commit": "bb22ec2ee3a793eef0a09feb6759f7c10db65fe0"
|
|
704
|
-
},
|
|
705
|
-
{
|
|
706
|
-
"author": "beachball",
|
|
707
|
-
"package": "@lage-run/config",
|
|
708
|
-
"comment": "Bump @lage-run/target-graph to v0.8.3",
|
|
709
|
-
"commit": "bb22ec2ee3a793eef0a09feb6759f7c10db65fe0"
|
|
710
|
-
}
|
|
711
|
-
]
|
|
712
|
-
}
|
|
713
|
-
},
|
|
714
|
-
{
|
|
715
|
-
"date": "Thu, 06 Apr 2023 22:27:50 GMT",
|
|
716
|
-
"tag": "@lage-run/config_v0.1.2",
|
|
717
|
-
"version": "0.1.2",
|
|
718
|
-
"comments": {
|
|
719
|
-
"patch": [
|
|
720
|
-
{
|
|
721
|
-
"author": "kchau@microsoft.com",
|
|
722
|
-
"package": "@lage-run/config",
|
|
723
|
-
"commit": "ec15819ad8677a57ed2c7b8ce55538da69095c3b",
|
|
724
|
-
"comment": "bumps workspace-tools and use async packageinfos"
|
|
725
|
-
},
|
|
726
|
-
{
|
|
727
|
-
"author": "beachball",
|
|
728
|
-
"package": "@lage-run/config",
|
|
729
|
-
"comment": "Bump @lage-run/scheduler-types to v0.3.6",
|
|
730
|
-
"commit": "ec15819ad8677a57ed2c7b8ce55538da69095c3b"
|
|
731
|
-
},
|
|
732
|
-
{
|
|
733
|
-
"author": "beachball",
|
|
734
|
-
"package": "@lage-run/config",
|
|
735
|
-
"comment": "Bump @lage-run/target-graph to v0.8.2",
|
|
736
|
-
"commit": "ec15819ad8677a57ed2c7b8ce55538da69095c3b"
|
|
737
|
-
}
|
|
738
|
-
]
|
|
739
|
-
}
|
|
740
|
-
},
|
|
741
|
-
{
|
|
742
|
-
"date": "Wed, 29 Mar 2023 22:41:49 GMT",
|
|
743
|
-
"tag": "@lage-run/config_v0.1.1",
|
|
744
|
-
"version": "0.1.1",
|
|
745
|
-
"comments": {
|
|
746
|
-
"patch": [
|
|
747
|
-
{
|
|
748
|
-
"author": "kchau@microsoft.com",
|
|
749
|
-
"package": "@lage-run/config",
|
|
750
|
-
"commit": "ec458f83e5adb784019efaa06f902ec75f85990c",
|
|
751
|
-
"comment": "moving config to its own package"
|
|
752
|
-
},
|
|
753
|
-
{
|
|
754
|
-
"author": "beachball",
|
|
755
|
-
"package": "@lage-run/config",
|
|
756
|
-
"comment": "Bump @lage-run/scheduler-types to v0.3.5",
|
|
757
|
-
"commit": "ec458f83e5adb784019efaa06f902ec75f85990c"
|
|
758
|
-
}
|
|
759
|
-
]
|
|
760
|
-
}
|
|
761
|
-
}
|
|
762
|
-
]
|
|
763
|
-
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,331 +0,0 @@
|
|
|
1
|
-
# Change Log - @lage-run/config
|
|
2
|
-
|
|
3
|
-
<!-- This log was last generated on Sat, 24 Jan 2026 09:00:58 GMT and should not be manually modified. -->
|
|
4
|
-
|
|
5
|
-
<!-- Start content -->
|
|
6
|
-
|
|
7
|
-
## 0.7.2
|
|
8
|
-
|
|
9
|
-
Sat, 24 Jan 2026 09:00:58 GMT
|
|
10
|
-
|
|
11
|
-
### Patches
|
|
12
|
-
|
|
13
|
-
- Add explicit module boundary types and update typescript version (elcraig@microsoft.com)
|
|
14
|
-
- Update dependency workspace-tools to v0.40.4 and fix deprecated API usage (email not defined)
|
|
15
|
-
|
|
16
|
-
## 0.7.1
|
|
17
|
-
|
|
18
|
-
Thu, 15 Jan 2026 23:24:00 GMT
|
|
19
|
-
|
|
20
|
-
### Patches
|
|
21
|
-
|
|
22
|
-
- Update dependency workspace-tools to v0.40.0 (renovate@whitesourcesoftware.com)
|
|
23
|
-
|
|
24
|
-
## 0.7.0
|
|
25
|
-
|
|
26
|
-
Tue, 21 Oct 2025 23:42:35 GMT
|
|
27
|
-
|
|
28
|
-
### Minor changes
|
|
29
|
-
|
|
30
|
-
- Add custom reporter capability to Lage (nemanjatesic@microsoft.com)
|
|
31
|
-
|
|
32
|
-
## 0.6.0
|
|
33
|
-
|
|
34
|
-
Thu, 25 Sep 2025 18:00:51 GMT
|
|
35
|
-
|
|
36
|
-
### Minor changes
|
|
37
|
-
|
|
38
|
-
- Enhance CredentialCache to support multiple Azure credential types and allow configuration of credentialName in cache options (brunoru@microsoft.com)
|
|
39
|
-
|
|
40
|
-
## 0.5.0
|
|
41
|
-
|
|
42
|
-
Mon, 01 Sep 2025 08:10:36 GMT
|
|
43
|
-
|
|
44
|
-
### Minor changes
|
|
45
|
-
|
|
46
|
-
- Add merge logic for targetConfig (dannyvv@microsoft.com)
|
|
47
|
-
|
|
48
|
-
## 0.4.17
|
|
49
|
-
|
|
50
|
-
Thu, 07 Aug 2025 08:10:10 GMT
|
|
51
|
-
|
|
52
|
-
### Patches
|
|
53
|
-
|
|
54
|
-
- Update backfill monorepo (email not defined)
|
|
55
|
-
|
|
56
|
-
## 0.4.16
|
|
57
|
-
|
|
58
|
-
Fri, 01 Aug 2025 08:10:15 GMT
|
|
59
|
-
|
|
60
|
-
### Patches
|
|
61
|
-
|
|
62
|
-
- Update backfill monorepo (renovate@whitesourcesoftware.com)
|
|
63
|
-
- Update dependency workspace-tools to v0.38.4 (renovate@whitesourcesoftware.com)
|
|
64
|
-
|
|
65
|
-
## 0.4.15
|
|
66
|
-
|
|
67
|
-
Tue, 29 Apr 2025 08:10:03 GMT
|
|
68
|
-
|
|
69
|
-
### Patches
|
|
70
|
-
|
|
71
|
-
- Make CacheOptions properties optional and document them (elcraig@microsoft.com)
|
|
72
|
-
|
|
73
|
-
## 0.4.14
|
|
74
|
-
|
|
75
|
-
Sat, 26 Apr 2025 08:08:38 GMT
|
|
76
|
-
|
|
77
|
-
### Patches
|
|
78
|
-
|
|
79
|
-
- Remove incorrect bin entries (elcraig@microsoft.com)
|
|
80
|
-
|
|
81
|
-
## 0.4.13
|
|
82
|
-
|
|
83
|
-
Thu, 17 Apr 2025 08:10:01 GMT
|
|
84
|
-
|
|
85
|
-
### Patches
|
|
86
|
-
|
|
87
|
-
- Update backfill monorepo (renovate@whitesourcesoftware.com)
|
|
88
|
-
- Update dependency workspace-tools to v0.38.3 (email not defined)
|
|
89
|
-
|
|
90
|
-
## 0.4.12
|
|
91
|
-
|
|
92
|
-
Wed, 15 Jan 2025 16:56:22 GMT
|
|
93
|
-
|
|
94
|
-
### Patches
|
|
95
|
-
|
|
96
|
-
- Bump @lage-run/runners to v1.2.1
|
|
97
|
-
- Bump @lage-run/target-graph to v0.11.1
|
|
98
|
-
|
|
99
|
-
## 0.4.11
|
|
100
|
-
|
|
101
|
-
Mon, 02 Dec 2024 17:23:22 GMT
|
|
102
|
-
|
|
103
|
-
### Patches
|
|
104
|
-
|
|
105
|
-
- Bump @lage-run/runners to v1.2.0
|
|
106
|
-
- Bump @lage-run/target-graph to v0.11.0
|
|
107
|
-
|
|
108
|
-
## 0.4.10
|
|
109
|
-
|
|
110
|
-
Wed, 20 Nov 2024 08:12:37 GMT
|
|
111
|
-
|
|
112
|
-
### Patches
|
|
113
|
-
|
|
114
|
-
- Update dependency workspace-tools to v0.38.1 (email not defined)
|
|
115
|
-
- Bump @lage-run/runners to v1.1.2
|
|
116
|
-
- Bump @lage-run/target-graph to v0.10.1
|
|
117
|
-
|
|
118
|
-
## 0.4.9
|
|
119
|
-
|
|
120
|
-
Wed, 20 Nov 2024 02:43:43 GMT
|
|
121
|
-
|
|
122
|
-
### Patches
|
|
123
|
-
|
|
124
|
-
- Bump @lage-run/runners to v1.1.1
|
|
125
|
-
|
|
126
|
-
## 0.4.8
|
|
127
|
-
|
|
128
|
-
Fri, 08 Nov 2024 19:45:09 GMT
|
|
129
|
-
|
|
130
|
-
### Patches
|
|
131
|
-
|
|
132
|
-
- Bump @lage-run/runners to v1.1.0
|
|
133
|
-
- Bump @lage-run/target-graph to v0.10.0
|
|
134
|
-
|
|
135
|
-
## 0.4.7
|
|
136
|
-
|
|
137
|
-
Fri, 01 Nov 2024 08:07:38 GMT
|
|
138
|
-
|
|
139
|
-
### Patches
|
|
140
|
-
|
|
141
|
-
- Bump @lage-run/runners to v1.0.7
|
|
142
|
-
|
|
143
|
-
## 0.4.6
|
|
144
|
-
|
|
145
|
-
Tue, 22 Oct 2024 15:19:29 GMT
|
|
146
|
-
|
|
147
|
-
### Patches
|
|
148
|
-
|
|
149
|
-
- Update dependency workspace-tools to v0.37.0 (email not defined)
|
|
150
|
-
- Bump @lage-run/runners to v1.0.6
|
|
151
|
-
- Bump @lage-run/target-graph to v0.9.3
|
|
152
|
-
|
|
153
|
-
## 0.4.5
|
|
154
|
-
|
|
155
|
-
Mon, 21 Oct 2024 22:18:54 GMT
|
|
156
|
-
|
|
157
|
-
### Patches
|
|
158
|
-
|
|
159
|
-
- Bump @lage-run/runners to v1.0.5
|
|
160
|
-
- Bump @lage-run/target-graph to v0.9.2
|
|
161
|
-
|
|
162
|
-
## 0.4.4
|
|
163
|
-
|
|
164
|
-
Thu, 17 Oct 2024 20:33:04 GMT
|
|
165
|
-
|
|
166
|
-
### Patches
|
|
167
|
-
|
|
168
|
-
- Bump @lage-run/runners to v1.0.4
|
|
169
|
-
- Bump @lage-run/target-graph to v0.9.1
|
|
170
|
-
|
|
171
|
-
## 0.4.3
|
|
172
|
-
|
|
173
|
-
Wed, 02 Oct 2024 20:26:19 GMT
|
|
174
|
-
|
|
175
|
-
### Patches
|
|
176
|
-
|
|
177
|
-
- Bump @lage-run/runners to v1.0.3
|
|
178
|
-
- Bump @lage-run/target-graph to v0.9.0
|
|
179
|
-
|
|
180
|
-
## 0.4.2
|
|
181
|
-
|
|
182
|
-
Fri, 13 Sep 2024 18:05:04 GMT
|
|
183
|
-
|
|
184
|
-
### Patches
|
|
185
|
-
|
|
186
|
-
- Bump @lage-run/runners to v1.0.2
|
|
187
|
-
- Bump @lage-run/target-graph to v0.8.10
|
|
188
|
-
|
|
189
|
-
## 0.4.1
|
|
190
|
-
|
|
191
|
-
Wed, 11 Sep 2024 20:30:48 GMT
|
|
192
|
-
|
|
193
|
-
### Patches
|
|
194
|
-
|
|
195
|
-
- Bump @lage-run/logger to v1.3.1
|
|
196
|
-
|
|
197
|
-
## 0.4.0
|
|
198
|
-
|
|
199
|
-
Sat, 07 Sep 2024 00:01:57 GMT
|
|
200
|
-
|
|
201
|
-
### Minor changes
|
|
202
|
-
|
|
203
|
-
- adding parallelism to server (kchau@microsoft.com)
|
|
204
|
-
|
|
205
|
-
## 0.3.7
|
|
206
|
-
|
|
207
|
-
Wed, 28 Aug 2024 21:12:45 GMT
|
|
208
|
-
|
|
209
|
-
### Patches
|
|
210
|
-
|
|
211
|
-
- moving runners to its own package, fixing up imports (kchau@microsoft.com)
|
|
212
|
-
- Bump @lage-run/runners to v1.0.1
|
|
213
|
-
|
|
214
|
-
## 0.3.6
|
|
215
|
-
|
|
216
|
-
Thu, 23 May 2024 18:15:05 GMT
|
|
217
|
-
|
|
218
|
-
### Patches
|
|
219
|
-
|
|
220
|
-
- Update backfill monorepo (renovate@whitesourcesoftware.com)
|
|
221
|
-
|
|
222
|
-
## 0.3.5
|
|
223
|
-
|
|
224
|
-
Thu, 21 Dec 2023 09:49:09 GMT
|
|
225
|
-
|
|
226
|
-
### Patches
|
|
227
|
-
|
|
228
|
-
- Pin external deps to ensure explicit updates to lage bundle (elcraig@microsoft.com)
|
|
229
|
-
- Bump @lage-run/scheduler-types to v0.3.13
|
|
230
|
-
- Bump @lage-run/target-graph to v0.8.9
|
|
231
|
-
|
|
232
|
-
## 0.3.4
|
|
233
|
-
|
|
234
|
-
Thu, 21 Dec 2023 08:37:41 GMT
|
|
235
|
-
|
|
236
|
-
### Patches
|
|
237
|
-
|
|
238
|
-
- Update backfill-config to ^6.4.1 (elcraig@microsoft.com)
|
|
239
|
-
|
|
240
|
-
## 0.3.3
|
|
241
|
-
|
|
242
|
-
Tue, 12 Dec 2023 04:22:41 GMT
|
|
243
|
-
|
|
244
|
-
### Patches
|
|
245
|
-
|
|
246
|
-
- Upgrade workspace-tools package to latest (stchur@microsoft.com)
|
|
247
|
-
- Bump @lage-run/scheduler-types to v0.3.12
|
|
248
|
-
- Bump @lage-run/target-graph to v0.8.8
|
|
249
|
-
|
|
250
|
-
## 0.3.2
|
|
251
|
-
|
|
252
|
-
Mon, 17 Jul 2023 15:14:04 GMT
|
|
253
|
-
|
|
254
|
-
### Patches
|
|
255
|
-
|
|
256
|
-
- Update lage core deps (email not defined)
|
|
257
|
-
- Bump @lage-run/scheduler-types to v0.3.11
|
|
258
|
-
- Bump @lage-run/target-graph to v0.8.7
|
|
259
|
-
|
|
260
|
-
## 0.3.1
|
|
261
|
-
|
|
262
|
-
Thu, 15 Jun 2023 17:04:58 GMT
|
|
263
|
-
|
|
264
|
-
### Patches
|
|
265
|
-
|
|
266
|
-
- Bump @lage-run/scheduler-types to v0.3.10
|
|
267
|
-
|
|
268
|
-
## 0.3.0
|
|
269
|
-
|
|
270
|
-
Thu, 25 May 2023 15:46:02 GMT
|
|
271
|
-
|
|
272
|
-
### Minor changes
|
|
273
|
-
|
|
274
|
-
- Do not read config in targetWorker, instead pass CacheOptions as part of workerdata (altinokd@microsoft.com)
|
|
275
|
-
|
|
276
|
-
## 0.2.1
|
|
277
|
-
|
|
278
|
-
Mon, 08 May 2023 22:27:16 GMT
|
|
279
|
-
|
|
280
|
-
### Patches
|
|
281
|
-
|
|
282
|
-
- Bump @lage-run/scheduler-types to v0.3.9
|
|
283
|
-
- Bump @lage-run/target-graph to v0.8.6
|
|
284
|
-
|
|
285
|
-
## 0.2.0
|
|
286
|
-
|
|
287
|
-
Wed, 26 Apr 2023 04:56:20 GMT
|
|
288
|
-
|
|
289
|
-
### Minor changes
|
|
290
|
-
|
|
291
|
-
- Add readConfigFile API to read the file without defaults (elcraig@microsoft.com)
|
|
292
|
-
|
|
293
|
-
## 0.1.4
|
|
294
|
-
|
|
295
|
-
Tue, 25 Apr 2023 02:51:19 GMT
|
|
296
|
-
|
|
297
|
-
### Patches
|
|
298
|
-
|
|
299
|
-
- Update repository and homepage (elcraig@microsoft.com)
|
|
300
|
-
- Bump @lage-run/logger to v1.3.0
|
|
301
|
-
- Bump @lage-run/scheduler-types to v0.3.8
|
|
302
|
-
- Bump @lage-run/target-graph to v0.8.4
|
|
303
|
-
|
|
304
|
-
## 0.1.3
|
|
305
|
-
|
|
306
|
-
Fri, 14 Apr 2023 04:37:54 GMT
|
|
307
|
-
|
|
308
|
-
### Patches
|
|
309
|
-
|
|
310
|
-
- making lage boot faster (kchau@microsoft.com)
|
|
311
|
-
- Bump @lage-run/scheduler-types to v0.3.7
|
|
312
|
-
- Bump @lage-run/target-graph to v0.8.3
|
|
313
|
-
|
|
314
|
-
## 0.1.2
|
|
315
|
-
|
|
316
|
-
Thu, 06 Apr 2023 22:27:50 GMT
|
|
317
|
-
|
|
318
|
-
### Patches
|
|
319
|
-
|
|
320
|
-
- bumps workspace-tools and use async packageinfos (kchau@microsoft.com)
|
|
321
|
-
- Bump @lage-run/scheduler-types to v0.3.6
|
|
322
|
-
- Bump @lage-run/target-graph to v0.8.2
|
|
323
|
-
|
|
324
|
-
## 0.1.1
|
|
325
|
-
|
|
326
|
-
Wed, 29 Mar 2023 22:41:49 GMT
|
|
327
|
-
|
|
328
|
-
### Patches
|
|
329
|
-
|
|
330
|
-
- moving config to its own package (kchau@microsoft.com)
|
|
331
|
-
- Bump @lage-run/scheduler-types to v0.3.5
|
package/jest.config.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
module.exports = require("@lage-run/monorepo-scripts/config/jest.config.js");
|