Skip to content

Commit f1c5f0e

Browse files
bump version
1 parent 5a6fb5b commit f1c5f0e

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
### 25.6.22
2+
3+
4+
- There's a new "Advanced" start option in the UI to modify configuration temporarily when starting a job. The options shown are from the section `[<job_name>.config]`. This is useful for changing different configurations without changing the config files.
5+
- Chemostat modal in the UI now shows the computed dilution rate
6+
- New "Duplicate" profiles button.
7+
- Calibration charts have new crosshairs
8+
- Performance improvements
9+
- The config `[mqtt]` `broker_address` can now be a list of addresses, separated by `;`. Example:
10+
```
11+
[mqtt]
12+
broker_address=pio01.local;100.119.150.2;localhost
13+
```
14+
15+
16+
117
### 25.5.22
218
- New system logs page
319
- bug fixes

pioreactorui/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44

55
# pioreactorui version
6-
__version__ = "25.5.22"
6+
__version__ = "25.6.22"

tests/test_app.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -281,6 +281,7 @@ def test_broadcast_in_manage_all(client):
281281
assert bucket[0].json == {
282282
"args": [],
283283
"options": {"target_rpm": 10},
284+
"config_overrides": [],
284285
"env": {
285286
"EXPERIMENT": "exp1",
286287
"ACTIVE": "1",
@@ -309,6 +310,7 @@ def test_run_job(client):
309310
assert bucket[0].json == {
310311
"args": [],
311312
"options": {"target_rpm": 10},
313+
"config_overrides": [],
312314
"env": {
313315
"EXPERIMENT": "exp1",
314316
"ACTIVE": "1",
@@ -346,6 +348,7 @@ def test_run_job_with_job_source(client):
346348
assert bucket[0].json == {
347349
"args": [],
348350
"options": {"target_rpm": 10},
351+
"config_overrides": [],
349352
"env": {
350353
"EXPERIMENT": "exp1",
351354
"ACTIVE": "1",

0 commit comments

Comments
 (0)