Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.28.0"
".": "0.29.0"
}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [0.29.0](https://github.com/kernel/hypeman-python/compare/v0.28.0...v0.29.0) (2026-09-02)


### Features

* Add Windows hypervisor primitives ([5c037b9](https://github.com/kernel/hypeman-python/commit/5c037b9f9c5926025ba9e5852bea964b4e1ace7c))
* Integrate vendor VFIO vGPUs into the instance lifecycle ([24934bb](https://github.com/kernel/hypeman-python/commit/24934bb5e6f4a2ab636e0d893d056276ce2fd3dd))

## [0.28.0](https://github.com/kernel/hypeman-python/compare/v0.27.0...v0.28.0) (2026-09-01)


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "hypeman"
version = "0.28.0"
version = "0.29.0"
description = "The official Python library for the hypeman API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/hypeman/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "hypeman"
__version__ = "0.28.0" # x-release-please-version
__version__ = "0.29.0" # x-release-please-version
4 changes: 2 additions & 2 deletions src/hypeman/resources/instances/instances.py
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ def logs(
id: str,
*,
follow: bool | Omit = omit,
source: Literal["app", "vmm", "hypeman"] | Omit = omit,
source: Literal["app", "vmm", "hypeman", "swtpm"] | Omit = omit,
tail: int | Omit = omit,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
Expand Down Expand Up @@ -1358,7 +1358,7 @@ async def logs(
id: str,
*,
follow: bool | Omit = omit,
source: Literal["app", "vmm", "hypeman"] | Omit = omit,
source: Literal["app", "vmm", "hypeman", "swtpm"] | Omit = omit,
tail: int | Omit = omit,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
Expand Down
6 changes: 5 additions & 1 deletion src/hypeman/types/gpu_profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ class GPUProfile(BaseModel):
"""Available vGPU profile"""

available: int
"""Number of instances that can be created with this profile"""
"""Number of virtual functions currently able to create this profile.

Best-effort: creating an instance may reduce availability on sibling functions
sharing GPU framebuffer.
"""

framebuffer_mb: int
"""Frame buffer size in MB"""
Expand Down
5 changes: 4 additions & 1 deletion src/hypeman/types/instance.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,11 @@
class GPU(BaseModel):
"""GPU information attached to the instance"""

device_path: Optional[str] = None
"""sysfs path of the assigned vGPU device"""

mdev_uuid: Optional[str] = None
"""mdev device UUID"""
"""mdev device UUID (mdev hosts only)"""

profile: Optional[str] = None
"""vGPU profile name"""
Expand Down
2 changes: 1 addition & 1 deletion src/hypeman/types/instance_logs_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class InstanceLogsParams(TypedDict, total=False):
follow: bool
"""Continue streaming new lines after initial output"""

source: Literal["app", "vmm", "hypeman"]
source: Literal["app", "vmm", "hypeman", "swtpm"]
"""Log source to stream:

- app: Guest application logs (serial console output)
Expand Down