Skip to content

Commit

Permalink
Release 2.19.4
Browse files Browse the repository at this point in the history
  • Loading branch information
pulpbot committed Jan 7, 2025
1 parent 1bda5e9 commit c912ae2
Show file tree
Hide file tree
Showing 11 changed files with 30 additions and 14 deletions.
27 changes: 27 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,34 @@
[//]: # (fix problems like typo corrections or such.)
[//]: # (To add a new change log entry, please see the contributing docs.)
[//]: # (WARNING: Don't drop the towncrier directive!)

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

## 2.19.4 (2025-01-07) {: #2.19.4 }

#### Bugfixes {: #2.19.4-bugfix }

- Added ``application/vnd.docker.distribution.manifest.v1+prettyjws`` to the list of accepted
media types retrieved from a remote registry.
[#1444](https://github.com/pulp/pulp_container/issues/1444)
- Fixed sync failure due to ignored certs during registry signature extentions API check.
[#1552](https://github.com/pulp/pulp_container/issues/1552)
- Fixed a bug that disallowed users from leveraging the remote authentication.
[#1577](https://github.com/pulp/pulp_container/issues/1577)
- Fixed a bug that caused the registry to not accept requests from anonymous users when token
authentication was disabled.
[#1605](https://github.com/pulp/pulp_container/issues/1605)
- Fixed the long accept header limit exceed during sync.
[#1696](https://github.com/pulp/pulp_container/issues/1696)
- Fixed a bug where the authentication scheme in the authorization header
was not being parsed correctly.
[#1812](https://github.com/pulp/pulp_container/issues/1812)
- Fixed an issue in `DOCKER_MANIFEST_V1_SCHEMA` definition where the optional `jwk` header parameter
was defined as required.
[#1874](https://github.com/pulp/pulp_container/issues/1874)

---

## 2.19.3 (2024-04-23) {: #2.19.3 }

### Bugfixes
Expand Down
2 changes: 0 additions & 2 deletions CHANGES/1444.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1552.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1577.bugfix

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1696.bugfix

This file was deleted.

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

This file was deleted.

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

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.19.4.dev"
version = "2.19.4"
python_package_name = "pulp-container"

def ready(self):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ ignore = [
[tool.bumpversion]
# This section is managed by the plugin template. Do not edit manually.

current_version = "2.19.4.dev"
current_version = "2.19.4"
commit = false
tag = false
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<alpha>0a)?(?P<patch>\\d+)(\\.(?P<release>[a-z]+))?"
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.19.4.dev",
version="2.19.4",
description="Container plugin for the Pulp Project",
long_description=long_description,
license="GPLv2+",
Expand Down

0 comments on commit c912ae2

Please sign in to comment.