From 9b29d5c6ad5a81209dd31ccb9df7f0fdeb3cf0b7 Mon Sep 17 00:00:00 2001 From: Odilon Sousa Date: Tue, 23 Sep 2025 09:52:00 -0300 Subject: [PATCH] Add support for Pulpcore 3.85 --- .github/workflows/ci.yml | 2 +- .sync.yml | 2 +- README.md | 6 +++++- manifests/repo.pp | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7f4b93e8..76a3a14b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,5 +20,5 @@ jobs: uses: voxpupuli/gha-puppet/.github/workflows/beaker.yml@v3 with: pidfile_workaround: 'false' - beaker_facter: 'pulpcore_version:Pulp:nightly,3.49,3.63,3.73' + beaker_facter: 'pulpcore_version:Pulp:nightly,3.49,3.63,3.73,3.85' rubocop: false diff --git a/.sync.yml b/.sync.yml index ebc3d256..8c013ecc 100644 --- a/.sync.yml +++ b/.sync.yml @@ -1,3 +1,3 @@ --- .github/workflows/ci.yml: - beaker_facter: 'pulpcore_version:Pulp:nightly,3.49,3.63,3.73' + beaker_facter: 'pulpcore_version:Pulp:nightly,3.49,3.63,3.73,3.85' diff --git a/README.md b/README.md index b9cc2576..e5a0f052 100644 --- a/README.md +++ b/README.md @@ -10,10 +10,14 @@ All supported versions are listed below. For every supported version, acceptance Supported operating systems are listed in `metadata.json` but individual releases can divert from that. For example, if Pulpcore x.y drops EL7, it will still be listed in metadata.json until all versions supported by the module have dropped it. Similarly, if x.z adds support for EL9, it'll be listed in `metadata.json` and all versions that don't support EL9 will have a note. -### Pulpcore 3.73 +### Pulpcore 3.85 Recommended version. +### Pulpcore 3.73 + +Supported version. + ### Pulpcore 3.63 Supported version. diff --git a/manifests/repo.pp b/manifests/repo.pp index b97ec97e..9f1e4f2f 100644 --- a/manifests/repo.pp +++ b/manifests/repo.pp @@ -8,7 +8,7 @@ # An optional value for gpgkey to be used for yumrepo, instead of the default. # If an empty string is passed, gpgcheck will be disabled. class pulpcore::repo ( - Variant[Enum['nightly'], Pattern['^\d+\.\d+$']] $version = '3.73', + Variant[Enum['nightly'], Pattern['^\d+\.\d+$']] $version = '3.85', Optional[Stdlib::HTTPUrl] $baseurl = undef, Optional[String[0]] $gpgkey = undef, ) {