@gravito/launchpad 1.3.1 → 1.3.2
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/CHANGELOG.md +17 -0
- package/dist/index.js +0 -1
- package/dist/index.mjs +0 -1
- package/package.json +5 -5
- package/src/Application/PoolManager.ts +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @gravito/launchpad
|
|
2
2
|
|
|
3
|
+
## 1.3.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Convert all workspace:\* dependencies to version numbers for npm publishing
|
|
8
|
+
|
|
9
|
+
- Fixed 144 workspace:\* dependencies across 58 packages
|
|
10
|
+
- Ensures all packages work properly when installed from npm
|
|
11
|
+
- Resolves issues with bunx and npm installation of CLI tools
|
|
12
|
+
- All internal dependencies now use explicit version constraints
|
|
13
|
+
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
- @gravito/core@1.6.1
|
|
16
|
+
- @gravito/enterprise@1.0.4
|
|
17
|
+
- @gravito/ripple@4.0.1
|
|
18
|
+
- @gravito/stasis@3.1.1
|
|
19
|
+
|
|
3
20
|
## 1.3.1
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -564,7 +564,6 @@ var PoolManager = class {
|
|
|
564
564
|
console.log(`[PoolManager] \u4EFB\u52D9 ${mission.id} \u9032\u5165\u7B49\u5F85\u968A\u5217`);
|
|
565
565
|
return this.missionQueue.enqueue(mission);
|
|
566
566
|
}
|
|
567
|
-
case "queue":
|
|
568
567
|
default:
|
|
569
568
|
if (this.missionQueue.isFull) {
|
|
570
569
|
throw new PoolExhaustedException(`Rocket Pool \u8207\u968A\u5217\u5747\u5DF2\u6EFF\uFF0C\u7121\u6CD5\u8655\u7406\u4EFB\u52D9 ${mission.id}`);
|
package/dist/index.mjs
CHANGED
|
@@ -520,7 +520,6 @@ var PoolManager = class {
|
|
|
520
520
|
console.log(`[PoolManager] \u4EFB\u52D9 ${mission.id} \u9032\u5165\u7B49\u5F85\u968A\u5217`);
|
|
521
521
|
return this.missionQueue.enqueue(mission);
|
|
522
522
|
}
|
|
523
|
-
case "queue":
|
|
524
523
|
default:
|
|
525
524
|
if (this.missionQueue.isFull) {
|
|
526
525
|
throw new PoolExhaustedException(`Rocket Pool \u8207\u968A\u5217\u5747\u5DF2\u6EFF\uFF0C\u7121\u6CD5\u8655\u7406\u4EFB\u52D9 ${mission.id}`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gravito/launchpad",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.2",
|
|
4
4
|
"description": "Container lifecycle management system for flash deployments",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
"test:integration": "test $(find tests -name '*.integration.test.ts' 2>/dev/null | wc -l) -gt 0 && find tests -name '*.integration.test.ts' -print0 | xargs -0 bun test --timeout=10000 || echo 'No integration tests found'"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@gravito/enterprise": "
|
|
19
|
-
"@gravito/ripple": "
|
|
20
|
-
"@gravito/stasis": "
|
|
18
|
+
"@gravito/enterprise": "^1.0.4",
|
|
19
|
+
"@gravito/ripple": "^4.0.1",
|
|
20
|
+
"@gravito/stasis": "^3.1.1",
|
|
21
21
|
"@octokit/rest": "^22.0.1",
|
|
22
|
-
"@gravito/core": "
|
|
22
|
+
"@gravito/core": "^1.6.1"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"bun-types": "^1.3.5",
|
|
@@ -163,8 +163,6 @@ export class PoolManager {
|
|
|
163
163
|
console.log(`[PoolManager] 任務 ${mission.id} 進入等待隊列`)
|
|
164
164
|
return this.missionQueue.enqueue(mission)
|
|
165
165
|
}
|
|
166
|
-
|
|
167
|
-
case 'queue':
|
|
168
166
|
default:
|
|
169
167
|
if (this.missionQueue.isFull) {
|
|
170
168
|
throw new PoolExhaustedException(`Rocket Pool 與隊列均已滿,無法處理任務 ${mission.id}`)
|