From c29156661fc8739a2e7b073102d55f8d23777d99 Mon Sep 17 00:00:00 2001 From: pulpbot Date: Sat, 10 Aug 2024 11:37:55 +0000 Subject: [PATCH] Release 3.57.1 --- .bumpversion.cfg | 2 +- CHANGES.md | 24 ++++++++++++++++++++++++ CHANGES/5683.bugfix | 2 -- pulp_certguard/app/__init__.py | 2 +- pulp_file/app/__init__.py | 2 +- pulpcore/app/apps.py | 2 +- setup.py | 2 +- 7 files changed, 29 insertions(+), 7 deletions(-) delete mode 100644 CHANGES/5683.bugfix diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 4872845124..0935f5a4ca 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.57.1.dev +current_version = 3.57.1 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.md b/CHANGES.md index 52bc7f4611..1c63bd3d15 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,30 @@ [//]: # (towncrier release notes start) +# ## 3.57.1 (2024-08-10) {: #3.57.1 } + +### REST API {: #3.57.1-rest-api } + +#### Bugfixes {: #3.57.1-rest-api-bugfix } + +- Fixed RBAC permissions being incorrectly assigned in tasks that create objects. + https://access.redhat.com/security/cve/cve-2024-7143 + [#5683](https://github.com/pulp/pulpcore/issues/5683) + +### Plugin API {: #3.57.1-plugin-api } + +No significant changes. + +### Pulp File {: #3.57.1-pulp-file } + +No significant changes. + +### Pulp Cert Guard {: #3.57.1-pulp-cert-guard } + +No significant changes. + +--- + # ## 3.57.0 (2024-08-07) {: #3.57.0 } ### REST API {: #3.57.0-rest-api } diff --git a/CHANGES/5683.bugfix b/CHANGES/5683.bugfix deleted file mode 100644 index 2c6727928c..0000000000 --- a/CHANGES/5683.bugfix +++ /dev/null @@ -1,2 +0,0 @@ -Fixed RBAC permissions being incorrectly assigned in tasks that create objects. -https://access.redhat.com/security/cve/cve-2024-7143 diff --git a/pulp_certguard/app/__init__.py b/pulp_certguard/app/__init__.py index 1ef6a4693b..4dd099585f 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.57.1.dev" + version = "3.57.1" python_package_name = "pulpcore" domain_compatible = True diff --git a/pulp_file/app/__init__.py b/pulp_file/app/__init__.py index ec76e5dbd8..9b856ffc8b 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.57.1.dev" + version = "3.57.1" python_package_name = "pulpcore" domain_compatible = True diff --git a/pulpcore/app/apps.py b/pulpcore/app/apps.py index 139d253ca4..80a6f41b69 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.57.1.dev" + version = "3.57.1" # The python package name providing this app python_package_name = "pulpcore" diff --git a/setup.py b/setup.py index 3424e92aee..6bd0428e8a 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="pulpcore", - version="3.57.1.dev", + version="3.57.1", description="Pulp Django Application and Related Modules", long_description=long_description, long_description_content_type="text/markdown",