From 8e4b82d23566367318c93c0fa5d7b5a8e4429260 Mon Sep 17 00:00:00 2001 From: pulpbot Date: Wed, 2 Oct 2024 13:32:23 +0000 Subject: [PATCH] Release 3.4.0 --- .bumpversion.cfg | 2 +- CHANGES.md | 23 +++++++++++++++++++++++ CHANGES/1059.feature | 1 - CHANGES/1115.misc | 1 - CHANGES/1122.bugfix | 1 - CHANGES/1147.feature | 1 - CHANGES/1148.feature | 1 - pulp_deb/app/__init__.py | 2 +- setup.py | 2 +- 9 files changed, 26 insertions(+), 8 deletions(-) delete mode 100644 CHANGES/1059.feature delete mode 100644 CHANGES/1115.misc delete mode 100644 CHANGES/1122.bugfix delete mode 100644 CHANGES/1147.feature delete mode 100644 CHANGES/1148.feature diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 50bac224..5cca13d7 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.4.0.dev +current_version = 3.4.0 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.md b/CHANGES.md index d95e418f..bf56d808 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,29 @@ [//]: # (towncrier release notes start) +## 3.4.0 (2024-10-02) {: #3.4.0 } + +#### Features {: #3.4.0-feature } + +- Extend publishing at by-hash paths to source files. + [#1059](https://github.com/pulp/pulp_deb/issues/1059) +- Improved performance when creating publications, by creating PublishedArtifacts in bulk, greatly reducing the number of database calls. + [#1147](https://github.com/pulp/pulp_deb/issues/1147) +- Improved performance by prefetching relevant Artifacts and RemoteArtifacts during publishing, reducing the number of database calls. + [#1148](https://github.com/pulp/pulp_deb/issues/1148) + +#### Bugfixes {: #3.4.0-bugfix } + +- Fixed throwing the wrong error when pointing to an invalid repository with a custom signing service. + [#1122](https://github.com/pulp/pulp_deb/issues/1122) + +#### Misc {: #3.4.0-misc } + +- Improved the publish task performance by optimizing the database queries used in that task. + [#1115](https://github.com/pulp/pulp_deb/issues/1115) + +--- + ## 3.3.1 (2024-08-06) {: #3.3.1 } #### Bugfixes {: #3.3.1-bugfix } diff --git a/CHANGES/1059.feature b/CHANGES/1059.feature deleted file mode 100644 index b9da22a8..00000000 --- a/CHANGES/1059.feature +++ /dev/null @@ -1 +0,0 @@ -Extend publishing at by-hash paths to source files. diff --git a/CHANGES/1115.misc b/CHANGES/1115.misc deleted file mode 100644 index a4626abc..00000000 --- a/CHANGES/1115.misc +++ /dev/null @@ -1 +0,0 @@ -Improved the publish task performance by optimizing the database queries used in that task. diff --git a/CHANGES/1122.bugfix b/CHANGES/1122.bugfix deleted file mode 100644 index 029e0203..00000000 --- a/CHANGES/1122.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed throwing the wrong error when pointing to an invalid repository with a custom signing service. diff --git a/CHANGES/1147.feature b/CHANGES/1147.feature deleted file mode 100644 index 60007ac2..00000000 --- a/CHANGES/1147.feature +++ /dev/null @@ -1 +0,0 @@ -Improved performance when creating publications, by creating PublishedArtifacts in bulk, greatly reducing the number of database calls. diff --git a/CHANGES/1148.feature b/CHANGES/1148.feature deleted file mode 100644 index e0461506..00000000 --- a/CHANGES/1148.feature +++ /dev/null @@ -1 +0,0 @@ -Improved performance by prefetching relevant Artifacts and RemoteArtifacts during publishing, reducing the number of database calls. diff --git a/pulp_deb/app/__init__.py b/pulp_deb/app/__init__.py index 04604fa3..b8010697 100644 --- a/pulp_deb/app/__init__.py +++ b/pulp_deb/app/__init__.py @@ -6,5 +6,5 @@ class PulpDebPluginAppConfig(PulpPluginAppConfig): name = "pulp_deb.app" label = "deb" - version = "3.4.0.dev" + version = "3.4.0" python_package_name = "pulp_deb" diff --git a/setup.py b/setup.py index 76b97871..401ddb93 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-deb", - version="3.4.0.dev", + version="3.4.0", description="pulp-deb plugin for the Pulp Project", long_description=long_description, long_description_content_type="text/markdown",