Skip to content

Commit

Permalink
bump to 4.8.0 and make changelog (#1886)
Browse files Browse the repository at this point in the history
No-Issue
  • Loading branch information
jerabekjiri authored Sep 13, 2023
1 parent 6120d3f commit 41b114b
Show file tree
Hide file tree
Showing 30 changed files with 48 additions and 29 deletions.
44 changes: 44 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,50 @@ Changelog

.. towncrier release notes start
4.8.0 (2023-09-13)
==================

Features
--------

- Keep a download count for legacy roles.
`AAH-2238 <https://issues.redhat.com/browse/AAH-2238>`_
- Automate the process of updating translation files on a weekly basis.
`AAH-2265 <https://issues.redhat.com/browse/AAH-2265>`_
- Fix publishing collection with ansible-galaxy when content approval si set to false.
`AAH-2328 <https://issues.redhat.com/browse/AAH-2328>`_
- Add an oci-env community profile.
`AAH-2382 <https://issues.redhat.com/browse/AAH-2382>`_


Bugfixes
--------

- Fix container push update permission
`AAH-2327 <https://issues.redhat.com/browse/AAH-2327>`_
- Decrease time for repo move tasks via pulp-ansible 0.17.2 x-repo improvement
`AAH-2364 <https://issues.redhat.com/browse/AAH-2364>`_
- instructions to install legacy roles will now be accurate
`AAH-2383 <https://issues.redhat.com/browse/AAH-2383>`_
- Set the correct pulp_type for the default collection remotes.
`AAH-2385 <https://issues.redhat.com/browse/AAH-2385>`_
- Vendor django-automated-logging to provide Django 4.x compatibility
`AAH-2388 <https://issues.redhat.com/browse/AAH-2388>`_
- Fix bug where namespace logos would fail to download with S3 backends.
`AAH-2575 <https://issues.redhat.com/browse/AAH-2575>`_
- Fix a bug where admin user's cannot cancel tasks.
`AAH-2631 <https://issues.redhat.com/browse/AAH-2631>`_


Misc
----

- `AAH-2078 <https://issues.redhat.com/browse/AAH-2078>`_, `AAH-2125 <https://issues.redhat.com/browse/AAH-2125>`_, `AAH-2151 <https://issues.redhat.com/browse/AAH-2151>`_, `AAH-2213 <https://issues.redhat.com/browse/AAH-2213>`_, `AAH-2341 <https://issues.redhat.com/browse/AAH-2341>`_, `AAH-2343 <https://issues.redhat.com/browse/AAH-2343>`_, `AAH-2362 <https://issues.redhat.com/browse/AAH-2362>`_, `AAH-2393 <https://issues.redhat.com/browse/AAH-2393>`_, `AAH-2409 <https://issues.redhat.com/browse/AAH-2409>`_, `AAH-2415 <https://issues.redhat.com/browse/AAH-2415>`_, `AAH-2419 <https://issues.redhat.com/browse/AAH-2419>`_, `AAH-2442 <https://issues.redhat.com/browse/AAH-2442>`_, `AAH-2615 <https://issues.redhat.com/browse/AAH-2615>`_, `AAH-2654 <https://issues.redhat.com/browse/AAH-2654>`_


----


4.7.0 (2023-04-17)
==================

Expand Down
1 change: 0 additions & 1 deletion CHANGES/2078.misc

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/2125.misc

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/2151.misc

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/2213.misc

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/2238.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/2265.feature

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/2328.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/2341.misc

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/2343.misc

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/2362.misc

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/2382.feature

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/2393.misc

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/2409.misc

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/2415.misc

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/2419.misc

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/2442.misc

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/2615.misc

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/2654.misc

This file was deleted.

2 changes: 1 addition & 1 deletion galaxy_ng/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@

sys.modules.setdefault("automated_logging", automated_logging)

__version__ = "4.8.0dev"
__version__ = "4.8.0"

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.8.0dev"
version = "4.8.0"
python_package_name = "galaxy-ng"

def ready(self):
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.8.0dev
current_version = 4.8.0
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 @@ -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.8.0dev"
version = "4.8.0"


class PrepareStaticCommand(Command):
Expand Down

0 comments on commit 41b114b

Please sign in to comment.