Skip to content

Commit

Permalink
Release 2.22.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pulpbot committed Nov 1, 2024
1 parent 73b234b commit 631d28d
Show file tree
Hide file tree
Showing 13 changed files with 38 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.22.0.dev
current_version = 2.22.0
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+))?
Expand Down
35 changes: 35 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,41 @@

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

## 2.22.0 (2024-11-01) {: #2.22.0 }

#### Features {: #2.22.0-feature }

- The `build_image` endpoint has been refactored to accept `build_context`
(i.e., a file repository version) instead of raw artifacts. The same applies to Containerfile."
[#479](https://github.com/pulp/pulp_container/issues/479)
- Introduced the `type` field on the Manifests endpoint to enable easier differentiation of image
types.
[#1751](https://github.com/pulp/pulp_container/issues/1751)
- Added `architecture`, `os`, and `compressed_image_size` fields to Manifest.
[#1767](https://github.com/pulp/pulp_container/issues/1767)

#### Bugfixes {: #2.22.0-bugfix }

- Resolved an issue with the pull-through cache that was causing errors when retrieving v2 schema 1
manifests.
[#1700](https://github.com/pulp/pulp_container/issues/1700)
- Fixed an issue causing an HTTP 500 error when a GET request for a non-existing
blob was made to a distribution with only a `repository_version` set.
[#1703](https://github.com/pulp/pulp_container/issues/1703)
- Fixed an HTTP 500 error returned when pushing an image with the same name as the name of an existing
read-only repository.
[#1712](https://github.com/pulp/pulp_container/issues/1712)
- Resolved an issue with syncing content causing errors when retrieving manifests without a mediaType
definition.
[#1746](https://github.com/pulp/pulp_container/issues/1746)
- Resolved an issue where syncing filtered content with a `cosign` signature from a remote source lacking `Sigstore`,
and with `signed_only: true` enabled, could occasionally fail.
[#1759](https://github.com/pulp/pulp_container/issues/1759)
- Fixed the JSONField specification so it doesn't break ruby bindings.
See context [here](https://github.com/pulp/pulp_rpm/issues/3639).

---

## 2.21.1 (2024-10-25) {: #2.21.1 }

#### Bugfixes {: #2.21.1-bugfix }
Expand Down
2 changes: 0 additions & 2 deletions CHANGES/+fix-any-type.bugfix

This file was deleted.

2 changes: 0 additions & 2 deletions CHANGES/1700.bugfix

This file was deleted.

2 changes: 0 additions & 2 deletions CHANGES/1703.bugfix

This file was deleted.

2 changes: 0 additions & 2 deletions CHANGES/1712.bugfix

This file was deleted.

2 changes: 0 additions & 2 deletions CHANGES/1746.bugfix

This file was deleted.

2 changes: 0 additions & 2 deletions CHANGES/1751.feature

This file was deleted.

2 changes: 0 additions & 2 deletions CHANGES/1759.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1767.feature

This file was deleted.

2 changes: 0 additions & 2 deletions CHANGES/479.feature

This file was deleted.

2 changes: 1 addition & 1 deletion pulp_container/app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class PulpContainerPluginAppConfig(PulpPluginAppConfig):

name = "pulp_container.app"
label = "container"
version = "2.22.0.dev"
version = "2.22.0"
python_package_name = "pulp-container"

def ready(self):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name="pulp-container",
version="2.22.0.dev",
version="2.22.0",
description="Container plugin for the Pulp Project",
long_description=long_description,
license="GPLv2+",
Expand Down

0 comments on commit 631d28d

Please sign in to comment.