Skip to content

Commit c80d7d9

Browse files
committed
Create version 24.2.2
1 parent 54de00e commit c80d7d9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+192
-95
lines changed

lib/galaxy/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
VERSION_MAJOR = "24.2"
2-
VERSION_MINOR = "2.dev0"
2+
VERSION_MINOR = "2"
33
VERSION = VERSION_MAJOR + (f".{VERSION_MINOR}" if VERSION_MINOR else "")

packages/app/HISTORY.rst

+24-3
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,32 @@ History
33

44
.. to_doc
55
6-
-----------
7-
24.2.2.dev0
8-
-----------
6+
-------------------
7+
24.2.2 (2025-03-08)
8+
-------------------
9+
10+
11+
=========
12+
Bug fixes
13+
=========
14+
15+
* Fix conditional dependency path resolution by `@mvdbeek <https://github.com/mvdbeek>`_ in `#19723 <https://github.com/galaxyproject/galaxy/pull/19723>`_
16+
* Allow tool state changes in refactor actions by `@mvdbeek <https://github.com/mvdbeek>`_ in `#19730 <https://github.com/galaxyproject/galaxy/pull/19730>`_
17+
* Update fs.dropboxfs conditional dependency version to 1.0.3 by `@davelopez <https://github.com/davelopez>`_ in `#19741 <https://github.com/galaxyproject/galaxy/pull/19741>`_
18+
* Follow-up to #19651: Do not reassign: method modifies object in-place by `@jdavcs <https://github.com/jdavcs>`_ in `#19746 <https://github.com/galaxyproject/galaxy/pull/19746>`_
919

20+
============
21+
Enhancements
22+
============
23+
24+
* Add bwa_mem2_index directory datatype, framework enhancements for testing directories by `@mvdbeek <https://github.com/mvdbeek>`_ in `#19694 <https://github.com/galaxyproject/galaxy/pull/19694>`_
25+
* Skip slow tests for manage_db, db_dev scripts by `@jdavcs <https://github.com/jdavcs>`_ in `#19744 <https://github.com/galaxyproject/galaxy/pull/19744>`_
26+
27+
=============
28+
Other changes
29+
=============
1030

31+
* Make k8s user and group ids overriddable per job by `@nuwang <https://github.com/nuwang>`_ in `#19568 <https://github.com/galaxyproject/galaxy/pull/19568>`_
1132

1233
-------------------
1334
24.2.1 (2025-02-28)

packages/app/setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ long_description = file: README.rst, HISTORY.rst
2828
long_description_content_type = text/x-rst
2929
name = galaxy-app
3030
url = https://github.com/galaxyproject/galaxy
31-
version = 24.2.2.dev0
31+
version = 24.2.2
3232

3333
[options]
3434
include_package_data = True

packages/auth/HISTORY.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ History
33

44
.. to_doc
55
6-
-----------
7-
24.2.2.dev0
8-
-----------
9-
6+
-------------------
7+
24.2.2 (2025-03-08)
8+
-------------------
109

10+
No recorded changes since last release
1111

1212
-------------------
1313
24.2.1 (2025-02-28)

packages/auth/setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ long_description = file: README.rst, HISTORY.rst
2828
long_description_content_type = text/x-rst
2929
name = galaxy-auth
3030
url = https://github.com/galaxyproject/galaxy
31-
version = 24.2.2.dev0
31+
version = 24.2.2
3232

3333
[options]
3434
include_package_data = True

packages/config/HISTORY.rst

+14-3
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,22 @@ History
33

44
.. to_doc
55
6-
-----------
7-
24.2.2.dev0
8-
-----------
6+
-------------------
7+
24.2.2 (2025-03-08)
8+
-------------------
9+
910

11+
=========
12+
Bug fixes
13+
=========
14+
15+
* Fix conditional dependency path resolution by `@mvdbeek <https://github.com/mvdbeek>`_ in `#19723 <https://github.com/galaxyproject/galaxy/pull/19723>`_
16+
17+
============
18+
Enhancements
19+
============
1020

21+
* Add bwa_mem2_index directory datatype, framework enhancements for testing directories by `@mvdbeek <https://github.com/mvdbeek>`_ in `#19694 <https://github.com/galaxyproject/galaxy/pull/19694>`_
1122

1223
-------------------
1324
24.2.1 (2025-02-28)

