@skaile/provider-k8s 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +34 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,39 @@
1
1
  # @skaile/provider-k8s
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-k8s",
3
- "version": "0.1.0-beta.1",
3
+ "version": "0.1.0",
4
4
  "description": "Kubernetes (ClusterIP + port-forward) deploy target for @skaile/workspaces",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -31,7 +31,7 @@
31
31
  }
32
32
  },
33
33
  "devDependencies": {
34
- "@skaile/workspaces": "^0.22.0-beta.1"
34
+ "@skaile/workspaces": "^0.22.0"
35
35
  },
36
36
  "scripts": {
37
37
  "build": "tsup",