Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,4 @@ jobs:
Acceptance:
needs: Spec
uses: "puppetlabs/cat-github-actions/.github/workflows/module_acceptance.yml@main"
with:
runs_on: "ubuntu-24.04"
secrets: "inherit"
2 changes: 0 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,4 @@ jobs:
Acceptance:
needs: Spec
uses: "puppetlabs/cat-github-actions/.github/workflows/module_acceptance.yml@main"
with:
runs_on: "ubuntu-24.04"
secrets: "inherit"
8 changes: 8 additions & 0 deletions .puppet-lint.rc
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
--fail-on-warnings
--relative
--no-80chars-check
--no-140chars-check
--no-class_inherits_from_params_class-check
--no-autoloader_layout-check
--no-documentation-check
--no-single_quote_string_with_variables-check
--ignore-paths=.vendor/**/*.pp,.bundle/**/*.pp,pkg/**/*.pp,spec/**/*.pp,tests/**/*.pp,types/**/*.pp,vendor/**/*.pp
--no-anchor_resource-check
--no-params_empty_string_assignment-check
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ require:
AllCops:
NewCops: enable
DisplayCopNames: true
TargetRubyVersion: '2.6'
TargetRubyVersion: 3.1
Include:
- "**/*.rb"
Exclude:
Expand Down
38 changes: 22 additions & 16 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,22 @@ def location_for(place_or_version, fake_version = nil)
end

group :development do
gem "json", '= 2.1.0', require: false if Gem::Requirement.create(['>= 2.5.0', '< 2.7.0']).satisfied_by?(Gem::Version.new(RUBY_VERSION.dup))
gem "json", '= 2.3.0', require: false if Gem::Requirement.create(['>= 2.7.0', '< 3.0.0']).satisfied_by?(Gem::Version.new(RUBY_VERSION.dup))
gem "json", '= 2.5.1', require: false if Gem::Requirement.create(['>= 3.0.0', '< 3.0.5']).satisfied_by?(Gem::Version.new(RUBY_VERSION.dup))
gem "json", '= 2.6.1', require: false if Gem::Requirement.create(['>= 3.1.0', '< 3.1.3']).satisfied_by?(Gem::Version.new(RUBY_VERSION.dup))
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you do lint for ruby 3.1 as a target, so everything will fail on ruby 3.0 anyways and the condition isn't required?

gem "json", '= 2.6.3', require: false if Gem::Requirement.create(['>= 3.2.0', '< 4.0.0']).satisfied_by?(Gem::Version.new(RUBY_VERSION.dup))
gem "racc", '~> 1.4.0', require: false if Gem::Requirement.create(['>= 2.7.0', '< 3.0.0']).satisfied_by?(Gem::Version.new(RUBY_VERSION.dup))
gem "deep_merge", '~> 1.2.2', require: false
gem "voxpupuli-puppet-lint-plugins", '~> 5.0', require: false
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

voxpupuli-puppet-lint-plugins, facterdb and rspec-puppet-facts are quite outdated, even after your changes. Are there plans to switch to newer versions?

gem "facterdb", '~> 1.18', require: false
gem "facterdb", '~> 2.1', require: false if Gem::Requirement.create(['< 3.0.0']).satisfied_by?(Gem::Version.new(RUBY_VERSION.dup))
gem "facterdb", '~> 3.0', require: false if Gem::Requirement.create(['>= 3.0.0']).satisfied_by?(Gem::Version.new(RUBY_VERSION.dup))
gem "metadata-json-lint", '~> 4.0', require: false
gem "rspec-puppet-facts", '~> 2.0', require: false
gem "json-schema", '< 5.1.1', require: false
gem "rspec-puppet-facts", '~> 4.0', require: false if Gem::Requirement.create(['< 3.0.0']).satisfied_by?(Gem::Version.new(RUBY_VERSION.dup))
gem "rspec-puppet-facts", '~> 5.0', require: false if Gem::Requirement.create(['>= 3.0.0']).satisfied_by?(Gem::Version.new(RUBY_VERSION.dup))
gem "dependency_checker", '~> 1.0.0', require: false
gem "parallel_tests", '= 3.12.1', require: false
gem "pry", '~> 0.10', require: false
gem "simplecov-console", '~> 0.9', require: false
gem "puppet-debugger", '~> 1.0', require: false
gem "puppet-debugger", '~> 1.6', require: false
gem "rubocop", '~> 1.50.0', require: false
gem "rubocop-performance", '= 1.16.0', require: false
gem "rubocop-rspec", '= 2.19.0', require: false
Expand All @@ -38,26 +38,32 @@ group :development do
end
group :development, :release_prep do
gem "puppet-strings", '~> 4.0', require: false
gem "puppetlabs_spec_helper", '~> 7.0', require: false
gem "puppetlabs_spec_helper", '~> 8.0', require: false
gem "puppet-blacksmith", '~> 7.0', require: false
end
group :system_tests do
gem "puppet_litmus", '~> 1.0', require: false, platforms: [:ruby, :x64_mingw]
gem "puppet_litmus", '~> 2.0', require: false, platforms: [:ruby, :x64_mingw] if !ENV['PUPPET_FORGE_TOKEN'].to_s.empty?
gem "puppet_litmus", '~> 1.0', require: false, platforms: [:ruby, :x64_mingw] if ENV['PUPPET_FORGE_TOKEN'].to_s.empty?
gem "CFPropertyList", '< 3.0.7', require: false, platforms: [:mswin, :mingw, :x64_mingw]
gem "serverspec", '~> 2.41', require: false
end