packages/config/setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ long_description = file: README.rst, HISTORY.rst
2828
long_description_content_type = text/x-rst
2929
name = galaxy-config
3030
url = https://github.com/galaxyproject/galaxy
31-
version = 24.2.2.dev0
31+
version = 24.2.2
3232

3333
[options]
3434
include_package_data = True

packages/data/HISTORY.rst

+20-3
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,28 @@ History
33

44
.. to_doc
55
6-
-----------
7-
24.2.2.dev0
8-
-----------
6+
-------------------
7+
24.2.2 (2025-03-08)
8+
-------------------
9+
10+
11+
=========
12+
Bug fixes
13+
=========
14+
15+
* Fix recording transform action name. by `@jmchilton <https://github.com/jmchilton>`_ in `#19672 <https://github.com/galaxyproject/galaxy/pull/19672>`_
916

17+
============
18+
Enhancements
19+
============
20+
21+
* Add bwa_mem2_index directory datatype, framework enhancements for testing directories by `@mvdbeek <https://github.com/mvdbeek>`_ in `#19694 <https://github.com/galaxyproject/galaxy/pull/19694>`_
22+
23+
=============
24+
Other changes
25+
=============
1026

27+
* Backport #19620 by `@nsoranzo <https://github.com/nsoranzo>`_ in `#19725 <https://github.com/galaxyproject/galaxy/pull/19725>`_
1128

1229
-------------------
1330
24.2.1 (2025-02-28)

packages/data/setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ long_description = file: README.rst, HISTORY.rst
2828
long_description_content_type = text/x-rst
2929
name = galaxy-data
3030
url = https://github.com/galaxyproject/galaxy
31-
version = 24.2.2.dev0
31+
version = 24.2.2
3232

3333
[options]
3434
include_package_data = True

packages/files/HISTORY.rst

+8-3
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,16 @@ History
33

44
.. to_doc
55
6-
-----------
7-
24.2.2.dev0
8-
-----------
6+
-------------------
7+
24.2.2 (2025-03-08)
8+
-------------------
9+
910

11+
=========
12+
Bug fixes
13+
=========
1014

15+
* Fix RDM token access for user-defined file sources by `@davelopez <https://github.com/davelopez>`_ in `#19768 <https://github.com/galaxyproject/galaxy/pull/19768>`_
1116

1217
-------------------
1318
24.2.1 (2025-02-28)

packages/files/setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ long_description = file: README.rst, HISTORY.rst
2828
long_description_content_type = text/x-rst
2929
name = galaxy-files
3030
url = https://github.com/galaxyproject/galaxy
31-
version = 24.2.2.dev0
31+
version = 24.2.2
3232

3333
[options]
3434
include_package_data = True

packages/job_execution/HISTORY.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ History
33

44
.. to_doc
55
6-
-----------
7-
24.2.2.dev0
8-
-----------
9-
6+
-------------------
7+
24.2.2 (2025-03-08)
8+
-------------------
109

10+
No recorded changes since last release
1111

1212
-------------------
1313
24.2.1 (2025-02-28)

packages/job_execution/setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ long_description = file: README.rst, HISTORY.rst
2828
long_description_content_type = text/x-rst
2929
name = galaxy-job-execution
3030
url = https://github.com/galaxyproject/galaxy
31-
version = 24.2.2.dev0
31+
version = 24.2.2
3232

3333
[options]
3434
include_package_data = True

packages/job_metrics/HISTORY.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ History
33

44
.. to_doc
55
6-
-----------
7-
24.2.2.dev0
8-
-----------
9-
6+
-------------------
7+
24.2.2 (2025-03-08)
8+
-------------------
109

10+
No recorded changes since last release
1111

1212
-------------------
1313
24.2.1 (2025-02-28)

packages/job_metrics/setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ long_description = file: README.rst, HISTORY.rst
2929
long_description_content_type = text/x-rst
3030
name = galaxy-job-metrics
3131
url = https://github.com/galaxyproject/galaxy
32-
version = 24.2.2.dev0
32+
version = 24.2.2
3333

3434
[options]
3535
include_package_data = True

packages/navigation/HISTORY.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ History
33

44
.. to_doc
55
6-
-----------
7-
24.2.2.dev0
8-
-----------
9-
6+
-------------------
7+
24.2.2 (2025-03-08)
8+
-------------------
109

10+
No recorded changes since last release
1111

1212
-------------------
1313
24.2.1 (2025-02-28)

packages/navigation/setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ long_description = file: README.rst, HISTORY.rst
2828
long_description_content_type = text/x-rst
2929
name = galaxy-navigation
3030
url = https://github.com/galaxyproject/galaxy
31-
version = 24.2.2.dev0
31+
version = 24.2.2
3232

