Skip to content

Commit 752f793

Browse files
committed
Release 2.22.5
1 parent e56403f commit 752f793

6 files changed

Lines changed: 15 additions & 6 deletions

File tree

CHANGES.md

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

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

11+
## 2.22.5 (2026-02-24) {: #2.22.5 }
12+
13+
#### Bugfixes {: #2.22.5-bugfix }
14+
15+
- Fixed the status code on successful ``PATCH`` on blob partial updates to be ``202``
16+
as requested by the OCI spec.
17+
[#2199](https://github.com/pulp/pulp_container/issues/2199)
18+
- Made ``plaform`` optional for ``manifests`` in the JSON schema for ``vnd.oci.image.index.v1+json``.
19+
[#2200](https://github.com/pulp/pulp_container/issues/2200)
20+
21+
---
22+
1123
## 2.22.4 (2026-02-11) {: #2.22.4 }
1224

1325
#### Bugfixes {: #2.22.4-bugfix }

CHANGES/2199.bugfix

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

CHANGES/2200.bugfix

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

pulp_container/app/__init__.py

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

77
name = "pulp_container.app"
88
label = "container"
9-
version = "2.22.5.dev"
9+
version = "2.22.5"
1010
python_package_name = "pulp-container"
1111

1212
def ready(self):

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ ignore = [
5555
[tool.bumpversion]
5656
# This section is managed by the plugin template. Do not edit manually.
5757

58-
current_version = "2.22.5.dev"
58+
current_version = "2.22.5"
5959
commit = false
6060
tag = false
6161
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<alpha>0a)?(?P<patch>\\d+)(\\.(?P<release>[a-z]+))?"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name="pulp-container",
13-
version="2.22.5.dev",
13+
version="2.22.5",
1414
description="Container plugin for the Pulp Project",
1515
long_description=long_description,
1616
license="GPLv2+",

0 commit comments

Comments
 (0)