puppet_version = ENV['PUPPET_GEM_VERSION']
facter_version = ENV['FACTER_GEM_VERSION']
hiera_version = ENV['HIERA_GEM_VERSION']

gems = {}
puppet_version = ENV.fetch('PUPPET_GEM_VERSION', nil)
facter_version = ENV.fetch('FACTER_GEM_VERSION', nil)
hiera_version = ENV.fetch('HIERA_GEM_VERSION', nil)

gems['puppet'] = location_for(puppet_version)

# If facter or hiera versions have been specified via the environment
# variables
# If PUPPET_FORGE_TOKEN is set then use authenticated source for both puppet and facter, since facter is a transitive dependency of puppet
# Otherwise, do as before and use location_for to fetch gems from the default source
if !ENV['PUPPET_FORGE_TOKEN'].to_s.empty?
gems['puppet'] = ['~> 8.11', { require: false, source: 'https://rubygems-puppetcore.puppet.com' }]
gems['facter'] = ['~> 4.11', { require: false, source: 'https://rubygems-puppetcore.puppet.com' }]
else
gems['puppet'] = location_for(puppet_version)
gems['facter'] = location_for(facter_version) if facter_version
end

gems['facter'] = location_for(facter_version) if facter_version
gems['hiera'] = location_for(hiera_version) if hiera_version

gems.each do |gem_name, gem_params|
Expand Down
8 changes: 8 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,11 @@ require 'puppet-strings/tasks' if Gem.loaded_specs.key? 'puppet-strings'
PuppetLint.configuration.send('disable_relative')
PuppetLint.configuration.send('disable_anchor_resource')
PuppetLint.configuration.send('disable_params_empty_string_assignment')
PuppetLint.configuration.send('disable_80chars')
PuppetLint.configuration.send('disable_140chars')
PuppetLint.configuration.send('disable_class_inherits_from_params_class')
PuppetLint.configuration.send('disable_autoloader_layout')
PuppetLint.configuration.send('disable_documentation')
PuppetLint.configuration.send('disable_single_quote_string_with_variables')
PuppetLint.configuration.fail_on_warnings = true
PuppetLint.configuration.ignore_paths = [".vendor/**/*.pp", ".bundle/**/*.pp", "pkg/**/*.pp", "spec/**/*.pp", "tests/**/*.pp", "types/**/*.pp", "vendor/**/*.pp"]
2 changes: 1 addition & 1 deletion lib/puppet/functions/postgresql/postgresql_password.rb
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def pg_sha256(password, salt)
def digest_key(password, salt)
OpenSSL::KDF.pbkdf2_hmac(
password,
salt: salt,
salt:,
iterations: 4096,
length: 32,
hash: OpenSSL::Digest.new('SHA256'),
Expand Down
2 changes: 1 addition & 1 deletion lib/puppet/provider/postgresql_conf/ruby.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def parse_config
else
matches[:value].delete("'")
end
attributes_hash = { line_number: line_number, key: matches[:key], ensure: 'present', value: value, comment: matches[:comment] }
attributes_hash = { line_number:, key: matches[:key], ensure: 'present', value:, comment: matches[:comment] }
active_settings.push(attributes_hash)
end
end
Expand Down
2 changes: 1 addition & 1 deletion lib/puppet/provider/postgresql_replication_slot/ruby.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
def self.instances
run_sql_command('SELECT * FROM pg_replication_slots;')[0].split("\n").select { |l| l.include?('|') }.map do |l|
name, *_others = l.strip.split(%r{\s+\|\s+})
new(name: name,
new(name:,
ensure: :present)
end
end
Expand Down
6 changes: 3 additions & 3 deletions metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,10 @@
"requirements": [
{
"name": "puppet",
"version_requirement": ">= 7.0.0 < 9.0.0"
"version_requirement": ">= 8.0.0 < 9.0.0"
}
],
"pdk-version": "3.2.0",
"pdk-version": "3.5.0",
"template-url": "https://github.com/puppetlabs/pdk-templates#main",
"template-ref": "tags/3.2.0.4-0-g5d17ec1"
"template-ref": "heads/main-0-g11c0f3d"
}
14 changes: 7 additions & 7 deletions spec/defines/server/pg_hba_rule_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class { 'postgresql::server': }
user: 'all',
address: '1.1.1.1/24',
auth_method: 'md5',
target: target
target:
}
end

Expand All @@ -47,7 +47,7 @@ class { 'postgresql::server': }
database: 'all',
user: 'all',
auth_method: 'ident',
target: target
target:
}
end

Expand All @@ -71,7 +71,7 @@ class { 'postgresql::server': }
address: '0.0.0.0/0',
auth_method: 'ldap',
auth_option: 'foo=bar',
target: target
target:
}
end

