From d474eae7248d1585066bacf020f3cc8dd55ff54a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Je=C5=99=C3=A1bek?= Date: Tue, 4 Apr 2023 19:21:23 +0200 Subject: [PATCH] Release 4.6.4 (#1668) * bump version to 4.6.4 * update changelog No-Issue --- CHANGES.rst | 30 ++++++++++++++++++++++++++++++ CHANGES/1958.bugfix | 1 - CHANGES/2018.feature | 1 - CHANGES/2029.misc | 1 - CHANGES/2112.feature | 1 - CHANGES/2137.misc | 1 - CHANGES/2150.bugfix | 1 - galaxy_ng/__init__.py | 2 +- galaxy_ng/app/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 11 files changed, 34 insertions(+), 10 deletions(-) delete mode 100644 CHANGES/1958.bugfix delete mode 100644 CHANGES/2018.feature delete mode 100644 CHANGES/2029.misc delete mode 100644 CHANGES/2112.feature delete mode 100644 CHANGES/2137.misc delete mode 100644 CHANGES/2150.bugfix diff --git a/CHANGES.rst b/CHANGES.rst index 55f7dc7250..32d91f70b6 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -13,6 +13,36 @@ Changelog .. towncrier release notes start +4.6.4 (2023-04-04) +================== + +Features +-------- + +- Add version_range parameter to the _ui/v1/collection-versions/ endpoint. + `AAH-2018 `_ +- Add GALAXY_LDAP_MIRROR_ONLY_EXISTING_GROUPS which configures LDAP to only add users into groups that already exist in the system. + `AAH-2112 `_ + + +Bugfixes +-------- + +- Filtering deprecated EE from registry sync + `AAH-1958 `_ +- Allow ldap.OPT_REFERRALS to be set + `AAH-2150 `_ + + +Misc +---- + +- `AAH-2029 `_, `AAH-2137 `_ + + +---- + + 4.6.3 (2022-12-05) ================== diff --git a/CHANGES/1958.bugfix b/CHANGES/1958.bugfix deleted file mode 100644 index d2d782ab8a..0000000000 --- a/CHANGES/1958.bugfix +++ /dev/null @@ -1 +0,0 @@ -Filtering deprecated EE from registry sync diff --git a/CHANGES/2018.feature b/CHANGES/2018.feature deleted file mode 100644 index ccaa186643..0000000000 --- a/CHANGES/2018.feature +++ /dev/null @@ -1 +0,0 @@ -Add version_range parameter to the _ui/v1/collection-versions/ endpoint. \ No newline at end of file diff --git a/CHANGES/2029.misc b/CHANGES/2029.misc deleted file mode 100644 index d2051961aa..0000000000 --- a/CHANGES/2029.misc +++ /dev/null @@ -1 +0,0 @@ -Add github action to build galaxy_ng and publish to PyPI diff --git a/CHANGES/2112.feature b/CHANGES/2112.feature deleted file mode 100644 index 99fed13964..0000000000 --- a/CHANGES/2112.feature +++ /dev/null @@ -1 +0,0 @@ -Add GALAXY_LDAP_MIRROR_ONLY_EXISTING_GROUPS which configures LDAP to only add users into groups that already exist in the system. \ No newline at end of file diff --git a/CHANGES/2137.misc b/CHANGES/2137.misc deleted file mode 100644 index 75cd6dfe32..0000000000 --- a/CHANGES/2137.misc +++ /dev/null @@ -1 +0,0 @@ -Add upper range to ansible-lint to resolve dependency mismatch diff --git a/CHANGES/2150.bugfix b/CHANGES/2150.bugfix deleted file mode 100644 index 180d83861a..0000000000 --- a/CHANGES/2150.bugfix +++ /dev/null @@ -1 +0,0 @@ -Allow ldap.OPT_REFERRALS to be set diff --git a/galaxy_ng/__init__.py b/galaxy_ng/__init__.py index 0e8da37f53..8ff030bdfd 100644 --- a/galaxy_ng/__init__.py +++ b/galaxy_ng/__init__.py @@ -1,3 +1,3 @@ -__version__ = "4.6.3" +__version__ = "4.6.4" default_app_config = "galaxy_ng.app.PulpGalaxyPluginAppConfig" diff --git a/galaxy_ng/app/__init__.py b/galaxy_ng/app/__init__.py index a697be2b8b..28d0892002 100644 --- a/galaxy_ng/app/__init__.py +++ b/galaxy_ng/app/__init__.py @@ -6,7 +6,7 @@ class PulpGalaxyPluginAppConfig(PulpPluginAppConfig): name = "galaxy_ng.app" label = "galaxy" - version = "4.6.3" + version = "4.6.4" python_package_name = "galaxy-ng" def ready(self): diff --git a/setup.cfg b/setup.cfg index ed53f30646..769d80854d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.6.3 +current_version = 4.6.4 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)((?P[a-z]+))?((?P\d+))? diff --git a/setup.py b/setup.py index 2dcbd83c14..45b96ff8f4 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ from setuptools.command.sdist import sdist as _SDistCommand package_name = os.environ.get("GALAXY_NG_ALTERNATE_NAME", "galaxy-ng") -version = "4.6.3" +version = "4.6.4" class PrepareStaticCommand(Command):