Skip to content

Commit 3df12ed

Browse files
committed
Release 3.73.37
1 parent ea57a04 commit 3df12ed

6 files changed

Lines changed: 27 additions & 6 deletions

File tree

CHANGES.md

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

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

11+
## 3.73.37 (2026-06-09) {: #3.73.37 }
12+
13+
### REST API {: #3.73.37-rest-api }
14+
15+
#### Bugfixes {: #3.73.37-rest-api-bugfix }
16+
17+
- Fixed `adjust_roles` to use `update_or_create` instead of `get_or_create` when populating locked roles, so that a pre-existing role with `locked=False` is updated rather than causing a duplicate key error.
18+
19+
### Plugin API {: #3.73.37-plugin-api }
20+
21+
No significant changes.
22+
23+
### Pulp File {: #3.73.37-pulp-file }
24+
25+
No significant changes.
26+
27+
### Pulp Cert Guard {: #3.73.37-pulp-cert-guard }
28+
29+
No significant changes.
30+
31+
---
32+
1133
## 3.73.36 (2026-06-03) {: #3.73.36 }
1234

1335
### REST API {: #3.73.36-rest-api }

CHANGES/+fix-role-race-condition.bugfix

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

pulp_certguard/app/__init__.py

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

77
name = "pulp_certguard.app"
88
label = "certguard"
9-
version = "3.73.37.dev"
9+
version = "3.73.37"
1010
python_package_name = "pulpcore"
1111
domain_compatible = True

pulp_file/app/__init__.py

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

99
name = "pulp_file.app"
1010
label = "file"
11-
version = "3.73.37.dev"
11+
version = "3.73.37"
1212
python_package_name = "pulpcore"
1313
domain_compatible = True

pulpcore/app/apps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ class PulpAppConfig(PulpPluginAppConfig):
245245
label = "core"
246246

247247
# The version of this app
248-
version = "3.73.37.dev"
248+
version = "3.73.37"
249249

250250
# The python package name providing this app
251251
python_package_name = "pulpcore"

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 = "pulpcore"
10-
version = "3.73.37.dev"
10+
version = "3.73.37"
1111
description = "Pulp Django Application and Related Modules"
1212
readme = "README.md"
1313
authors = [
@@ -210,7 +210,7 @@ ignore = [
210210
[tool.bumpversion]
211211
# This section is managed by the plugin template. Do not edit manually.
212212

213-
current_version = "3.73.37.dev"
213+
current_version = "3.73.37"
214214
commit = false
215215
tag = false
216216
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<alpha>0a)?(?P<patch>\\d+)(\\.(?P<release>[a-z]+))?"

0 commit comments

Comments
 (0)