diff --git a/CHANGES.rst b/CHANGES.rst index 9c91eca173..a693e51e65 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -13,6 +13,23 @@ Changelog .. towncrier release notes start +4.4.2 (2022-03-01) +Bugfixes +-------- + +- Log query items to api access log to capture collection details when uploading a collection. + `AAH-1018 `_ +- Update pulpcore to 3.15.4 to pickup CDN related fixes + `AAH-1202 `_ +- Update pulp_ansible to 0.10.2 to pickup proxy authentication fix. + `AAH-1243 `_ +- Add missing proxy_password if field is set on CollectionRemote update + `AAH-1254 `_ + + +---- + + 4.4.1 (2022-01-06) Bugfixes -------- diff --git a/CHANGES/1018.bugfix b/CHANGES/1018.bugfix deleted file mode 100644 index 0b000370a5..0000000000 --- a/CHANGES/1018.bugfix +++ /dev/null @@ -1 +0,0 @@ -Log query items to api access log to capture collection details when uploading a collection. \ No newline at end of file diff --git a/CHANGES/1202.bugfix b/CHANGES/1202.bugfix deleted file mode 100644 index 1aef3a64da..0000000000 --- a/CHANGES/1202.bugfix +++ /dev/null @@ -1 +0,0 @@ -Update pulpcore to 3.15.4 to pickup CDN related fixes \ No newline at end of file diff --git a/CHANGES/1243.bugfix b/CHANGES/1243.bugfix deleted file mode 100644 index 071b04c54e..0000000000 --- a/CHANGES/1243.bugfix +++ /dev/null @@ -1 +0,0 @@ -Update pulp_ansible to 0.10.2 to pickup proxy authentication fix. \ No newline at end of file diff --git a/CHANGES/1254.bugfix b/CHANGES/1254.bugfix deleted file mode 100644 index 7b1631dcce..0000000000 --- a/CHANGES/1254.bugfix +++ /dev/null @@ -1 +0,0 @@ -Add missing proxy_password if field is set on CollectionRemote update diff --git a/galaxy_ng/__init__.py b/galaxy_ng/__init__.py index e15697a768..0806c63a31 100644 --- a/galaxy_ng/__init__.py +++ b/galaxy_ng/__init__.py @@ -1,3 +1,3 @@ -__version__ = "4.4.1" +__version__ = "4.4.2" default_app_config = "galaxy_ng.app.PulpGalaxyPluginAppConfig" diff --git a/galaxy_ng/app/__init__.py b/galaxy_ng/app/__init__.py index 29fc27b8f5..7760d2e133 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.4.1" + version = "4.4.2" def ready(self): super().ready() diff --git a/setup.cfg b/setup.cfg index 9c12b79128..a881cdea75 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.4.1 +current_version = 4.4.2 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 c27af1728b..145606e97b 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ from setuptools.command.sdist import sdist as _SDistCommand package_name = os.environ.get("GALAXY_NG_ALTERNATE_NAME", "galaxy-ng") -version = "4.4.1" +version = "4.4.2" class PrepareStaticCommand(Command):