Expand All @@ -98,7 +98,7 @@ class { 'postgresql::server': }
user: 'all',
address: '0.0.0.0/0',
auth_method: 'peer',
target: target
target:
}
end

Expand Down Expand Up @@ -126,7 +126,7 @@ class { 'postgresql::server': }
user: 'all',
address: '0.0.0.0/0',
auth_method: 'scram-sha-256',
target: target
target:
}
end

Expand Down Expand Up @@ -240,7 +240,7 @@ class { 'postgresql::server': }
user: 'all',
address: '.domain.tld',
auth_method: 'md5',
target: target
target:
}
end

Expand All @@ -263,7 +263,7 @@ class { 'postgresql::server': }
user: 'all',
address: '/45',
auth_method: 'md5',
target: target
target:
}
end

Expand Down
2 changes: 1 addition & 1 deletion spec/unit/puppet/provider/postgresql_psql/ruby_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
describe Puppet::Type.type(:postgresql_psql).provider(:ruby) do
let(:name) { 'rspec psql test' }
let(:resource) do
Puppet::Type.type(:postgresql_psql).new({ name: name, provider: :ruby }.merge(attributes))
Puppet::Type.type(:postgresql_psql).new({ name:, provider: :ruby }.merge(attributes))
end
let(:provider) { resource.provider }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def success?

let(:name) { 'standby' }
let(:resource) do
type.new({ name: name, provider: :ruby }.merge(attributes))
type.new({ name:, provider: :ruby }.merge(attributes))
end
let(:sql_instances) do
"abc | | physical | | | t | | | 0/3000420
Expand Down
24 changes: 12 additions & 12 deletions spec/unit/puppet/type/postgresql_psql_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@
[true, :true].each do |refreshonly|
context "refreshonly => #{refreshonly.inspect}" do
let(:attributes) do
{ refreshonly: refreshonly }
{ refreshonly: }
end

context 'not refreshing'
Expand All @@ -141,7 +141,7 @@

context "refreshonly => #{refreshonly.inspect}" do
let(:attributes) do
{ refreshonly: refreshonly }
{ refreshonly: }
end

context 'refreshing'
Expand All @@ -152,7 +152,7 @@
[false, :false].each do |refreshonly|
context "refreshonly => #{refreshonly.inspect}" do
let(:attributes) do
{ refreshonly: refreshonly }
{ refreshonly: }
end

context 'not refreshing'
Expand All @@ -161,7 +161,7 @@

context "refreshonly => #{refreshonly.inspect}" do
let(:attributes) do
{ refreshonly: refreshonly }
{ refreshonly: }
end

context 'refreshing'
Expand All @@ -176,7 +176,7 @@
[true, :true].each do |refreshonly|
context "refreshonly => #{refreshonly.inspect}" do
let(:attributes) do
{ refreshonly: refreshonly, unless: 'SELECT something' }
{ refreshonly:, unless: 'SELECT something' }
end

context 'not refreshing'
Expand All @@ -185,7 +185,7 @@

context "refreshonly => #{refreshonly.inspect}" do
let(:attributes) do
{ refreshonly: refreshonly, unless: 'SELECT something' }
{ refreshonly:, unless: 'SELECT something' }
end

context 'refreshing'
Expand All @@ -196,7 +196,7 @@
[false, :false].each do |refreshonly|
context "refreshonly => #{refreshonly.inspect}" do
let(:attributes) do
{ refreshonly: refreshonly, unless: 'SELECT something' }
{ refreshonly:, unless: 'SELECT something' }
end

context 'not refreshing'
Expand All @@ -205,7 +205,7 @@

context "refreshonly => #{refreshonly.inspect}" do
let(:attributes) do
{ refreshonly: refreshonly, unless: 'SELECT something' }
{ refreshonly:, unless: 'SELECT something' }
end

context 'refreshing'
Expand All @@ -220,7 +220,7 @@
[true, :true].each do |refreshonly|
context "refreshonly => #{refreshonly.inspect}" do
let(:attributes) do
{ refreshonly: refreshonly, unless: 'SELECT something' }
{ refreshonly:, unless: 'SELECT something' }
end

context 'not refreshing'
Expand All @@ -229,7 +229,7 @@

context "refreshonly => #{refreshonly.inspect}" do
let(:attributes) do
{ refreshonly: refreshonly, unless: 'SELECT something' }
{ refreshonly:, unless: 'SELECT something' }
end

context 'refreshing'
Expand All @@ -240,7 +240,7 @@
[false, :false].each do |refreshonly|
context "refreshonly => #{refreshonly.inspect}" do
let(:attributes) do
{ refreshonly: refreshonly, unless: 'SELECT something' }
{ refreshonly:, unless: 'SELECT something' }
end

context 'not refreshing'
Expand All @@ -249,7 +249,7 @@

context "refreshonly => #{refreshonly.inspect}" do
let(:attributes) do
{ refreshonly: refreshonly, unless: 'SELECT something' }
{ refreshonly:, unless: 'SELECT something' }
end

context 'refreshing'
Expand Down
Loading