Skip to content

Commit 919d4a1

Browse files
committed
Release 3.92.0
1 parent 48dc21d commit 919d4a1

File tree

8 files changed

+37
-11
lines changed

8 files changed

+37
-11
lines changed

CHANGES.md

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

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

11+
## 3.92.0 (2025-10-28) {: #3.92.0 }
12+
13+
### REST API {: #3.92.0-rest-api }
14+
15+
#### Features {: #3.92.0-rest-api-feature }
16+
17+
- Add MAX_CONCURRENT_CONTENT as a global setting.
18+
During sync, this setting will be used to determine the size of batch of
19+
content being processed in one go. Default value is 200.
20+
[#7024](https://github.com/pulp/pulpcore/issues/7024)
21+
22+
#### Bugfixes {: #3.92.0-rest-api-bugfix }
23+
24+
- Modified the error response ("AttributeError: This QueryDict instance is immutable") raised when a
25+
file didn't upload properly or was incomplete.
26+
[#6993](https://github.com/pulp/pulpcore/issues/6993)
27+
- Fixed immediate tasks from the content app getting stuck in waiting.
28+
29+
### Plugin API {: #3.92.0-plugin-api }
30+
31+
No significant changes.
32+
33+
### Pulp File {: #3.92.0-pulp-file }
34+
35+
No significant changes.
36+
37+
### Pulp Cert Guard {: #3.92.0-pulp-cert-guard }
38+
39+
No significant changes.
40+
41+
---
42+
1143
## 3.91.1 (2025-10-07) {: #3.91.1 }
1244

1345
### REST API {: #3.91.1-rest-api }

CHANGES/+content-immediate-task.bugfix

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

CHANGES/6993.bugfix

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

CHANGES/7024.feature

Lines changed: 0 additions & 3 deletions
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.92.0.dev"
9+
version = "3.92.0"
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.92.0.dev"
11+
version = "3.92.0"
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
@@ -239,7 +239,7 @@ class PulpAppConfig(PulpPluginAppConfig):
239239
label = "core"
240240

241241
# The version of this app
242-
version = "3.92.0.dev"
242+
version = "3.92.0"
243243

244244
# The python package name providing this app
245245
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.92.0.dev"
10+
version = "3.92.0"
1111
description = "Pulp Django Application and Related Modules"
1212
readme = "README.md"
1313
authors = [
@@ -204,7 +204,7 @@ ignore = [
204204
[tool.bumpversion]
205205
# This section is managed by the plugin template. Do not edit manually.
206206

207-
current_version = "3.92.0.dev"
207+
current_version = "3.92.0"
208208
commit = false
209209
tag = false
210210
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<alpha>0a)?(?P<patch>\\d+)(\\.(?P<release>[a-z]+))?"

0 commit comments

Comments
 (0)