From 570950de0aa6c262e99b33792913a706a671fc5c Mon Sep 17 00:00:00 2001 From: pulpbot Date: Wed, 30 Oct 2024 15:46:51 +0000 Subject: [PATCH] Release 3.63.1 --- .bumpversion.cfg | 2 +- CHANGES.md | 25 +++++++++++++++++++++++++ CHANGES/+fix-any-type.bugfix | 2 -- CHANGES/5934.bugfix | 1 - pulp_certguard/app/__init__.py | 2 +- pulp_file/app/__init__.py | 2 +- pulpcore/app/apps.py | 2 +- setup.py | 2 +- 8 files changed, 30 insertions(+), 8 deletions(-) delete mode 100644 CHANGES/+fix-any-type.bugfix delete mode 100644 CHANGES/5934.bugfix diff --git a/.bumpversion.cfg b/.bumpversion.cfg index f40e0f428f..df3c5a0e1e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.63.1.dev +current_version = 3.63.1 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.md b/CHANGES.md index 01d3d68b79..e5e88b3353 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,31 @@ [//]: # (towncrier release notes start) +## 3.63.1 (2024-10-30) {: #3.63.1 } + +### REST API {: #3.63.1-rest-api } + +#### Bugfixes {: #3.63.1-rest-api-bugfix } + +- Fixed repository modify allowing content from separate domains. + [#5934](https://github.com/pulp/pulpcore/issues/5934) +- Fixed the JSONField specification so it doesn't break ruby bindings. + See context [here](https://github.com/pulp/pulp_rpm/issues/3639). + +### Plugin API {: #3.63.1-plugin-api } + +No significant changes. + +### Pulp File {: #3.63.1-pulp-file } + +No significant changes. + +### Pulp Cert Guard {: #3.63.1-pulp-cert-guard } + +No significant changes. + +--- + ## 3.63.0 (2024-10-01) {: #3.63.0 } ### REST API {: #3.63.0-rest-api } diff --git a/CHANGES/+fix-any-type.bugfix b/CHANGES/+fix-any-type.bugfix deleted file mode 100644 index 89ea25f511..0000000000 --- a/CHANGES/+fix-any-type.bugfix +++ /dev/null @@ -1,2 +0,0 @@ -Fixed the JSONField specification so it doesn't break ruby bindings. -See context [here](https://github.com/pulp/pulp_rpm/issues/3639). diff --git a/CHANGES/5934.bugfix b/CHANGES/5934.bugfix deleted file mode 100644 index 3c71e491de..0000000000 --- a/CHANGES/5934.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed repository modify allowing content from separate domains. diff --git a/pulp_certguard/app/__init__.py b/pulp_certguard/app/__init__.py index 30f909d77e..30a5b8b1fe 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.63.1.dev" + version = "3.63.1" python_package_name = "pulpcore" domain_compatible = True diff --git a/pulp_file/app/__init__.py b/pulp_file/app/__init__.py index 096c83f725..4b3b4e4c9b 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.63.1.dev" + version = "3.63.1" python_package_name = "pulpcore" domain_compatible = True diff --git a/pulpcore/app/apps.py b/pulpcore/app/apps.py index 338a2072f1..26c4695886 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.63.1.dev" + version = "3.63.1" # The python package name providing this app python_package_name = "pulpcore" diff --git a/setup.py b/setup.py index 01a7d0544f..095285ee3d 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="pulpcore", - version="3.63.1.dev", + version="3.63.1", description="Pulp Django Application and Related Modules", long_description=long_description, long_description_content_type="text/markdown",