Skip to content

Commit 693d64c

Browse files
committed
Merge branch 'v1.1' into dev
2 parents e0d98cf + ccea2a3 commit 693d64c

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
* Add support for defining Simvue run defaults using `tool.simvue` in a project `pyproject.toml` file.
66
* Drop support for INI based configuration files.
77
* Retrieve all metric values if `max_points` is unspecified or set to `None`.
8+
## [v1.1.4](https://github.com/simvue-io/client/releases/tag/v1.1.4) - 2024-12-11
9+
10+
* Remove incorrect identifier reference for latest Simvue servers during reconnection.
11+
* Fixed missing online mode selection when retrieving configuration for `Client` class.
812

913
## [v1.1.3](https://github.com/simvue-io/client/releases/tag/v1.1.3) - 2024-12-09
1014

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,5 @@ keywords:
4343
- simulation
4444
license: Apache-2.0
4545
commit: 3ea5c3f1a579a44bc144a8fa0e2983475e46dd63
46-
version: 1.1.3
47-
date-released: '2024-12-09'
46+
version: 1.1.4
47+
date-released: '2024-12-11'

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "simvue"
3-
version = "1.1.3"
3+
version = "1.1.4"
44
description = "Simulation tracking and monitoring"
55
authors = ["Simvue Development Team <[email protected]>"]
66
license = "Apache v2"

simvue/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def __init__(
107107
specify URL, if unset this is read from the config file
108108
"""
109109
self._user_config = SimvueConfiguration.fetch(
110-
server_token=server_token, server_url=server_url
110+
server_token=server_token, server_url=server_url, mode="online"
111111
)
112112

113113
for label, value in zip(

0 commit comments

Comments
 (0)