From c7b0dde02bc51c46292e540874f75e55eea404f8 Mon Sep 17 00:00:00 2001 From: Shaiah Emigh-Doyle <64337863+ShaiahWren@users.noreply.github.com> Date: Mon, 22 Aug 2022 16:39:18 -0400 Subject: [PATCH] Release 4.5.1 (#1426) No-Issue --- CHANGES.rst | 27 +++++++++++++++++++++++++++ CHANGES/1531.feature | 1 - CHANGES/1593.feature | 1 - CHANGES/1690.bugfix | 1 - CHANGES/1737.misc | 1 - CHANGES/1791.bugfix | 1 - galaxy_ng/__init__.py | 2 +- galaxy_ng/app/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 10 files changed, 31 insertions(+), 9 deletions(-) delete mode 100644 CHANGES/1531.feature delete mode 100644 CHANGES/1593.feature delete mode 100644 CHANGES/1690.bugfix delete mode 100644 CHANGES/1737.misc delete mode 100644 CHANGES/1791.bugfix diff --git a/CHANGES.rst b/CHANGES.rst index 6262e3acbb..fc08754274 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -13,6 +13,33 @@ Changelog .. towncrier release notes start +4.5.1 (2022-08-22) +Features +-------- + +- Allow set of GALAXY_MINIMUM_PASSWORD_LENGTH for AUTH_PASSWORD_VALIDATORS + `AAH-1531 `_ +- Add LDAP integration + `AAH-1593 `_ + + +Bugfixes +-------- + +- Fix feature flags for signing + `AAH-1690 `_ +- Forbid user with change_user perms to update superuser + `AAH-1791 `_ + + +Misc +---- + +- `AAH-1737 `_ + + +---- + Features -------- diff --git a/CHANGES/1531.feature b/CHANGES/1531.feature deleted file mode 100644 index 4ef65d5072..0000000000 --- a/CHANGES/1531.feature +++ /dev/null @@ -1 +0,0 @@ -Allow set of GALAXY_MINIMUM_PASSWORD_LENGTH for AUTH_PASSWORD_VALIDATORS diff --git a/CHANGES/1593.feature b/CHANGES/1593.feature deleted file mode 100644 index 573a78bc27..0000000000 --- a/CHANGES/1593.feature +++ /dev/null @@ -1 +0,0 @@ -Add LDAP integration diff --git a/CHANGES/1690.bugfix b/CHANGES/1690.bugfix deleted file mode 100644 index e9ffa343ae..0000000000 --- a/CHANGES/1690.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix feature flags for signing diff --git a/CHANGES/1737.misc b/CHANGES/1737.misc deleted file mode 100644 index b335d0c8e2..0000000000 --- a/CHANGES/1737.misc +++ /dev/null @@ -1 +0,0 @@ -Update filter for indexing EEs from catalog.redhat.com \ No newline at end of file diff --git a/CHANGES/1791.bugfix b/CHANGES/1791.bugfix deleted file mode 100644 index 6e0970a090..0000000000 --- a/CHANGES/1791.bugfix +++ /dev/null @@ -1 +0,0 @@ -Forbid user with change_user perms to update superuser diff --git a/galaxy_ng/__init__.py b/galaxy_ng/__init__.py index afcf6d2b5a..aa9cf4700e 100644 --- a/galaxy_ng/__init__.py +++ b/galaxy_ng/__init__.py @@ -1,3 +1,3 @@ -__version__ = "4.5.0" +__version__ = "4.5.1" default_app_config = "galaxy_ng.app.PulpGalaxyPluginAppConfig" diff --git a/galaxy_ng/app/__init__.py b/galaxy_ng/app/__init__.py index 6bb56b5b03..3dfb9c9a0d 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.5.0" + version = "4.5.1" def ready(self): super().ready() diff --git a/setup.cfg b/setup.cfg index 29adeecce1..235d1f7304 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.5.0 +current_version = 4.5.1 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 b65a2b5e67..d6352a00fb 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.5.0" +version = "4.5.1" class PrepareStaticCommand(Command):