Skip to content

Commit afc81fc

Browse files
committed
Release 3.32.3
1 parent 4f2fa34 commit afc81fc

File tree

5 files changed

+20
-11
lines changed

5 files changed

+20
-11
lines changed

CHANGES.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,23 @@
88

99
[//]: # (towncrier release notes start)
1010

11+
## 3.32.3 (2025-10-13) {: #3.32.3 }
12+
13+
#### Bugfixes {: #3.32.3-bugfix }
14+
15+
- Fixed a bug where syncing from a remote repository with duplicate filenames and different paths
16+
would result in one of these packages being missing from a Pulp distribution.
17+
This is known to happen in some JFrog repositories.
18+
19+
On systems that have synced from such repositories before, it is required to clean up the related
20+
packages with orphan cleanup or use the provided "pulpcore-manager rpm-datarepair 4073",
21+
which forces internal objects to use non-ambiguous filenames.
22+
[#4073](https://github.com/pulp/pulp_rpm/issues/4073)
23+
- Fix a bug where the `retain_package_versions` feature (and prune and a few others) was not correctly determining which packages were most recent.
24+
[#4124](https://github.com/pulp/pulp_rpm/issues/4124)
25+
26+
---
27+
1128
## 3.32.2 (2025-09-18) {: #3.32.2 }
1229

1330
#### Bugfixes {: #3.32.2-bugfix }

CHANGES/4073.bugfix

Lines changed: 0 additions & 7 deletions
This file was deleted.

CHANGES/4124.bugfix

Lines changed: 0 additions & 1 deletion
This file was deleted.

pulp_rpm/app/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ class PulpRpmPluginAppConfig(PulpPluginAppConfig):
88

99
name = "pulp_rpm.app"
1010
label = "rpm"
11-
version = "3.32.3.dev"
11+
version = "3.32.3"
1212
python_package_name = "pulp-rpm"
1313
domain_compatible = True

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build-backend = 'setuptools.build_meta'
77

88
[project]
99
name = "pulp-rpm"
10-
version = "3.32.3.dev"
10+
version = "3.32.3"
1111
description = "Pulp plugin to manage RPM repositories"
1212
readme = "README.rst"
1313
authors = [
@@ -99,7 +99,7 @@ exclude = '''
9999
[tool.bumpversion]
100100
# This section is managed by the plugin template. Do not edit manually.
101101

102-
current_version = "3.32.3.dev"
102+
current_version = "3.32.3"
103103
commit = false
104104
tag = false
105105
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<alpha>0a)?(?P<patch>\\d+)(\\.(?P<release>[a-z]+))?"

0 commit comments

Comments
 (0)