You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Add user management doc ([#345](https://github.com/Substra/substra-documentation/pull/345))
12
13
- Add link to python libraries documentation in Components page ([#347](https://github.com/Substra/substra-documentation/pull/347))
13
14
- Add more orchestrator documentation ([#346](https://github.com/Substra/substra-documentation/pull/346))
@@ -16,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
16
17
- Added section about channels in the main concepts ([#344](https://github.com/Substra/substra-documentation/pull/344))
17
18
- Add frontend documentation in components section ([#346](https://github.com/Substra/substra-documentation/pull/346))
18
19
- New page added on Substra Privacy Strategy based on research by Privacy Task Force at Owkin ([#354](https://github.com/Substra/substra-documentation/pull/354))
- **BREAKING**: `local_dependencies` is renamed `local_installable_dependencies`.
37
+
- Python dependencies can be resolved using pip compile during function registration by setting `compile` to `True` in the `Dependency` object. This will speed-up the docker image build phase when running on a Substra server but will slow down a bit the compute plan registration.
38
+
39
+
.. code-block:: python
40
+
41
+
Dependency(
42
+
pypi_dependencies=["pytest", "numpy"],
43
+
compile=True,
44
+
)
45
+
46
+
- `random.seed` , `np.random.seed` and `torch.manual_seed` are now set, saved & load in `TorchAlgo`
47
+
- When using `clean_models=True`, the tasks outputs of the very last round are now saved.****
48
+
49
+
**Substra**:
50
+
51
+
- Added `wait_completion` parameter on `get_performances`, `list_task_output_assets` and `get_task_output_asset` to block execution until task execution is over.
52
+
- On Client login:
53
+
- Fixes issue where the session would not actually last the 24 hours intended.
54
+
- Added new `Client.logout` function, mirroring `Client.login`
55
+
- `Client` can now be used within a context manager
56
+
57
+
.. code-block:: python
58
+
59
+
with Client(
60
+
client_name="org-1",
61
+
backend_type="remote",
62
+
url="http://substra-backend.org-1.com:8000",
63
+
username="org-1",
64
+
password="p@sswr0d44",
65
+
) as client:
66
+
pass
67
+
68
+
**Web application**
69
+
70
+
- Fix issue where cancel CP button was not usable on workflow page
71
+
- Task duration displayed in task drawer and not only the start and end time.
72
+
- Increase the number of tasks displayable in frontend workflow from 1000 to 5000 tasks
0 commit comments