From f5c36e8b7330b1487728e6c27d72895cb4a2155f Mon Sep 17 00:00:00 2001 From: pulpbot Date: Mon, 6 May 2024 13:30:32 +0000 Subject: [PATCH] Release 2.20.0 --- .bumpversion.cfg | 2 +- CHANGES.rst | 43 ++++++++++++++++++++++++++++++++++ CHANGES/+docs-ci.misc | 1 - CHANGES/1288.feature | 3 --- CHANGES/1537.removal | 1 - CHANGES/1561.bugfix | 1 - CHANGES/1573.bugfix | 1 - CHANGES/1575.bugfix | 1 - CHANGES/1577.bugfix | 1 - CHANGES/1605.bugfix | 2 -- docs/conf.py | 4 ++-- pulp_container/app/__init__.py | 2 +- setup.py | 2 +- 13 files changed, 48 insertions(+), 16 deletions(-) delete mode 100644 CHANGES/+docs-ci.misc delete mode 100644 CHANGES/1288.feature delete mode 100644 CHANGES/1537.removal delete mode 100644 CHANGES/1561.bugfix delete mode 100644 CHANGES/1573.bugfix delete mode 100644 CHANGES/1575.bugfix delete mode 100644 CHANGES/1577.bugfix delete mode 100644 CHANGES/1605.bugfix diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 69c616099..2e1be5478 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.20.0.dev +current_version = 2.20.0 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.rst b/CHANGES.rst index 399e2bb71..01df75081 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -13,6 +13,49 @@ Changelog .. towncrier release notes start +2.20.0 (2024-05-06) +=================== + +Features +-------- + +- Updated the Manifest model to no longer rely on artifacts, storing all manifest data internally + within the database. This change dissociates the manifest from external files on the storage + backend. + `#1288 `__ + + +Bugfixes +-------- + +- Resolved circular import errors raised when using pulp-container as a library. + `#1561 `__ +- Fixed hande-image-data command to skip content that has labels/annotations already populated. + `#1573 `__ +- Fixed handle-image-data command to update all entries in one run. + `#1575 `__ +- Fixed a bug that disallowed users from leveraging the remote authentication. + `#1577 `__ +- Fixed a bug that caused the registry to not accept requests from anonymous users when token + authentication was disabled. + `#1605 `__ + + +Deprecations and Removals +------------------------- + +- Removed the deprecated `ADDITIONAL_OCI_ARTIFACT_TYPES` setting. + `#1537 `__ + + +Misc +---- + +- + + +---- + 2.19.3 (2024-04-23) =================== diff --git a/CHANGES/+docs-ci.misc b/CHANGES/+docs-ci.misc deleted file mode 100644 index 91a157185..000000000 --- a/CHANGES/+docs-ci.misc +++ /dev/null @@ -1 +0,0 @@ -Added the Unified Docs CI build-check on PRs. diff --git a/CHANGES/1288.feature b/CHANGES/1288.feature deleted file mode 100644 index c92347bf7..000000000 --- a/CHANGES/1288.feature +++ /dev/null @@ -1,3 +0,0 @@ -Updated the Manifest model to no longer rely on artifacts, storing all manifest data internally -within the database. This change dissociates the manifest from external files on the storage -backend. diff --git a/CHANGES/1537.removal b/CHANGES/1537.removal deleted file mode 100644 index 8b5118ed8..000000000 --- a/CHANGES/1537.removal +++ /dev/null @@ -1 +0,0 @@ -Removed the deprecated `ADDITIONAL_OCI_ARTIFACT_TYPES` setting. diff --git a/CHANGES/1561.bugfix b/CHANGES/1561.bugfix deleted file mode 100644 index f27cc207e..000000000 --- a/CHANGES/1561.bugfix +++ /dev/null @@ -1 +0,0 @@ -Resolved circular import errors raised when using pulp-container as a library. diff --git a/CHANGES/1573.bugfix b/CHANGES/1573.bugfix deleted file mode 100644 index 5fda354f0..000000000 --- a/CHANGES/1573.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed hande-image-data command to skip content that has labels/annotations already populated. diff --git a/CHANGES/1575.bugfix b/CHANGES/1575.bugfix deleted file mode 100644 index 15e1bc985..000000000 --- a/CHANGES/1575.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed handle-image-data command to update all entries in one run. diff --git a/CHANGES/1577.bugfix b/CHANGES/1577.bugfix deleted file mode 100644 index effd11439..000000000 --- a/CHANGES/1577.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed a bug that disallowed users from leveraging the remote authentication. diff --git a/CHANGES/1605.bugfix b/CHANGES/1605.bugfix deleted file mode 100644 index 564466c4f..000000000 --- a/CHANGES/1605.bugfix +++ /dev/null @@ -1,2 +0,0 @@ -Fixed a bug that caused the registry to not accept requests from anonymous users when token -authentication was disabled. diff --git a/docs/conf.py b/docs/conf.py index 0a6b49f43..c5f2075ea 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -73,9 +73,9 @@ # built documents. # # The short X.Y version. -version = "2.20.0.dev" +version = "2.20.0" # The full version, including alpha/beta/rc tags. -release = "2.20.0.dev" +release = "2.20.0" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pulp_container/app/__init__.py b/pulp_container/app/__init__.py index 16ee11ba4..d984ea31d 100644 --- a/pulp_container/app/__init__.py +++ b/pulp_container/app/__init__.py @@ -6,7 +6,7 @@ class PulpContainerPluginAppConfig(PulpPluginAppConfig): name = "pulp_container.app" label = "container" - version = "2.20.0.dev" + version = "2.20.0" python_package_name = "pulp-container" def ready(self): diff --git a/setup.py b/setup.py index 271966368..89ce8956b 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="pulp-container", - version="2.20.0.dev", + version="2.20.0", description="Container plugin for the Pulp Project", long_description=long_description, license="GPLv2+",