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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## Unreleased

- Ensures `GridMetrics` are sent via `msgpack` the same as `Metrics`.

## [v2.2.2](https://github.com/simvue-io/client/releases/tag/v2.2.2) - 2025-10-14

- Enforced use of UTC for all datetime recording.
Expand Down
3 changes: 3 additions & 0 deletions simvue/api/objects/grids.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,9 @@ def __init__(
self._run_id = self._staging.get("run")
self._is_set = True

def _post_single(self, **kwargs) -> dict[str, typing.Any]:
return super()._post_single(is_json=False, **kwargs)

@staticmethod
def run_grids_endpoint(run: str | None = None) -> URL:
"""Returns the URL for grids for a specific run."""
Expand Down
Loading