From b559323fc9b5fd94f94232570627daea6322bdee Mon Sep 17 00:00:00 2001 From: pulpbot Date: Thu, 3 Oct 2024 15:37:17 +0000 Subject: [PATCH] Release 3.64.0 --- .bumpversion.cfg | 2 +- CHANGES.md | 30 ++++++++++++++++++++++++++++++ CHANGES/5817.bugfix | 1 - CHANGES/5833.feature | 1 - CHANGES/5844.feature | 1 - pulp_certguard/app/__init__.py | 2 +- pulp_file/app/__init__.py | 2 +- pulpcore/app/apps.py | 2 +- setup.py | 2 +- 9 files changed, 35 insertions(+), 8 deletions(-) delete mode 100644 CHANGES/5817.bugfix delete mode 100644 CHANGES/5833.feature delete mode 100644 CHANGES/5844.feature diff --git a/.bumpversion.cfg b/.bumpversion.cfg index f7d44aa7c9..47e5e9676a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.64.0.dev +current_version = 3.64.0 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.md b/CHANGES.md index f23728dea5..c2cbd91213 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,36 @@ [//]: # (towncrier release notes start) +## 3.64.0 (2024-10-03) {: #3.64.0 } + +### REST API {: #3.64.0-rest-api } + +#### Features {: #3.64.0-rest-api-feature } + +- Started using an upstream version of the OpenTelemetry aiohttp server instrumentation. + [#5833](https://github.com/pulp/pulpcore/issues/5833) +- Included the worker's name in the ``http.server.duration`` OpenTelemetry metric attributes. + [#5844](https://github.com/pulp/pulpcore/issues/5844) + +#### Bugfixes {: #3.64.0-rest-api-bugfix } + +- Started collecting artifact size metrics even after caching the served content. + [#5817](https://github.com/pulp/pulpcore/issues/5817) + +### Plugin API {: #3.64.0-plugin-api } + +No significant changes. + +### Pulp File {: #3.64.0-pulp-file } + +No significant changes. + +### Pulp Cert Guard {: #3.64.0-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/5817.bugfix b/CHANGES/5817.bugfix deleted file mode 100644 index d313546db7..0000000000 --- a/CHANGES/5817.bugfix +++ /dev/null @@ -1 +0,0 @@ -Started collecting artifact size metrics even after caching the served content. diff --git a/CHANGES/5833.feature b/CHANGES/5833.feature deleted file mode 100644 index ae5175a505..0000000000 --- a/CHANGES/5833.feature +++ /dev/null @@ -1 +0,0 @@ -Started using an upstream version of the OpenTelemetry aiohttp server instrumentation. diff --git a/CHANGES/5844.feature b/CHANGES/5844.feature deleted file mode 100644 index 0585747f54..0000000000 --- a/CHANGES/5844.feature +++ /dev/null @@ -1 +0,0 @@ -Included the worker's name in the ``http.server.duration`` OpenTelemetry metric attributes. diff --git a/pulp_certguard/app/__init__.py b/pulp_certguard/app/__init__.py index 83e73e078c..7ad187c57d 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.64.0.dev" + version = "3.64.0" python_package_name = "pulpcore" domain_compatible = True diff --git a/pulp_file/app/__init__.py b/pulp_file/app/__init__.py index 4dd855b765..eef3fd611b 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.64.0.dev" + version = "3.64.0" python_package_name = "pulpcore" domain_compatible = True diff --git a/pulpcore/app/apps.py b/pulpcore/app/apps.py index 11acfd7cd2..697177350a 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.64.0.dev" + version = "3.64.0" # The python package name providing this app python_package_name = "pulpcore" diff --git a/setup.py b/setup.py index 9448e97b97..a69f829098 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="pulpcore", - version="3.64.0.dev", + version="3.64.0", description="Pulp Django Application and Related Modules", long_description=long_description, long_description_content_type="text/markdown",