Unverified Commit 1492e51b authored by mvdbeek's avatar mvdbeek
Browse files

Create version 25.0.3

parent 3da17fc8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
{
  "name": "@galaxyproject/galaxy-client",
  "version": "25.0.3.dev0",
  "version": "25.0.3",
  "description": "Galaxy client application build system",
  "keywords": [
    "galaxy"
+1 −1
Original line number Diff line number Diff line
VERSION_MAJOR = "25.0"
VERSION_MINOR = "3.dev0"
VERSION_MINOR = "3"
VERSION = VERSION_MAJOR + (f".{VERSION_MINOR}" if VERSION_MINOR else "")
+1 −1
Original line number Diff line number Diff line
{
  "name": "@galaxyproject/galaxy",
  "version": "25.0.2",
  "version": "25.0.3",
  "description": ".. figure:: https://galaxyproject.org/images/galaxy-logos/galaxy_project_logo.jpg    :alt: Galaxy Logo",
  "main": "index.js",
  "scripts": {
+14 −3
Original line number Diff line number Diff line
@@ -3,11 +3,22 @@ History

.. to_doc

-----------
25.0.3.dev0
-----------
-------------------
25.0.3 (2025-09-23)
-------------------


=========
Bug fixes
=========

* Ensure that workflow invocations are persisted with state by `@mvdbeek <https://github.com/mvdbeek>`_ in `#20784 <https://github.com/galaxyproject/galaxy/pull/20784>`_
* Fix password reset functionality for lowercase emails by `@jdavcs <https://github.com/jdavcs>`_ in `#20801 <https://github.com/galaxyproject/galaxy/pull/20801>`_
* Fix token refresh bug (cilogon) by `@jdavcs <https://github.com/jdavcs>`_ in `#20821 <https://github.com/galaxyproject/galaxy/pull/20821>`_
* Drop eager argument from invocation related methods by `@mvdbeek <https://github.com/mvdbeek>`_ in `#20863 <https://github.com/galaxyproject/galaxy/pull/20863>`_
* Fix role.description bug by `@jdavcs <https://github.com/jdavcs>`_ in `#20883 <https://github.com/galaxyproject/galaxy/pull/20883>`_
* Make check for existing user in custos_authnz.py case insensitive by `@cat-bro <https://github.com/cat-bro>`_ in `#20893 <https://github.com/galaxyproject/galaxy/pull/20893>`_
* Avoid potential race condition in replacement_for_connection by `@mvdbeek <https://github.com/mvdbeek>`_ in `#20909 <https://github.com/galaxyproject/galaxy/pull/20909>`_

-------------------
25.0.2 (2025-08-13)
+1 −1
Original line number Diff line number Diff line
@@ -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 = 25.0.3.dev0
version = 25.0.3

[options]
include_package_data = True
Loading