From 81456da4d0c7747707711b0c5d04597a7b5e7768 Mon Sep 17 00:00:00 2001 From: pulpbot Date: Wed, 22 May 2024 20:03:51 +0000 Subject: [PATCH] Release 3.54.0 --- .bumpversion.cfg | 2 +- CHANGES.rst | 58 ++++++++++++++++++++++++++++++++++ CHANGES/5134.bugfix | 1 - CHANGES/5318.bugfix | 1 - CHANGES/5319.doc | 2 -- CHANGES/5358.bugfix | 1 - CHANGES/5363.bugfix | 2 -- CHANGES/5367.feature | 1 - CHANGES/5378.feature | 2 -- docs/conf.py | 4 +-- pulp_certguard/app/__init__.py | 2 +- pulp_file/app/__init__.py | 2 +- pulpcore/app/apps.py | 2 +- setup.py | 2 +- 14 files changed, 65 insertions(+), 17 deletions(-) delete mode 100644 CHANGES/5134.bugfix delete mode 100644 CHANGES/5318.bugfix delete mode 100644 CHANGES/5319.doc delete mode 100644 CHANGES/5358.bugfix delete mode 100644 CHANGES/5363.bugfix delete mode 100644 CHANGES/5367.feature delete mode 100644 CHANGES/5378.feature diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 2c514ff1ed..bca78221a0 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.54.0.dev +current_version = 3.54.0 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.rst b/CHANGES.rst index e57a585c59..416409af1b 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -13,6 +13,64 @@ Changelog .. towncrier release notes start +3.54.0 (2024-05-22) +=================== +REST API +-------- + +Features +~~~~~~~~ + +- Added search indices to the Task table to speed up task operations. + :github:`5367` +- Added a scheduled version of task purge. + You need to adjust the "TASK_PROTECTION_TIME" setting in order to use it. + :github:`5378` + + +Bugfixes +~~~~~~~~ + +- Renamed ``name`` to ``domain_name`` in the metric's attributes reporting domain's disk usage. + :github:`5134` +- Fixed content directory listing returning 500 in certain scenarios due to missing artifact sizes. + :github:`5318` +- Fixed a bug related to replication of AppStream and BaseOS repositories of CentOS. + :github:`5358` +- Stopped deleting content and artifacts presumably created by later failed or canceled tasks. + Deleting these lies solely in the responsibility of orphan cleanup. + :github:`5363` + + +Improved Documentation +~~~~~~~~~~~~~~~~~~~~~~ + +- Made the complex filtering feature production-ready. This feature supports a special `q` filter + that allows combinations of other filters with `NOT`, `AND` and `OR` operations. + :github:`5319` + + +Plugin API +---------- + +No significant changes. + + +Pulp File +--------- + +No significant changes. + + +Pulp Cert Guard +--------------- + +No significant changes. + + +---- + + 3.53.0 (2024-04-30) =================== REST API diff --git a/CHANGES/5134.bugfix b/CHANGES/5134.bugfix deleted file mode 100644 index bd766a7a7a..0000000000 --- a/CHANGES/5134.bugfix +++ /dev/null @@ -1 +0,0 @@ -Renamed ``name`` to ``domain_name`` in the metric's attributes reporting domain's disk usage. diff --git a/CHANGES/5318.bugfix b/CHANGES/5318.bugfix deleted file mode 100644 index 393578a7a7..0000000000 --- a/CHANGES/5318.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed content directory listing returning 500 in certain scenarios due to missing artifact sizes. diff --git a/CHANGES/5319.doc b/CHANGES/5319.doc deleted file mode 100644 index 8424fb6cab..0000000000 --- a/CHANGES/5319.doc +++ /dev/null @@ -1,2 +0,0 @@ -Made the complex filtering feature production-ready. This feature supports a special `q` filter -that allows combinations of other filters with `NOT`, `AND` and `OR` operations. diff --git a/CHANGES/5358.bugfix b/CHANGES/5358.bugfix deleted file mode 100644 index ad6896f1a5..0000000000 --- a/CHANGES/5358.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed a bug related to replication of AppStream and BaseOS repositories of CentOS. diff --git a/CHANGES/5363.bugfix b/CHANGES/5363.bugfix deleted file mode 100644 index 98e778f3de..0000000000 --- a/CHANGES/5363.bugfix +++ /dev/null @@ -1,2 +0,0 @@ -Stopped deleting content and artifacts presumably created by later failed or canceled tasks. -Deleting these lies solely in the responsibility of orphan cleanup. diff --git a/CHANGES/5367.feature b/CHANGES/5367.feature deleted file mode 100644 index 92cf748f3d..0000000000 --- a/CHANGES/5367.feature +++ /dev/null @@ -1 +0,0 @@ -Added search indices to the Task table to speed up task operations. diff --git a/CHANGES/5378.feature b/CHANGES/5378.feature deleted file mode 100644 index dfa65bd65f..0000000000 --- a/CHANGES/5378.feature +++ /dev/null @@ -1,2 +0,0 @@ -Added a scheduled version of task purge. -You need to adjust the "TASK_PROTECTION_TIME" setting in order to use it. diff --git a/docs/conf.py b/docs/conf.py index 7d5a23a2d8..2a245a0bb4 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -74,9 +74,9 @@ # built documents. # # The short X.Y version. -version = "3.54.0.dev" +version = "3.54.0" # The full version, including alpha/beta/rc tags. -release = "3.54.0.dev" +release = "3.54.0" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pulp_certguard/app/__init__.py b/pulp_certguard/app/__init__.py index 5c9f87cd19..432aed044b 100644 --- a/pulp_certguard/app/__init__.py +++ b/pulp_certguard/app/__init__.py @@ -6,6 +6,6 @@ class PulpCertGuardPluginAppConfig(PulpPluginAppConfig): name = "pulp_certguard.app" label = "certguard" - version = "3.54.0.dev" + version = "3.54.0" python_package_name = "pulpcore" domain_compatible = True diff --git a/pulp_file/app/__init__.py b/pulp_file/app/__init__.py index ef8159892e..f3c9c8c83a 100644 --- a/pulp_file/app/__init__.py +++ b/pulp_file/app/__init__.py @@ -8,6 +8,6 @@ class PulpFilePluginAppConfig(PulpPluginAppConfig): name = "pulp_file.app" label = "file" - version = "3.54.0.dev" + version = "3.54.0" python_package_name = "pulpcore" domain_compatible = True diff --git a/pulpcore/app/apps.py b/pulpcore/app/apps.py index 31cc6034ac..d88b43eccf 100644 --- a/pulpcore/app/apps.py +++ b/pulpcore/app/apps.py @@ -239,7 +239,7 @@ class PulpAppConfig(PulpPluginAppConfig): label = "core" # The version of this app - version = "3.54.0.dev" + version = "3.54.0" # The python package name providing this app python_package_name = "pulpcore" diff --git a/setup.py b/setup.py index 2d64a89888..54d23eae1a 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="pulpcore", - version="3.54.0.dev", + version="3.54.0", description="Pulp Django Application and Related Modules", long_description=long_description, long_description_content_type="text/markdown",