Skip to content

Commit

Permalink
Release 4.4.2 (#1149)
Browse files Browse the repository at this point in the history
No-Issue
  • Loading branch information
himdel authored Mar 1, 2022
1 parent e2b3b3f commit ca2d23c
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 8 deletions.
17 changes: 17 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://issues.redhat.com/browse/AAH-1018>`_
- Update pulpcore to 3.15.4 to pickup CDN related fixes
`AAH-1202 <https://issues.redhat.com/browse/AAH-1202>`_
- Update pulp_ansible to 0.10.2 to pickup proxy authentication fix.
`AAH-1243 <https://issues.redhat.com/browse/AAH-1243>`_
- Add missing proxy_password if field is set on CollectionRemote update
`AAH-1254 <https://issues.redhat.com/browse/AAH-1254>`_


----


4.4.1 (2022-01-06)
Bugfixes
--------
Expand Down
1 change: 0 additions & 1 deletion CHANGES/1018.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1202.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1243.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1254.bugfix

This file was deleted.

2 changes: 1 addition & 1 deletion galaxy_ng/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "4.4.1"
__version__ = "4.4.2"

default_app_config = "galaxy_ng.app.PulpGalaxyPluginAppConfig"
2 changes: 1 addition & 1 deletion galaxy_ng/app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 4.4.1
current_version = 4.4.2
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+))?((?P<build>\d+))?
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit ca2d23c

Please sign in to comment.