3333
[options]
3434
include_package_data = True

packages/objectstore/HISTORY.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ History
33

44
.. to_doc
55
6-
-----------
7-
24.2.2.dev0
8-
-----------
9-
6+
-------------------
7+
24.2.2 (2025-03-08)
8+
-------------------
109

10+
No recorded changes since last release
1111

1212
-------------------
1313
24.2.1 (2025-02-28)

packages/objectstore/setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ long_description = file: README.rst, HISTORY.rst
2929
long_description_content_type = text/x-rst
3030
name = galaxy-objectstore
3131
url = https://github.com/galaxyproject/galaxy
32-
version = 24.2.2.dev0
32+
version = 24.2.2
3333

3434
[options]
3535
include_package_data = True

packages/schema/HISTORY.rst

+8-3
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,16 @@ History
33

44
.. to_doc
55
6-
-----------
7-
24.2.2.dev0
8-
-----------
6+
-------------------
7+
24.2.2 (2025-03-08)
8+
-------------------
9+
910

11+
============
12+
Enhancements
13+
============
1014

15+
* Add bwa_mem2_index directory datatype, framework enhancements for testing directories by `@mvdbeek <https://github.com/mvdbeek>`_ in `#19694 <https://github.com/galaxyproject/galaxy/pull/19694>`_
1116

1217
-------------------
1318
24.2.1 (2025-02-28)

packages/schema/setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ long_description = file: README.rst, HISTORY.rst
2828
long_description_content_type = text/x-rst
2929
name = galaxy-schema
3030
url = https://github.com/galaxyproject/galaxy
31-
version = 24.2.2.dev0
31+
version = 24.2.2
3232

3333
[options]
3434
include_package_data = True

packages/selenium/HISTORY.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ History
33

44
.. to_doc
55
6-
-----------
7-
24.2.2.dev0
8-
-----------
9-
6+
-------------------
7+
24.2.2 (2025-03-08)
8+
-------------------
109

10+
No recorded changes since last release
1111

1212
-------------------
1313
24.2.1 (2025-02-28)

packages/selenium/setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ long_description = file: README.rst, HISTORY.rst
2828
long_description_content_type = text/x-rst
2929
name = galaxy-selenium
3030
url = https://github.com/galaxyproject/galaxy
31-
version = 24.2.2.dev0
31+
version = 24.2.2
3232

3333
[options]
3434
include_package_data = True

packages/test_api/HISTORY.rst

+8-3
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,16 @@ History
33

44
.. to_doc
55
6-
-----------
7-
24.2.2.dev0
8-
-----------
6+
-------------------
7+
24.2.2 (2025-03-08)
8+
-------------------
9+
910

11+
=========
12+
Bug fixes
13+
=========
1014

15+
* Allow tool state changes in refactor actions by `@mvdbeek <https://github.com/mvdbeek>`_ in `#19730 <https://github.com/galaxyproject/galaxy/pull/19730>`_
1116

1217
-------------------
1318
24.2.1 (2025-02-28)

packages/test_api/setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ long_description = file: README.rst, HISTORY.rst
2828
long_description_content_type = text/x-rst
2929
name = galaxy-test-api
3030
url = https://github.com/galaxyproject/galaxy
31-
version = 24.2.2.dev0
31+
version = 24.2.2
3232

3333
[options]
3434
include_package_data = True

packages/test_base/HISTORY.rst

+8-3
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,16 @@ History
33

44
.. to_doc
55
6-
-----------
7-
24.2.2.dev0
8-
-----------
6+
-------------------
7+
24.2.2 (2025-03-08)
8+
-------------------
9+
910

11+
============
12+
Enhancements
13+
============
1014

15+
* Add bwa_mem2_index directory datatype, framework enhancements for testing directories by `@mvdbeek <https://github.com/mvdbeek>`_ in `#19694 <https://github.com/galaxyproject/galaxy/pull/19694>`_
1116

1217
-------------------
1318
24.2.1 (2025-02-28)

packages/test_base/setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ long_description = file: README.rst, HISTORY.rst
2828
long_description_content_type = text/x-rst
2929
name = galaxy-test-base
3030
url = https://github.com/galaxyproject/galaxy
31-
version = 24.2.2.dev0
31+
version = 24.2.2
3232

3333
[options]
3434
include_package_data = True

0 commit comments

Comments
 (0)