boltz-compute 0.19.2 → 0.20.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 +66 -0
- package/package.json +1 -1
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,71 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.20.0 (2026-03-25)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.19.3...v0.20.0](https://github.com/boltz-bio/boltz-compute-api-typescript/compare/v0.19.3...v0.20.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* Bump non-breaking deps versions and fix pnpm audit findings ([256139d](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/256139d8298d94a93d934822026036a36ec22ba3))
|
|
10
|
+
* **compute-api:** add prediction stub routes and share schema compiler ([37be517](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/37be517c44513d5fd6eb95bcfa1a1ddb0630d83a))
|
|
11
|
+
* **compute-api:** add usage API and estimate-cost endpoints ([da6203a](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/da6203a1fa5c5b6875dd25cebb3cd5bb3efb08e9))
|
|
12
|
+
* **compute-api:** admin API, internal provisioning & auth enforcement ([75ce41d](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/75ce41dbd6ba5e8d22b209032a7244025bcaf9e6))
|
|
13
|
+
* **compute-api:** ECR repository, CI/CD pipeline, and app code ([984db67](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/984db67858ce351a009c3ca050ef1f6ccceed9fd))
|
|
14
|
+
* **compute-api:** extract prediction & pipeline payloads into separate tables ([c63b150](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/c63b1500c38edf05f0f84022189e7d572e66116c))
|
|
15
|
+
* **compute-api:** improve OpenAPI specs for SDK generation ([8b7a0ab](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/8b7a0aba8bab8dc9faf3856dad068f1deff9dc07))
|
|
16
|
+
* **compute-api:** improve prediction response shape ([9e7660d](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/9e7660ddaabb3085bfbd727cf7253beb3d9d92a8))
|
|
17
|
+
* **compute-api:** permission system, ApiError class, HMAC-SHA256 keys ([03c5280](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/03c5280ab0b878ee7c33c5dff2c4da1e10e504a3))
|
|
18
|
+
* **compute-api:** refine workspace model + wire workspace_id into compute schemas ([de8b8a1](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/de8b8a1fd3756f3528a4818eb6835ed7ae33329e))
|
|
19
|
+
* **compute-api:** rename key type compute→workspace, visible default workspace ([ac736a2](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/ac736a28e9954bb7f05dcc4fdff78c73cfc8a0e6))
|
|
20
|
+
* **compute-api:** schema improvements — model renames, index optimization, cascade rules ([752fdaa](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/752fdaa3e875e9253f733d1dd62a59f3784dee17))
|
|
21
|
+
* **compute-api:** separate input/response schemas and refine API types ([fa7e7d6](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/fa7e7d67df7a97f26997295d761abfe867277c48))
|
|
22
|
+
* **compute-api:** test mode with Stripe-style livemode pattern ([b5fd692](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/b5fd69284d3b92baac68b533447115c6f19cd101))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
* **compute-api:** update Stainless config for health check and admin API ([8fdab00](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/8fdab006ac93696c524f9c25e05203fd0868acd5))
|
|
28
|
+
* **docs/contributing:** correct pnpm link command ([e008862](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/e008862b36247ba8aa9a4402b0185722a3caab33))
|
|
29
|
+
* switch npm publish to OIDC trusted publisher ([8bfb5c6](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/8bfb5c6b552ccf50430a9e7041bc2b8ef71f095b))
|
|
30
|
+
* use Node 24 for npm OIDC trusted publishing ([00713cb](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/00713cbf76d0a1db9ee59d46487067e84901d3b0))
|
|
31
|
+
* use npm publish with OIDC auth instead of token ([b8d032d](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/b8d032dae418d26dffa977cb722ed19728ed6325))
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
### Chores
|
|
35
|
+
|
|
36
|
+
* **compute-api:** add Stainless pagination config and OpenAPI examples ([d3af459](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/d3af459cb3004783b401e65546d9e186614d2523))
|
|
37
|
+
* **compute-api:** configure Stainless SDK/docs and unify error schema ([1ff6160](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/1ff61601b177c5508227999986df20dae9ac6fa7))
|
|
38
|
+
* **compute-api:** improve Stainless SDK naming, ordering, and docs ([21a822e](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/21a822ef68d554aa1113a372420ac1f134e4e4aa))
|
|
39
|
+
* **internal/client:** fix form-urlencoded requests ([8133745](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/8133745d03640a0a29b73074f8bcd7ae56e5b2a5))
|
|
40
|
+
* **internal:** avoid type checking errors with ts-reset ([016afef](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/016afef56db3f3153dac9b172e62f5c11f2d375e))
|
|
41
|
+
* **internal:** move stringifyQuery implementation to internal function ([82935dc](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/82935dc11582bec0dfc397361b0300358a6a1a08))
|
|
42
|
+
* **internal:** remove mock server code ([b52c90b](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/b52c90b79fe3627b13f6807df52e35fd60b81b82))
|
|
43
|
+
* **internal:** upgrade pnpm version ([63da6f4](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/63da6f4d70d99f2c7fe34c3b480de58a47a84c88))
|
|
44
|
+
* rename SDK packages from boltz-compute-api to boltz-compute ([0d2a510](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/0d2a51036b6e64323054e28cc71f99c512c27299))
|
|
45
|
+
* update mock server docs ([4b75de2](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/4b75de2bb6ed58c7f39a0ba31885e6137d375538))
|
|
46
|
+
* update SDK settings ([6331873](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/6331873f591b9d3675f7b2bc13daab8efcfa20df))
|
|
47
|
+
* update SDK settings ([eb84eff](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/eb84eff45a26fe2bbb1ab1563a7d0bced753f799))
|
|
48
|
+
* update SDK settings ([d5db933](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/d5db933c25a4e30db5bc2708aafd287300415538))
|
|
49
|
+
* update SDK settings ([198438b](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/198438b8dee7de8716c3657d9e9c0503f5890aef))
|
|
50
|
+
* update SDK settings ([915cb9f](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/915cb9fd6d4f2c95ce30b69c8bd39329fe2b0816))
|
|
51
|
+
* update SDK settings ([5a07fc1](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/5a07fc1b498c3def3ed156d759b469aefa240e39))
|
|
52
|
+
* update SDK settings ([117c721](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/117c7215fa225b7fd2c65e029c107c0d8cf1233b))
|
|
53
|
+
* update Stainless production URL to api.boltz.bio ([86fa978](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/86fa978ea73ada2bb4117bec3699f090506c3371))
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
### Refactors
|
|
57
|
+
|
|
58
|
+
* **compute-api:** auth + DB→API transform layer with repository pattern ([dbc108c](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/dbc108c439c0deae620f620c2a8f1e763d6d8323))
|
|
59
|
+
* **compute-api:** restructure API types to 2-file-per-workflow pattern ([15b637f](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/15b637f3192525b8d08423755dc679247ff55537))
|
|
60
|
+
|
|
61
|
+
## 0.19.3 (2026-03-25)
|
|
62
|
+
|
|
63
|
+
Full Changelog: [v0.19.2...v0.19.3](https://github.com/boltz-bio/boltz-compute-api-typescript/compare/v0.19.2...v0.19.3)
|
|
64
|
+
|
|
65
|
+
### Chores
|
|
66
|
+
|
|
67
|
+
* **ci:** skip lint on metadata-only changes ([10940ec](https://github.com/boltz-bio/boltz-compute-api-typescript/commit/10940ec9ab163c38e6a40c2d1312aebbcbf7d274))
|
|
68
|
+
|
|
3
69
|
## 0.19.2 (2026-03-24)
|
|
4
70
|
|
|
5
71
|
Full Changelog: [v0.19.1...v0.19.2](https://github.com/boltz-bio/boltz-compute-api-typescript/compare/v0.19.1...v0.19.2)
|
package/package.json
CHANGED
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.20.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.20.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.20.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.20.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|