Skip to content

Commit 8711e41

Browse files
authored
Merge pull request #3 from onkernel/release-please--branches--main--changes--next--components--hypeman
release: 0.1.0
2 parents ac70855 + 804933c commit 8711e41

File tree

7 files changed

+37
-5
lines changed

7 files changed

+37
-5
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.0.2"
2+
".": "0.1.0"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 30
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fhypeman-28e78b73c796f9ee866671ed946402b5d569e683c3207d57c9143eb7d6f83fb6.yml
3-
openapi_spec_hash: fce0ac8713369a5f048bac684ed34fc8
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fhypeman-cfdd18a303e2e6c87d671e6ae3ecdcd1d9642b053c2ef6bc507eee3f55cc6aa8.yml
3+
openapi_spec_hash: 0b038c955d95740ace74103a9c18d5a3
44
config_hash: f65a6a2bcef49a9f623212f9de6d6f6f

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Changelog
22

3+
## 0.1.0 (2025-12-23)
4+
5+
Full Changelog: [v0.0.2...v0.1.0](https://github.com/onkernel/hypeman-ts/compare/v0.0.2...v0.1.0)
6+
7+
### Features
8+
9+
* add cpToInstance and cpFromInstance functions ([113b412](https://github.com/onkernel/hypeman-ts/commit/113b4129c3bcca7f2ba8cc1c590542a00ad873a0))
10+
* add hypeman cp for file copy to/from running VMs ([0ee9f4a](https://github.com/onkernel/hypeman-ts/commit/0ee9f4a86ea8a6a94b896ce66cf7dc90a8d7c296))
11+
* **api:** add autogenerated stat endpoint from Stainless ([38c9dbd](https://github.com/onkernel/hypeman-ts/commit/38c9dbdf9a129b434b7c9246d321da6b6f9ed2d4))
12+
* QEMU support ([8f0f4f4](https://github.com/onkernel/hypeman-ts/commit/8f0f4f4b0cf1723af0cd79e549f4aacaa9c6584b))
13+
14+
15+
### Bug Fixes
16+
17+
* **cp:** address bugbot review comments ([ba6c287](https://github.com/onkernel/hypeman-ts/commit/ba6c2876049bae125951dbe363f5d6deabaaf03f))
18+
19+
20+
### Chores
21+
22+
* sync repo ([75f4200](https://github.com/onkernel/hypeman-ts/commit/75f4200bb4c22d85be3ab8b065078ee1165cfa22))
23+
324
## 0.0.2 (2025-12-22)
425

526
Full Changelog: [v0.0.1...v0.0.2](https://github.com/onkernel/hypeman-ts/compare/v0.0.1...v0.0.2)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@onkernel/hypeman",
3-
"version": "0.0.2",
3+
"version": "0.1.0",
44
"description": "The official TypeScript library for the Hypeman API",
55
"author": "Hypeman <>",
66
"types": "dist/index.d.ts",

src/resources/instances/instances.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,11 @@ export interface Instance {
208208
*/
209209
hotplug_size?: string;
210210

211+
/**
212+
* Hypervisor running this instance
213+
*/
214+
hypervisor?: 'cloud-hypervisor' | 'qemu';
215+
211216
/**
212217
* Network configuration of the instance
213218
*/
@@ -392,6 +397,11 @@ export interface InstanceCreateParams {
392397
*/
393398
hotplug_size?: string;
394399

400+
/**
401+
* Hypervisor to use for this instance. Defaults to server configuration.
402+
*/
403+
hypervisor?: 'cloud-hypervisor' | 'qemu';
404+
395405
/**
396406
* Network configuration for the instance
397407
*/

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '0.0.2'; // x-release-please-version
1+
export const VERSION = '0.1.0'; // x-release-please-version

tests/api-resources/instances/instances.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ describe('resource instances', () => {
3131
devices: ['l4-gpu'],
3232
env: { PORT: '3000', NODE_ENV: 'production' },
3333
hotplug_size: '2GB',
34+
hypervisor: 'cloud-hypervisor',
3435
network: { enabled: true },
3536
overlay_size: '20GB',
3637
size: '2GB',

0 commit comments

Comments
 (0)