From 63fd5ee7256801e69a30b897bde5a78bbd1018a6 Mon Sep 17 00:00:00 2001 From: pulpbot Date: Wed, 9 Sep 2026 15:11:15 +0000 Subject: [PATCH] Bump minor version --- .github/workflows/update_ci.yml | 14 +++++++------- CHANGES/+fix-copy-api-postgres-param-limit.bugfix | 1 - CHANGES/+no-arch-all-validation.removal | 2 -- CHANGES/1490.bugfix | 1 - CHANGES/1491.feature | 4 ---- CHANGES/1493.bugfix | 1 - CHANGES/1497.feature | 1 - CHANGES/1504.feature | 1 - pulp_deb/app/__init__.py | 2 +- pyproject.toml | 4 ++-- template_config.yml | 2 +- 11 files changed, 11 insertions(+), 22 deletions(-) delete mode 100644 CHANGES/+fix-copy-api-postgres-param-limit.bugfix delete mode 100644 CHANGES/+no-arch-all-validation.removal delete mode 100644 CHANGES/1490.bugfix delete mode 100644 CHANGES/1491.feature delete mode 100644 CHANGES/1493.bugfix delete mode 100644 CHANGES/1497.feature delete mode 100644 CHANGES/1504.feature diff --git a/.github/workflows/update_ci.yml b/.github/workflows/update_ci.yml index ab0ed4c90..c88c7dc14 100644 --- a/.github/workflows/update_ci.yml +++ b/.github/workflows/update_ci.yml @@ -83,7 +83,7 @@ jobs: with: fetch-depth: 0 path: "pulp_deb" - ref: "3.10" + ref: "3.11" - name: "Run update" working-directory: "pulp_deb" @@ -92,21 +92,21 @@ jobs: - name: "Create Pull Request for CI files" uses: "peter-evans/create-pull-request@v8" - id: "create_pr_3_10" + id: "create_pr_3_11" with: token: "${{ secrets.RELEASE_TOKEN }}" path: "pulp_deb" committer: "pulpbot " author: "pulpbot " - title: "Update CI files for branch 3.10" - branch: "update-ci/3.10" - base: "3.10" + title: "Update CI files for branch 3.11" + branch: "update-ci/3.11" + base: "3.11" delete-branch: true - name: "Mark PR automerge" working-directory: "pulp_deb" run: | - gh pr merge --rebase --auto "${{ steps.create_pr_3_10.outputs.pull-request-number }}" - if: "steps.create_pr_3_10.outputs.pull-request-number" + gh pr merge --rebase --auto "${{ steps.create_pr_3_11.outputs.pull-request-number }}" + if: "steps.create_pr_3_11.outputs.pull-request-number" env: GH_TOKEN: "${{ secrets.RELEASE_TOKEN }}" continue-on-error: true diff --git a/CHANGES/+fix-copy-api-postgres-param-limit.bugfix b/CHANGES/+fix-copy-api-postgres-param-limit.bugfix deleted file mode 100644 index 61f2b09d0..000000000 --- a/CHANGES/+fix-copy-api-postgres-param-limit.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed the Copy API hitting postgres's 65535 query parameter limit when copying a large number of content units diff --git a/CHANGES/+no-arch-all-validation.removal b/CHANGES/+no-arch-all-validation.removal deleted file mode 100644 index b0c5b9b76..000000000 --- a/CHANGES/+no-arch-all-validation.removal +++ /dev/null @@ -1,2 +0,0 @@ -Added validation that prevents users from creating ReleaseArchitecture content for the special value "Architecture: all". -If you have previously created the content unit you can keep using it. diff --git a/CHANGES/1490.bugfix b/CHANGES/1490.bugfix deleted file mode 100644 index 443c258d1..000000000 --- a/CHANGES/1490.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed syncing debian packages when repository metadata changes without changing the package artifact, preserving the correct metadata in each repository version diff --git a/CHANGES/1491.feature b/CHANGES/1491.feature deleted file mode 100644 index c43933ab8..000000000 --- a/CHANGES/1491.feature +++ /dev/null @@ -1,4 +0,0 @@ -Allow `repositories/deb/apt/{pulp_id}/modify/` requests to assign added packages using the optional -`distribution` and `component` parameters. Supplying either parameter creates the corresponding -release component, release architecture, and package-release-component content; omitting both -preserves the existing package-only behavior. \ No newline at end of file diff --git a/CHANGES/1493.bugfix b/CHANGES/1493.bugfix deleted file mode 100644 index 14a5bb67a..000000000 --- a/CHANGES/1493.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed a bug where signing a package shared by multiple repositories could add package release-component associations from other repositories to the repository being modified. diff --git a/CHANGES/1497.feature b/CHANGES/1497.feature deleted file mode 100644 index e016b03b8..000000000 --- a/CHANGES/1497.feature +++ /dev/null @@ -1 +0,0 @@ -Added configurable filtering of custom package metadata during sync and structured publish diff --git a/CHANGES/1504.feature b/CHANGES/1504.feature deleted file mode 100644 index b6bfdc4dc..000000000 --- a/CHANGES/1504.feature +++ /dev/null @@ -1 +0,0 @@ -Allowed users with the content label management permission to set and unset labels on DEB packages. diff --git a/pulp_deb/app/__init__.py b/pulp_deb/app/__init__.py index 7fae88153..9b16b385e 100644 --- a/pulp_deb/app/__init__.py +++ b/pulp_deb/app/__init__.py @@ -6,6 +6,6 @@ class PulpDebPluginAppConfig(PulpPluginAppConfig): name = "pulp_deb.app" label = "deb" - version = "3.11.0.dev" + version = "3.12.0.dev" python_package_name = "pulp_deb" domain_compatible = True diff --git a/pyproject.toml b/pyproject.toml index 6018638fb..d889546b2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = 'setuptools.build_meta' [project] name = "pulp-deb" -version = "3.11.0.dev" +version = "3.12.0.dev" description = "pulp-deb plugin for the Pulp Project" readme = "README.md" authors = [ @@ -121,7 +121,7 @@ exclude = ''' [tool.bumpversion] # This section is managed by the plugin template. Do not edit manually. -current_version = "3.11.0.dev" +current_version = "3.12.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 91f1b1d55..102fff3d7 100644 --- a/template_config.yml +++ b/template_config.yml @@ -22,7 +22,7 @@ disabled_redis_runners: [] docker_fixtures: true extra_files: [] github_org: "pulp" -latest_release_branch: "3.10" +latest_release_branch: "3.11" lint_ignore: [] lint_requirements: true os_required_packages: []