@skaile/provider-fly 0.1.0-beta.1 → 0.1.0
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 +34 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# @skaile/provider-fly
|
|
2
2
|
|
|
3
|
+
## 0.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#54](https://github.com/skaile-ai/workspaces/pull/54) [`7bdaf11`](https://github.com/skaile-ai/workspaces/commit/7bdaf115c251136288a94a7f880b3a0f52145be8) Thanks [@mortegro](https://github.com/mortegro)! - Initial release.
|
|
8
|
+
|
|
9
|
+
Five plugins for `@skaile/workspaces`' `pluginRegistry`, each exporting
|
|
10
|
+
`register(pluginRegistry)`:
|
|
11
|
+
|
|
12
|
+
- `@skaile/provider-fly` — Fly Machines deploy target (`tlsTermination: edge`,
|
|
13
|
+
`buildStrategy: remote`).
|
|
14
|
+
- `@skaile/provider-vercel-sandbox` — Vercel Sandbox deploy target
|
|
15
|
+
(`tlsTermination: edge`, `buildStrategy: remote`).
|
|
16
|
+
- `@skaile/provider-k8s` — Kubernetes deploy target, ClusterIP + port-forward
|
|
17
|
+
only in 0.1.0 (`tlsTermination: edge`, `buildStrategy: local`).
|
|
18
|
+
- `@skaile/connector-redis` — Redis connector (deps `ioredis`).
|
|
19
|
+
- `@skaile/connector-yjs` — Yjs CRDT connector (deps `yjs`).
|
|
20
|
+
</content>
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- [`ce3f33f`](https://github.com/skaile-ai/workspaces/commit/ce3f33f5b85f81d1c80689a99a8e63cf0c2afc07) Thanks [@mortegro](https://github.com/mortegro)! - Fix deploy-handle readiness timeout + dedupe deploy-target helpers.
|
|
25
|
+
|
|
26
|
+
- **Fix:** `DeployHandle.waitReady(timeoutMs)` silently ignored its `timeoutMs`
|
|
27
|
+
argument in the fly / k8s / vercel-sandbox targets, always using a hard-coded
|
|
28
|
+
internal deadline. The caller's timeout is now honored.
|
|
29
|
+
- **Fix (`@skaile/provider-fly`):** `deleteMachine` swallowed _all_ errors while
|
|
30
|
+
only intending to ignore a 404, so `stop()` could falsely report success on a
|
|
31
|
+
still-running (still-billing) machine. Non-404 errors now propagate.
|
|
32
|
+
- **Added (`@skaile/workspaces/plugin-registry`):** shared deploy helpers —
|
|
33
|
+
`buildStrategySchema` / `BuildStrategy`, abort-aware `sleep`, generic
|
|
34
|
+
`pollUntil`, and the `makeDeployHandle` factory — replacing the per-provider
|
|
35
|
+
copies of the sleep loop, handle wrapper, and build-strategy enum.
|
|
36
|
+
|
|
3
37
|
## 0.1.0-beta.1
|
|
4
38
|
|
|
5
39
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skaile/provider-fly",
|
|
3
|
-
"version": "0.1.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"description": "Fly Machines deploy target for @skaile/workspaces",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"@skaile/workspaces": ">=0.22.0-0"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@skaile/workspaces": "^0.22.0
|
|
28
|
+
"@skaile/workspaces": "^0.22.0"
|
|
29
29
|
},
|
|
30
30
|
"scripts": {
|
|
31
31
|
"build": "tsup",
|