Skip to content

Commit 0a0c4f7

Browse files
committed
Release 1.7.0
1 parent 3480f94 commit 0a0c4f7

File tree

2 files changed

+29
-3
lines changed

2 files changed

+29
-3
lines changed

CHANGELOG.md

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,37 @@
1-
## BioBlend v
1+
## BioBlend v1.7.0 - 2025-11-07
22

3-
* Added support for Python 3.14.
3+
* Deprecation: this is the last release to support end-of-life Python 3.9.
4+
5+
* Added support for Python 3.14. Added support for Galaxy release 25.1.
6+
7+
* Added ``get_invocation_request()`` method to ``InvocationClient`` (thanks to
8+
[Martin Čech](https://github.com/martenson)).
9+
10+
* Added ``get_tool_tests()`` method to ``ToolClient`` (thanks to
11+
[JunhaoQiu](https://github.com/qchiujunhao)).
412

513
* Added ``job_id`` parameter to ``InvocationClient.get_invocations()``.
614

15+
* Added ``resource_params`` and ``use_cached_job`` parameters to
16+
``InvocationClient.rerun_invocation()`` (thanks to
17+
[Martin Čech](https://github.com/martenson)).
18+
19+
* Added ``parameters``, ``instance``, ``resource_params``,
20+
``preferred_object_store_id``, ``preferred_intermediate_object_store_id`` and
21+
``preferred_outputs_object_store_id`` parameters to
22+
``WorkflowClient.invoke_workflow()`` (thanks to
23+
[Martin Čech](https://github.com/martenson)).
24+
25+
* Refactored implementation of ``InvocationClient.rerun_invocation()`` to use
26+
``InvocationClient.get_invocation_request()`` on Galaxy release 24.2 and
27+
later. Also fixed reuse of parameter inputs from the original invocation on
28+
Galaxy release 24.1 and earlier. (thanks to
29+
[Martin Čech](https://github.com/martenson)).
30+
731
* Migrated from ``setup.cfg`` to ``pyproject.toml`` .
832

33+
* Improvements to documentation and tests.
34+
935
## BioBlend v1.6.0 - 2025-06-18
1036

1137
* Added support for Galaxy release 25.0.

bioblend/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
)
1717

1818
# Current version of the library
19-
__version__ = "1.6.0"
19+
__version__ = "1.7.0"
2020

2121
# default chunk size (in bytes) for reading remote data
2222
try:

0 commit comments

Comments
 (0)