From 162d43389a0cd2f4a7219883ff55cf5374cb049b Mon Sep 17 00:00:00 2001 From: pulpbot Date: Wed, 12 Aug 2026 18:24:44 +0000 Subject: [PATCH] Bump minor version --- .ci/assets/ci_constraints.txt | 4 ++++ .github/workflows/update_ci.yml | 14 +++++++------- CHANGES/+header-too-large.bugfix | 1 - CHANGES/+redis-worker-startup-poll.bugfix | 1 - CHANGES/3322.bugfix | 1 - CHANGES/7479.feature | 1 - CHANGES/7846.bugfix | 1 - CHANGES/7896.bugfix | 1 - CHANGES/7898.bugfix | 1 - CHANGES/7902.bugfix | 1 - CHANGES/7938.bugfix | 1 - pulp_certguard/app/__init__.py | 2 +- pulp_file/app/__init__.py | 2 +- pulpcore/app/apps.py | 2 +- pyproject.toml | 4 ++-- template_config.yml | 5 +---- 16 files changed, 17 insertions(+), 25 deletions(-) delete mode 100644 CHANGES/+header-too-large.bugfix delete mode 100644 CHANGES/+redis-worker-startup-poll.bugfix delete mode 100644 CHANGES/3322.bugfix delete mode 100644 CHANGES/7479.feature delete mode 100644 CHANGES/7846.bugfix delete mode 100644 CHANGES/7896.bugfix delete mode 100644 CHANGES/7898.bugfix delete mode 100644 CHANGES/7902.bugfix delete mode 100644 CHANGES/7938.bugfix diff --git a/.ci/assets/ci_constraints.txt b/.ci/assets/ci_constraints.txt index c9198f19a70..3380502b7b2 100644 --- a/.ci/assets/ci_constraints.txt +++ b/.ci/assets/ci_constraints.txt @@ -17,3 +17,7 @@ azure-storage-blob!=12.28.* pycares<5 # older aiodns versions don't pin pycares UB, and are broken by pycares>=5 + + +pytest-django!=4.13.0 +# This version seems not to not have a proper requirement on Django. diff --git a/.github/workflows/update_ci.yml b/.github/workflows/update_ci.yml index 39716595147..345bc9c9776 100644 --- a/.github/workflows/update_ci.yml +++ b/.github/workflows/update_ci.yml @@ -107,7 +107,7 @@ jobs: with: fetch-depth: 0 path: "pulpcore" - ref: "3.115" + ref: "3.116" - name: "Run update" working-directory: "pulpcore" @@ -116,21 +116,21 @@ jobs: - name: "Create Pull Request for CI files" uses: "peter-evans/create-pull-request@v8" - id: "create_pr_3_115" + id: "create_pr_3_116" with: token: "${{ secrets.RELEASE_TOKEN }}" path: "pulpcore" committer: "pulpbot " author: "pulpbot " - title: "Update CI files for branch 3.115" - branch: "update-ci/3.115" - base: "3.115" + title: "Update CI files for branch 3.116" + branch: "update-ci/3.116" + base: "3.116" delete-branch: true - name: "Mark PR automerge" working-directory: "pulpcore" run: | - gh pr merge --rebase --auto "${{ steps.create_pr_3_115.outputs.pull-request-number }}" - if: "steps.create_pr_3_115.outputs.pull-request-number" + gh pr merge --rebase --auto "${{ steps.create_pr_3_116.outputs.pull-request-number }}" + if: "steps.create_pr_3_116.outputs.pull-request-number" env: GH_TOKEN: "${{ secrets.RELEASE_TOKEN }}" continue-on-error: true diff --git a/CHANGES/+header-too-large.bugfix b/CHANGES/+header-too-large.bugfix deleted file mode 100644 index a5106eec27e..00000000000 --- a/CHANGES/+header-too-large.bugfix +++ /dev/null @@ -1 +0,0 @@ -Increased the content app's maximum HTTP header field size from 8190 to 16384 bytes to support PQC (post-quantum) X.509 certificates forwarded via the `X-CLIENT-CERT` header. diff --git a/CHANGES/+redis-worker-startup-poll.bugfix b/CHANGES/+redis-worker-startup-poll.bugfix deleted file mode 100644 index fe100f6acb1..00000000000 --- a/CHANGES/+redis-worker-startup-poll.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed Redis workers polling the database at the single-worker rate during startup by learning the online worker count before the first heartbeat. diff --git a/CHANGES/3322.bugfix b/CHANGES/3322.bugfix deleted file mode 100644 index a6f1876cf2e..00000000000 --- a/CHANGES/3322.bugfix +++ /dev/null @@ -1 +0,0 @@ -Reduced lock contention for distribution updates that leave `base_path` unchanged. diff --git a/CHANGES/7479.feature b/CHANGES/7479.feature deleted file mode 100644 index 6dab6beeed6..00000000000 --- a/CHANGES/7479.feature +++ /dev/null @@ -1 +0,0 @@ -Added `--backend` option to the `add-signing-service` management command, enabling Sequoia (`sq`) as an alternative to GPG for key management. Use `--backend sq` to register signing services using Sequoia's key store. diff --git a/CHANGES/7846.bugfix b/CHANGES/7846.bugfix deleted file mode 100644 index b71fc47ada2..00000000000 --- a/CHANGES/7846.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix temp file leak in pull-through metadata streaming. diff --git a/CHANGES/7896.bugfix b/CHANGES/7896.bugfix deleted file mode 100644 index a6f1876cf2e..00000000000 --- a/CHANGES/7896.bugfix +++ /dev/null @@ -1 +0,0 @@ -Reduced lock contention for distribution updates that leave `base_path` unchanged. diff --git a/CHANGES/7898.bugfix b/CHANGES/7898.bugfix deleted file mode 100644 index 062082b5134..00000000000 --- a/CHANGES/7898.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed domain list returning all domains to authenticated users instead of only domains they can view. diff --git a/CHANGES/7902.bugfix b/CHANGES/7902.bugfix deleted file mode 100644 index 19a604af84d..00000000000 --- a/CHANGES/7902.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed RedisWorker leaking Redis locks when task acquire, abort, cancel, or immediate dispatch cleanup failed. diff --git a/CHANGES/7938.bugfix b/CHANGES/7938.bugfix deleted file mode 100644 index 53f8e096bbd..00000000000 --- a/CHANGES/7938.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed the `waiting_tasks` metric to count only tasks that can run in parallel under resource locks, matching worker FIFO scheduling. diff --git a/pulp_certguard/app/__init__.py b/pulp_certguard/app/__init__.py index d67442f92c4..3f7f08824d3 100644 --- a/pulp_certguard/app/__init__.py +++ b/pulp_certguard/app/__init__.py @@ -6,6 +6,6 @@ class PulpCertGuardPluginAppConfig(PulpPluginAppConfig): name = "pulp_certguard.app" label = "certguard" - version = "3.116.0.dev" + version = "3.117.0.dev" python_package_name = "pulpcore" domain_compatible = True diff --git a/pulp_file/app/__init__.py b/pulp_file/app/__init__.py index 4696921933a..5abce18f593 100644 --- a/pulp_file/app/__init__.py +++ b/pulp_file/app/__init__.py @@ -8,6 +8,6 @@ class PulpFilePluginAppConfig(PulpPluginAppConfig): name = "pulp_file.app" label = "file" - version = "3.116.0.dev" + version = "3.117.0.dev" python_package_name = "pulpcore" domain_compatible = True diff --git a/pulpcore/app/apps.py b/pulpcore/app/apps.py index 65e08abb019..d90c373b68e 100644 --- a/pulpcore/app/apps.py +++ b/pulpcore/app/apps.py @@ -237,7 +237,7 @@ class PulpAppConfig(PulpPluginAppConfig): label = "core" # The version of this app - version = "3.116.0.dev" + version = "3.117.0.dev" # The python package name providing this app python_package_name = "pulpcore" diff --git a/pyproject.toml b/pyproject.toml index 576b1afbc94..b1900d5e917 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = 'setuptools.build_meta' [project] name = "pulpcore" -version = "3.116.0.dev" +version = "3.117.0.dev" description = "Pulp Django Application and Related Modules" readme = "README.md" authors = [ @@ -207,7 +207,7 @@ ignore = [ [tool.bumpversion] # This section is managed by the plugin template. Do not edit manually. -current_version = "3.116.0.dev" +current_version = "3.117.0.dev" commit = false tag = false parse = "(?P\\d+)\\.(?P\\d+)\\.(?P0a)?(?P\\d+)(\\.(?P[a-z]+))?" diff --git a/template_config.yml b/template_config.yml index ae85df2bdea..2ad8f97e04d 100644 --- a/template_config.yml +++ b/template_config.yml @@ -6,9 +6,6 @@ # After editing this file please always reapply the plugin template before committing any changes. --- -# NOTE: the S3 runner has redis disabled, domains enabled, and hide_guarded_distributions = true -# "weird" test failures unique to that runner may be due to those differences. - check_commit_message: true check_manifest: true check_stray_pulpcore_imports: false @@ -28,7 +25,7 @@ extra_files: - destination: "/etc/nginx/pulp/api_root_rewrite.conf" origin: "pulpcore/pulpcore/tests/functional/assets/api_root_rewrite.conf" github_org: "pulp" -latest_release_branch: "3.115" +latest_release_branch: "3.116" lint_ignore: - "./pulpcore/app/protobuf/*" lint_requirements: true