Skip to content

Commit

Permalink
cleanup and prepare v0.15.1 release (#1985, #1995)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikkonie committed Sep 12, 2024
1 parent 052ac0c commit 5a03b4a
Show file tree
Hide file tree
Showing 13 changed files with 22 additions and 24 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ Changelog for the SODAR project. Loosely follows the
`Keep a Changelog <http://keepachangelog.com/en/1.0.0/>`_ guidelines.


Unreleased
==========
v0.15.1 (2024-09-12)
====================

Changed
-------
Expand All @@ -17,6 +17,8 @@ Changed
Fixed
-----

- **Landingzones**
- Invalid CSS classes set by zone status update (#1995)
- **Samplesheets**
- ``generic`` assay plugin inline links pointing to ``ResultsReports`` (#1982)
- ``generic`` assay plugin cache update crash with row path built from ontology column (#1984)
Expand Down
3 changes: 2 additions & 1 deletion config/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,7 @@ def set_logging(level=None):


# General API settings
SODAR_API_DEFAULT_VERSION = '0.15.0'
SODAR_API_DEFAULT_VERSION = '0.15.1'
SODAR_API_ALLOWED_VERSIONS = [
'0.7.0',
'0.7.1',
Expand All @@ -634,6 +634,7 @@ def set_logging(level=None):
'0.14.1',
'0.14.2',
'0.15.0',
'0.15.1',
]
SODAR_API_MEDIA_TYPE = 'application/vnd.bihealth.sodar+json'
SODAR_API_DEFAULT_HOST = env.url(
Expand Down
2 changes: 1 addition & 1 deletion docs_manual/source/api_documentation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ expected version.

.. code-block:: console
Accept: application/vnd.bihealth.sodar+json; version=0.15.0
Accept: application/vnd.bihealth.sodar+json; version=0.15.1
Specific sections of the SODAR API may require their own accept header. See the
exact header requirement in the respective documentation on each section of the
Expand Down
2 changes: 1 addition & 1 deletion docs_manual/source/api_examples.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ the SODAR API:
# Use core_headers for project management API endpoints
core_headers = {**auth_header, 'Accept': 'application/vnd.bihealth.sodar-core+json; version=0.13.4'}
# Use sodar_headers for sample sheet and landing zone API endpoints
sodar_headers = {**auth_header, 'Accept': 'application/vnd.bihealth.sodar+json; version=0.15.0'}
sodar_headers = {**auth_header, 'Accept': 'application/vnd.bihealth.sodar+json; version=0.15.1'}
.. note::

Expand Down
2 changes: 1 addition & 1 deletion docs_manual/source/api_irodsinfo.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ SODAR version:

.. code-block:: console
Accept: application/vnd.bihealth.sodar+json; version=0.15.0
Accept: application/vnd.bihealth.sodar+json; version=0.15.1
2 changes: 1 addition & 1 deletion docs_manual/source/api_landingzones.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ SODAR version:

.. code-block:: console
Accept: application/vnd.bihealth.sodar+json; version=0.15.0
Accept: application/vnd.bihealth.sodar+json; version=0.15.1
2 changes: 1 addition & 1 deletion docs_manual/source/api_samplesheets.rst
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,4 @@ SODAR version:

.. code-block:: console
Accept: application/vnd.bihealth.sodar+json; version=0.15.0
Accept: application/vnd.bihealth.sodar+json; version=0.15.1
2 changes: 1 addition & 1 deletion docs_manual/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
author = 'BIH Core Unit Bioinformatics'

# The full version, including alpha/beta/rc tags
release = '0.15.1-WIP'
release = '0.15.1'


# -- General configuration ---------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions docs_manual/source/sodar_release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ list of changes in current and previous releases, see the
:ref:`full changelog<sodar_changelog>`.


v0.15.1 (WIP)
=============
v0.15.1 (2024-09-12)
====================

Release for minor updates, maintenance and bug fixes.

Expand Down
3 changes: 2 additions & 1 deletion landingzones/static/landingzones/js/landingzones.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ var updateZoneStatus = function() {
) {
statusTd.text(zoneStatus);
statusTd.removeClass();
statusTd.addClass(statusStyles[zoneStatus] + ' text-white');
statusTd.addClass(
'sodar-lz-zone-status ' + statusStyles[zoneStatus] + ' text-white');
statusInfoSpan.text(zoneStatusInfo);
if (['PREPARING', 'VALIDATING', 'MOVING', 'DELETING'].includes(zoneStatus)) {
statusTd.append(
Expand Down
6 changes: 0 additions & 6 deletions landingzones/tests/test_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -378,12 +378,6 @@ def test_stats_deleted_superuser(self):
)
self.login_and_redirect(self.superuser, self.url)

# NOTE: Attempt to fix #1995
WebDriverWait(self.selenium, self.wait_time).until(
ec.presence_of_element_located(
(By.CLASS_NAME, 'sodar-lz-zone-status')
)
)
zone_status = self.selenium.find_element(
By.CLASS_NAME, 'sodar-lz-zone-status'
)
Expand Down
10 changes: 5 additions & 5 deletions samplesheets/vueapp/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion samplesheets/vueapp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "samplesheets",
"version": "0.15.1-WIP",
"version": "0.15.1",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
Expand Down

0 comments on commit 5a03b4a

Please sign in to comment.