Skip to content

Commit dec0e91

Browse files
committed
Release 1.2.0
1 parent d81b013 commit dec0e91

File tree

3 files changed

+36
-6
lines changed

3 files changed

+36
-6
lines changed

CHANGELOG.md

Lines changed: 34 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,36 @@
1-
### Bioblend v
1+
### Bioblend v1.2.0 - 2023-06-30
22

3-
* Dropped support for Galaxy releases 17.09-19.01.
3+
* Dropped support for Galaxy releases 17.09-19.01. Added support for Galaxy
4+
release 23.1.
5+
6+
* Added a new ``container_resolution`` attribute to ``GalaxyInstance`` objects,
7+
which is an instance of the new ``ContainerResolutionClient``. This new module
8+
can be used to list container resolvers, and to resolve (and install) tool
9+
requirements against specified container resolvers (thanks to
10+
[cat-bro](https://github.com/cat-bro) and
11+
[Matthias Bernt](https://github.com/bernt-matthias)).
12+
13+
* Added ``reload_toolbox()`` method to ``ConfigClient`` (thanks to
14+
[Anthony Bretaudeau](https://github.com/abretaud)).
15+
16+
* Added ``delete_unused_dependency_paths()`` and ``unused_dependency_paths()``
17+
methods to ``ToolDependenciesClient`` (thanks to
18+
[Matthias Bernt](https://github.com/bernt-matthias)).
19+
20+
* Added ``data_manager_mode`` parameter to ``ToolClient.run_tool()`` method
21+
(thanks to [Marius van den Beek](https://github.com/mvdbeek)).
22+
23+
* Added ``user_data`` parameter to ``UserClient.update_user()`` method
24+
(thanks to [Uwe Winter](https://github.com/uwwint)).
25+
26+
* Fixed bug in ``DatasetClient.download_dataset()`` and BioBlend.objects
27+
``HistoryDatasetAssociation.get_stream()`` where the wrong download URL was
28+
generated if the Galaxy instance is served at a subdirectory (reported by
29+
[Anil Thanki](https://github.com/anilthanki)).
30+
31+
* Improvements to tests and documentation (thanks to
32+
[kxk302](https://github.com/kxk302) and
33+
[Simon Bray](https://github.com/simonbray)).
434

535
### BioBlend v1.1.1 - 2023-02-21
636

@@ -26,14 +56,14 @@
2656
* Modified ``delete_workflow()`` method of ``WorkflowClient`` to return
2757
``None`` instead of a string.
2858

29-
* Add ``py.typed`` marker file to distributed packages (as per PEP 561) to
59+
* Added ``py.typed`` marker file to distributed packages (as per PEP 561) to
3060
declare type checking support.
3161

3262
* Improvements to tests and documentation.
3363

3464
### BioBlend v1.0.0 - 2022-10-13
3565

36-
* Drop support for deprecated CloudMan, see
66+
* Dropped support for deprecated CloudMan, see
3767
https://galaxyproject.org/blog/2021-10-sunsetting-cloudlaunch/
3868

3969
* Added dependency on ``typing-extensions`` package, removed dependencies on

bioblend/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
)
1414

1515
# Current version of the library
16-
__version__ = "1.1.1"
16+
__version__ = "1.2.0"
1717

1818
# default chunk size (in bytes) for reading remote data
1919
try:

bioblend/_tests/TestGalaxyToolContainerResolution.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Test functions in bioblend.galaxy.tool_dependencies
2+
Test functions in bioblend.galaxy.container_resolution
33
"""
44
from . import (
55
GalaxyTestBase,

0 commit comments

Comments
 (0)