diff --git a/lib/galaxy/version.py b/lib/galaxy/version.py index 9a8c9cbecd5..edfc424f749 100644 --- a/lib/galaxy/version.py +++ b/lib/galaxy/version.py @@ -1,3 +1,3 @@ VERSION_MAJOR = "24.0" -VERSION_MINOR = "1.dev0" +VERSION_MINOR = "1" VERSION = VERSION_MAJOR + (f".{VERSION_MINOR}" if VERSION_MINOR else "") diff --git a/packages/app/HISTORY.rst b/packages/app/HISTORY.rst index 29332492cda..80633c247ac 100644 --- a/packages/app/HISTORY.rst +++ b/packages/app/HISTORY.rst @@ -3,11 +3,49 @@ History .. to_doc ------------ -24.0.1.dev0 ------------ +------------------- +24.0.1 (2024-05-02) +------------------- +========= +Bug fixes +========= + +* Fix tool version switch in editor by `@mvdbeek `_ in `#17858 `_ +* Fix workflow run form failing on certain histories by `@mvdbeek `_ in `#17869 `_ +* Always serialize element_count and populated when listing contents by `@mvdbeek `_ in `#17890 `_ +* Fix saving workflows with freehand_comments only by `@mvdbeek `_ in `#17901 `_ +* Always discard session after __handle_waiting_jobs is done by `@mvdbeek `_ in `#17913 `_ +* Fix workflow run form for workflows with null rename PJA by `@mvdbeek `_ in `#17929 `_ +* Revert unnecessary error change by `@mvdbeek `_ in `#17948 `_ +* Fix missing implicit conversion for mapped over jobs by `@mvdbeek `_ in `#17952 `_ +* Fix get_content_as_text for compressed text datatypes by `@mvdbeek `_ in `#17976 `_ +* Backport: Fix bug: call unique() on result, not select stmt by `@jdavcs `_ in `#17981 `_ +* Fix `LengthValidator` if no value passed by `@mvdbeek `_ in `#17983 `_ +* Raise ``RequestParameterInvalidException`` if collection element has unknown extension by `@mvdbeek `_ in `#17985 `_ +* Don't attempt to commit in dry_run mode by `@mvdbeek `_ in `#17987 `_ +* Don't fail if reporting invalid parameter values by `@mvdbeek `_ in `#18002 `_ +* Include exception info when something goes wrong while refreshing tokens by `@mvdbeek `_ in `#18008 `_ +* Avoid exception when opening apply rules tool and no collection in history by `@mvdbeek `_ in `#18011 `_ +* Don't commit without having set a hid by `@mvdbeek `_ in `#18014 `_ +* Raise appropriate exception if user forces a collection that is not populated with elements as input by `@mvdbeek `_ in `#18023 `_ +* Fix tag regex pattern by `@jdavcs `_ in `#18025 `_ +* Fix History Dataset Association creation so that hid is always set by `@mvdbeek `_ in `#18036 `_ +* Change wrong quota_source value from KeyError to ValueError by `@mvdbeek `_ in `#18040 `_ +* Check database connection to issue a rollback if no connection by `@jdavcs `_ in `#18070 `_ + +============ +Enhancements +============ + +* Fix remote files sources error handling by `@davelopez `_ in `#18027 `_ + +============= +Other changes +============= + +* Drop left-over debug statement by `@mvdbeek `_ in `#17939 `_ ------------------- 24.0.0 (2024-04-02) @@ -52,7 +90,7 @@ Enhancements * Vueify Admin User Grid by `@guerler `_ in `#17030 `_ * Remove web framework dependency from tools by `@davelopez `_ in `#17058 `_ * Add select parameter with options from remote resources by `@mvdbeek `_ in `#17087 `_ -* Expose more tool information / navigability in UI. by `@jmchilton `_ in `#17105 `_ +* Expose more tool information / navigability in UI. by `@jmchilton `_ in `#17105 `_ * Vueify Admin Roles Grid by `@guerler `_ in `#17118 `_ * SA2.0 updates: handling "object is being merged into a Session along the backref cascade path" by `@jdavcs `_ in `#17122 `_ * Update Python dependencies by `@galaxybot `_ in `#17123 `_ diff --git a/packages/app/setup.cfg b/packages/app/setup.cfg index 19c7824ce7e..99c3a957998 100644 --- a/packages/app/setup.cfg +++ b/packages/app/setup.cfg @@ -27,7 +27,7 @@ long_description = file: README.rst, HISTORY.rst long_description_content_type = text/x-rst name = galaxy-app url = https://github.com/galaxyproject/galaxy -version = 24.0.1.dev0 +version = 24.0.1 [options] include_package_data = True diff --git a/packages/auth/HISTORY.rst b/packages/auth/HISTORY.rst index 390ad8e49e0..057ecc264f7 100644 --- a/packages/auth/HISTORY.rst +++ b/packages/auth/HISTORY.rst @@ -3,11 +3,11 @@ History .. to_doc ------------ -24.0.1.dev0 ------------ - +------------------- +24.0.1 (2024-05-02) +------------------- +No recorded changes since last release ------------------- 24.0.0 (2024-04-02) diff --git a/packages/auth/setup.cfg b/packages/auth/setup.cfg index c631771005f..15192af5801 100644 --- a/packages/auth/setup.cfg +++ b/packages/auth/setup.cfg @@ -27,7 +27,7 @@ long_description = file: README.rst, HISTORY.rst long_description_content_type = text/x-rst name = galaxy-auth url = https://github.com/galaxyproject/galaxy -version = 24.0.1.dev0 +version = 24.0.1 [options] include_package_data = True diff --git a/packages/config/HISTORY.rst b/packages/config/HISTORY.rst index 3710807c904..636f0614353 100644 --- a/packages/config/HISTORY.rst +++ b/packages/config/HISTORY.rst @@ -3,11 +3,32 @@ History .. to_doc ------------ -24.0.1.dev0 ------------ +------------------- +24.0.1 (2024-05-02) +------------------- +========= +Bug fixes +========= + +* Invenio plugin fixes by `@davelopez `_ in `#17997 `_ +* clarify the object store relocate functionality by `@martenson `_ in `#18033 `_ +* Updated the datatypes name for FASTK tool by `@SaimMomin12 `_ in `#18053 `_ + +============ +Enhancements +============ + +* Added 4dn_pairs and 4dn_pairsam datatypes by `@SaimMomin12 `_ in `#17875 `_ +* Add middleware for logging start and end of request by `@mvdbeek `_ in `#18046 `_ + +============= +Other changes +============= + +* Rebuild config samples by `@davelopez `_ in `#17911 `_ +* Backport colabfold tar file datatype by `@mvdbeek `_ in `#18029 `_ ------------------- 24.0.0 (2024-04-02) diff --git a/packages/config/setup.cfg b/packages/config/setup.cfg index 42cab1ed362..7fadd7fca76 100644 --- a/packages/config/setup.cfg +++ b/packages/config/setup.cfg @@ -27,7 +27,7 @@ long_description = file: README.rst, HISTORY.rst long_description_content_type = text/x-rst name = galaxy-config url = https://github.com/galaxyproject/galaxy -version = 24.0.1.dev0 +version = 24.0.1 [options] include_package_data = True diff --git a/packages/data/HISTORY.rst b/packages/data/HISTORY.rst index 0d575535241..718128163aa 100644 --- a/packages/data/HISTORY.rst +++ b/packages/data/HISTORY.rst @@ -3,11 +3,28 @@ History .. to_doc ------------ -24.0.1.dev0 ------------ +------------------- +24.0.1 (2024-05-02) +------------------- +========= +Bug fixes +========= + +* Always serialize element_count and populated when listing contents by `@mvdbeek `_ in `#17890 `_ +* Fix deadlock that can occur when changing job state by `@mvdbeek `_ in `#17896 `_ +* Fix tool form building if select filters from unavailable dataset metadata by `@mvdbeek `_ in `#17930 `_ +* Fix ``InvalidRequestError: Can't operate on closed transaction inside context manager. Please complete the context manager before emitting further commands.`` by `@mvdbeek `_ in `#17932 `_ +* Never fail dataset serialization if display_peek fails by `@mvdbeek `_ in `#17937 `_ +* Fix output datatype when uncompressing a dataset with incorrect datatype by `@nsoranzo `_ in `#17944 `_ +* Use or copy StoredWorkflow when copying step by `@mvdbeek `_ in `#17988 `_ +* Raise ``MessageException`` when report references invalid workflow output by `@mvdbeek `_ in `#18009 `_ +* Fix tag regex pattern by `@jdavcs `_ in `#18025 `_ +* Fix History Dataset Association creation so that hid is always set by `@mvdbeek `_ in `#18036 `_ +* Fix history export with missing dataset hids by `@davelopez `_ in `#18052 `_ +* Fix comments lost on import by `@ElectronicBlueberry `_ in `#18060 `_ +* Fix history update time after bulk operation by `@davelopez `_ in `#18068 `_ ------------------- 24.0.0 (2024-04-02) @@ -51,7 +68,7 @@ Enhancements * port invocation API to fastapi by `@martenson `_ in `#16707 `_ * SQLAlchemy 2.0 upgrades (part 5) by `@jdavcs `_ in `#16932 `_ * Python 3.8 as minimum by `@mr-c `_ in `#16954 `_ -* Expose more tool information / navigability in UI. by `@jmchilton `_ in `#17105 `_ +* Expose more tool information / navigability in UI. by `@jmchilton `_ in `#17105 `_ * Add support for (fast5.tar).xz binary compressed files by `@tuncK `_ in `#17106 `_ * SA2.0 updates: handling "object is being merged into a Session along the backref cascade path" by `@jdavcs `_ in `#17122 `_ * Towards SQLAlchemy 2.0: fix last cases of RemovedIn20Warning by `@jdavcs `_ in `#17132 `_ diff --git a/packages/data/setup.cfg b/packages/data/setup.cfg index 6eb3821810e..40cd829c106 100644 --- a/packages/data/setup.cfg +++ b/packages/data/setup.cfg @@ -27,7 +27,7 @@ long_description = file: README.rst, HISTORY.rst long_description_content_type = text/x-rst name = galaxy-data url = https://github.com/galaxyproject/galaxy -version = 24.0.1.dev0 +version = 24.0.1 [options] include_package_data = True diff --git a/packages/files/HISTORY.rst b/packages/files/HISTORY.rst index 6c77bea1c48..40d1f09e0f9 100644 --- a/packages/files/HISTORY.rst +++ b/packages/files/HISTORY.rst @@ -3,11 +3,22 @@ History .. to_doc ------------ -24.0.1.dev0 ------------ +------------------- +24.0.1 (2024-05-02) +------------------- +========= +Bug fixes +========= + +* Invenio plugin fixes by `@davelopez `_ in `#17997 `_ + +============ +Enhancements +============ + +* Fix remote files sources error handling by `@davelopez `_ in `#18027 `_ ------------------- 24.0.0 (2024-04-02) diff --git a/packages/files/setup.cfg b/packages/files/setup.cfg index 4c898333966..6c1c99a72d9 100644 --- a/packages/files/setup.cfg +++ b/packages/files/setup.cfg @@ -27,7 +27,7 @@ long_description = file: README.rst, HISTORY.rst long_description_content_type = text/x-rst name = galaxy-files url = https://github.com/galaxyproject/galaxy -version = 24.0.1.dev0 +version = 24.0.1 [options] include_package_data = True diff --git a/packages/job_execution/HISTORY.rst b/packages/job_execution/HISTORY.rst index ef8e7080091..05bc5a8aa40 100644 --- a/packages/job_execution/HISTORY.rst +++ b/packages/job_execution/HISTORY.rst @@ -3,11 +3,11 @@ History .. to_doc ------------ -24.0.1.dev0 ------------ - +------------------- +24.0.1 (2024-05-02) +------------------- +No recorded changes since last release ------------------- 24.0.0 (2024-04-02) diff --git a/packages/job_execution/setup.cfg b/packages/job_execution/setup.cfg index 644d2e5446d..8ee11826393 100644 --- a/packages/job_execution/setup.cfg +++ b/packages/job_execution/setup.cfg @@ -27,7 +27,7 @@ long_description = file: README.rst, HISTORY.rst long_description_content_type = text/x-rst name = galaxy-job-execution url = https://github.com/galaxyproject/galaxy -version = 24.0.1.dev0 +version = 24.0.1 [options] include_package_data = True diff --git a/packages/job_metrics/HISTORY.rst b/packages/job_metrics/HISTORY.rst index cfaee4f0151..c8984c85095 100644 --- a/packages/job_metrics/HISTORY.rst +++ b/packages/job_metrics/HISTORY.rst @@ -3,11 +3,11 @@ History .. to_doc ------------ -24.0.1.dev0 ------------ - +------------------- +24.0.1 (2024-05-02) +------------------- +No recorded changes since last release ------------------- 24.0.0 (2024-04-02) diff --git a/packages/job_metrics/setup.cfg b/packages/job_metrics/setup.cfg index 0797a50ee1a..786b16dc248 100644 --- a/packages/job_metrics/setup.cfg +++ b/packages/job_metrics/setup.cfg @@ -28,7 +28,7 @@ long_description = file: README.rst, HISTORY.rst long_description_content_type = text/x-rst name = galaxy-job-metrics url = https://github.com/galaxyproject/galaxy -version = 24.0.1.dev0 +version = 24.0.1 [options] include_package_data = True diff --git a/packages/navigation/HISTORY.rst b/packages/navigation/HISTORY.rst index e6d1bb6808d..340b8b3c6c9 100644 --- a/packages/navigation/HISTORY.rst +++ b/packages/navigation/HISTORY.rst @@ -3,11 +3,11 @@ History .. to_doc ------------ -24.0.1.dev0 ------------ - +------------------- +24.0.1 (2024-05-02) +------------------- +No recorded changes since last release ------------------- 24.0.0 (2024-04-02) diff --git a/packages/navigation/setup.cfg b/packages/navigation/setup.cfg index 216c2bf7e58..fa3cda925c9 100644 --- a/packages/navigation/setup.cfg +++ b/packages/navigation/setup.cfg @@ -27,7 +27,7 @@ long_description = file: README.rst, HISTORY.rst long_description_content_type = text/x-rst name = galaxy-navigation url = https://github.com/galaxyproject/galaxy -version = 24.0.1.dev0 +version = 24.0.1 [options] include_package_data = True diff --git a/packages/objectstore/HISTORY.rst b/packages/objectstore/HISTORY.rst index 6535fb5559a..e247a412a1a 100644 --- a/packages/objectstore/HISTORY.rst +++ b/packages/objectstore/HISTORY.rst @@ -3,11 +3,11 @@ History .. to_doc ------------ -24.0.1.dev0 ------------ - +------------------- +24.0.1 (2024-05-02) +------------------- +No recorded changes since last release ------------------- 24.0.0 (2024-04-02) diff --git a/packages/objectstore/setup.cfg b/packages/objectstore/setup.cfg index 3095f0879df..7799ac5fedd 100644 --- a/packages/objectstore/setup.cfg +++ b/packages/objectstore/setup.cfg @@ -28,7 +28,7 @@ long_description = file: README.rst, HISTORY.rst long_description_content_type = text/x-rst name = galaxy-objectstore url = https://github.com/galaxyproject/galaxy -version = 24.0.1.dev0 +version = 24.0.1 [options] include_package_data = True diff --git a/packages/schema/HISTORY.rst b/packages/schema/HISTORY.rst index d8e29763f32..ace7d2dfc7a 100644 --- a/packages/schema/HISTORY.rst +++ b/packages/schema/HISTORY.rst @@ -3,11 +3,17 @@ History .. to_doc ------------ -24.0.1.dev0 ------------ +------------------- +24.0.1 (2024-05-02) +------------------- +========= +Bug fixes +========= + +* Fix tag regex pattern by `@jdavcs `_ in `#18025 `_ +* Fix History Dataset Association creation so that hid is always set by `@mvdbeek `_ in `#18036 `_ ------------------- 24.0.0 (2024-04-02) diff --git a/packages/schema/setup.cfg b/packages/schema/setup.cfg index fe3e7045a4d..ac636cb348b 100644 --- a/packages/schema/setup.cfg +++ b/packages/schema/setup.cfg @@ -27,7 +27,7 @@ long_description = file: README.rst, HISTORY.rst long_description_content_type = text/x-rst name = galaxy-schema url = https://github.com/galaxyproject/galaxy -version = 24.0.1.dev0 +version = 24.0.1 [options] include_package_data = True diff --git a/packages/selenium/HISTORY.rst b/packages/selenium/HISTORY.rst index b125c94ade1..603f872e952 100644 --- a/packages/selenium/HISTORY.rst +++ b/packages/selenium/HISTORY.rst @@ -3,11 +3,16 @@ History .. to_doc ------------ -24.0.1.dev0 ------------ +------------------- +24.0.1 (2024-05-02) +------------------- +========= +Bug fixes +========= + +* Set from_tool_form: true when saving new workflow by `@mvdbeek `_ in `#17972 `_ ------------------- 24.0.0 (2024-04-02) diff --git a/packages/selenium/setup.cfg b/packages/selenium/setup.cfg index 92878cec9fa..9c5d593a9e7 100644 --- a/packages/selenium/setup.cfg +++ b/packages/selenium/setup.cfg @@ -27,7 +27,7 @@ long_description = file: README.rst, HISTORY.rst long_description_content_type = text/x-rst name = galaxy-selenium url = https://github.com/galaxyproject/galaxy -version = 24.0.1.dev0 +version = 24.0.1 [options] include_package_data = True diff --git a/packages/test_api/HISTORY.rst b/packages/test_api/HISTORY.rst index 810ce03d31e..c59820658ee 100644 --- a/packages/test_api/HISTORY.rst +++ b/packages/test_api/HISTORY.rst @@ -3,11 +3,25 @@ History .. to_doc ------------ -24.0.1.dev0 ------------ +------------------- +24.0.1 (2024-05-02) +------------------- +========= +Bug fixes +========= + +* Fix tool version switch in editor by `@mvdbeek `_ in `#17858 `_ +* Fix workflow run form failing on certain histories by `@mvdbeek `_ in `#17869 `_ +* Always serialize element_count and populated when listing contents by `@mvdbeek `_ in `#17890 `_ +* Make `wait_for_history_jobs` look at jobs, not datasets by `@mvdbeek `_ in `#17892 `_ +* Fix missing implicit conversion for mapped over jobs by `@mvdbeek `_ in `#17952 `_ +* Fix get_content_as_text for compressed text datatypes by `@mvdbeek `_ in `#17976 `_ +* Raise appropriate exception if user forces a collection that is not populated with elements as input by `@mvdbeek `_ in `#18023 `_ +* Fix ``test_get_tags_histories_content`` test by `@mvdbeek `_ in `#18026 `_ +* Ensure that offset and limit are never negative by `@mvdbeek `_ in `#18044 `_ +* Fix history update time after bulk operation by `@davelopez `_ in `#18068 `_ ------------------- 24.0.0 (2024-04-02) diff --git a/packages/test_api/setup.cfg b/packages/test_api/setup.cfg index 502629a42f7..e668b483ce9 100644 --- a/packages/test_api/setup.cfg +++ b/packages/test_api/setup.cfg @@ -27,7 +27,7 @@ long_description = file: README.rst, HISTORY.rst long_description_content_type = text/x-rst name = galaxy-test-api url = https://github.com/galaxyproject/galaxy -version = 24.0.1.dev0 +version = 24.0.1 [options] include_package_data = True diff --git a/packages/test_base/HISTORY.rst b/packages/test_base/HISTORY.rst index 76e19533346..c823dbfbf09 100644 --- a/packages/test_base/HISTORY.rst +++ b/packages/test_base/HISTORY.rst @@ -3,11 +3,17 @@ History .. to_doc ------------ -24.0.1.dev0 ------------ +------------------- +24.0.1 (2024-05-02) +------------------- +========= +Bug fixes +========= + +* Make `wait_for_history_jobs` look at jobs, not datasets by `@mvdbeek `_ in `#17892 `_ +* Fix missing implicit conversion for mapped over jobs by `@mvdbeek `_ in `#17952 `_ ------------------- 24.0.0 (2024-04-02) diff --git a/packages/test_base/setup.cfg b/packages/test_base/setup.cfg index 90217ccbe0d..6ca851af34a 100644 --- a/packages/test_base/setup.cfg +++ b/packages/test_base/setup.cfg @@ -27,7 +27,7 @@ long_description = file: README.rst, HISTORY.rst long_description_content_type = text/x-rst name = galaxy-test-base url = https://github.com/galaxyproject/galaxy -version = 24.0.1.dev0 +version = 24.0.1 [options] include_package_data = True diff --git a/packages/test_driver/HISTORY.rst b/packages/test_driver/HISTORY.rst index c98547b71ea..082a40b2a42 100644 --- a/packages/test_driver/HISTORY.rst +++ b/packages/test_driver/HISTORY.rst @@ -3,11 +3,11 @@ History .. to_doc ------------ -24.0.1.dev0 ------------ - +------------------- +24.0.1 (2024-05-02) +------------------- +No recorded changes since last release ------------------- 24.0.0 (2024-04-02) diff --git a/packages/test_driver/setup.cfg b/packages/test_driver/setup.cfg index bbbe309b3ae..428bd52bcff 100644 --- a/packages/test_driver/setup.cfg +++ b/packages/test_driver/setup.cfg @@ -27,7 +27,7 @@ long_description = file: README.rst, HISTORY.rst long_description_content_type = text/x-rst name = galaxy-test-driver url = https://github.com/galaxyproject/galaxy -version = 24.0.1.dev0 +version = 24.0.1 [options] include_package_data = True diff --git a/packages/tool_shed/HISTORY.rst b/packages/tool_shed/HISTORY.rst index e81b1e5e5ee..a65e7fd3081 100644 --- a/packages/tool_shed/HISTORY.rst +++ b/packages/tool_shed/HISTORY.rst @@ -3,11 +3,11 @@ History .. to_doc ------------ -24.0.1.dev0 ------------ - +------------------- +24.0.1 (2024-05-02) +------------------- +No recorded changes since last release ------------------- 24.0.0 (2024-04-02) diff --git a/packages/tool_shed/setup.cfg b/packages/tool_shed/setup.cfg index 41d53982c23..4b905ee842b 100644 --- a/packages/tool_shed/setup.cfg +++ b/packages/tool_shed/setup.cfg @@ -27,7 +27,7 @@ long_description = file: README.rst, HISTORY.rst long_description_content_type = text/x-rst name = galaxy-tool-shed url = https://github.com/galaxyproject/galaxy -version = 24.0.1.dev0 +version = 24.0.1 [options] include_package_data = True diff --git a/packages/tool_util/HISTORY.rst b/packages/tool_util/HISTORY.rst index d64ac737998..5c089b315ce 100644 --- a/packages/tool_util/HISTORY.rst +++ b/packages/tool_util/HISTORY.rst @@ -3,11 +3,16 @@ History .. to_doc ------------ -24.0.1.dev0 ------------ +------------------- +24.0.1 (2024-05-02) +------------------- +========= +Bug fixes +========= + +* Fix conditional Image imports by `@mvdbeek `_ in `#17899 `_ ------------------- 24.0.0 (2024-04-02) diff --git a/packages/tool_util/setup.cfg b/packages/tool_util/setup.cfg index e72c8866bdc..40f77520d46 100644 --- a/packages/tool_util/setup.cfg +++ b/packages/tool_util/setup.cfg @@ -28,7 +28,7 @@ long_description = file: README.rst, HISTORY.rst long_description_content_type = text/x-rst name = galaxy-tool-util url = https://github.com/galaxyproject/galaxy -version = 24.0.1.dev0 +version = 24.0.1 [options] include_package_data = True diff --git a/packages/tours/HISTORY.rst b/packages/tours/HISTORY.rst index 4478db0c216..f21e785646c 100644 --- a/packages/tours/HISTORY.rst +++ b/packages/tours/HISTORY.rst @@ -3,11 +3,11 @@ History .. to_doc ------------ -24.0.1.dev0 ------------ - +------------------- +24.0.1 (2024-05-02) +------------------- +No recorded changes since last release ------------------- 24.0.0 (2024-04-02) diff --git a/packages/tours/setup.cfg b/packages/tours/setup.cfg index 6a3750a4875..a83a2292504 100644 --- a/packages/tours/setup.cfg +++ b/packages/tours/setup.cfg @@ -27,7 +27,7 @@ long_description = file: README.rst, HISTORY.rst long_description_content_type = text/x-rst name = galaxy-tours url = https://github.com/galaxyproject/galaxy -version = 24.0.1.dev0 +version = 24.0.1 [options] include_package_data = True diff --git a/packages/util/HISTORY.rst b/packages/util/HISTORY.rst index c5968a62759..329b5a80ce7 100644 --- a/packages/util/HISTORY.rst +++ b/packages/util/HISTORY.rst @@ -3,11 +3,16 @@ History .. to_doc ------------ -24.0.1.dev0 ------------ +------------------- +24.0.1 (2024-05-02) +------------------- +========= +Bug fixes +========= + +* Fix conditional Image imports by `@mvdbeek `_ in `#17899 `_ ------------------- 24.0.0 (2024-04-02) diff --git a/packages/util/setup.cfg b/packages/util/setup.cfg index ef2ce9d96f0..b6ef9c71671 100644 --- a/packages/util/setup.cfg +++ b/packages/util/setup.cfg @@ -28,7 +28,7 @@ long_description = file: README.rst, HISTORY.rst long_description_content_type = text/x-rst name = galaxy-util url = https://github.com/galaxyproject/galaxy -version = 24.0.1.dev0 +version = 24.0.1 [options] include_package_data = True diff --git a/packages/web_apps/HISTORY.rst b/packages/web_apps/HISTORY.rst index 7975f67594c..bf31862cce8 100644 --- a/packages/web_apps/HISTORY.rst +++ b/packages/web_apps/HISTORY.rst @@ -3,11 +3,25 @@ History .. to_doc ------------ -24.0.1.dev0 ------------ +------------------- +24.0.1 (2024-05-02) +------------------- +========= +Bug fixes +========= + +* Fix tool version switch in editor by `@mvdbeek `_ in `#17858 `_ +* Fix workflow run form failing on certain histories by `@mvdbeek `_ in `#17869 `_ +* Ensure that offset and limit are never negative by `@mvdbeek `_ in `#18044 `_ +* Fix history update time after bulk operation by `@davelopez `_ in `#18068 `_ + +============ +Enhancements +============ + +* Add middleware for logging start and end of request by `@mvdbeek `_ in `#18046 `_ ------------------- 24.0.0 (2024-04-02) diff --git a/packages/web_apps/setup.cfg b/packages/web_apps/setup.cfg index 88788124918..1b9045749ee 100644 --- a/packages/web_apps/setup.cfg +++ b/packages/web_apps/setup.cfg @@ -27,7 +27,7 @@ long_description = file: README.rst, HISTORY.rst long_description_content_type = text/x-rst name = galaxy-web-apps url = https://github.com/galaxyproject/galaxy -version = 24.0.1.dev0 +version = 24.0.1 [options] include_package_data = True diff --git a/packages/web_framework/HISTORY.rst b/packages/web_framework/HISTORY.rst index a8094c8e214..694dca5972e 100644 --- a/packages/web_framework/HISTORY.rst +++ b/packages/web_framework/HISTORY.rst @@ -3,11 +3,16 @@ History .. to_doc ------------ -24.0.1.dev0 ------------ +------------------- +24.0.1 (2024-05-02) +------------------- +========= +Bug fixes +========= + +* Fix KeyError in ``XForwardedHostMiddleware`` by `@nsoranzo `_ in `#17955 `_ ------------------- 24.0.0 (2024-04-02) diff --git a/packages/web_framework/setup.cfg b/packages/web_framework/setup.cfg index c7769fc13a9..168e46f24bb 100644 --- a/packages/web_framework/setup.cfg +++ b/packages/web_framework/setup.cfg @@ -27,7 +27,7 @@ long_description = file: README.rst, HISTORY.rst long_description_content_type = text/x-rst name = galaxy-web-framework url = https://github.com/galaxyproject/galaxy -version = 24.0.1.dev0 +version = 24.0.1 [options] include_package_data = True diff --git a/packages/web_stack/HISTORY.rst b/packages/web_stack/HISTORY.rst index b16a1268f4a..abbc9c5432c 100644 --- a/packages/web_stack/HISTORY.rst +++ b/packages/web_stack/HISTORY.rst @@ -3,11 +3,11 @@ History .. to_doc ------------ -24.0.1.dev0 ------------ - +------------------- +24.0.1 (2024-05-02) +------------------- +No recorded changes since last release ------------------- 24.0.0 (2024-04-02) diff --git a/packages/web_stack/setup.cfg b/packages/web_stack/setup.cfg index 0155b88613e..7093ceb8c3f 100644 --- a/packages/web_stack/setup.cfg +++ b/packages/web_stack/setup.cfg @@ -27,7 +27,7 @@ long_description = file: README.rst, HISTORY.rst long_description_content_type = text/x-rst name = galaxy-web-stack url = https://github.com/galaxyproject/galaxy -version = 24.0.1.dev0 +version = 24.0.1 [options] include_package_data = True