diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c654b0e..4071556d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## Unreleased +### Fixed +- Fix no-package error via upgrade ruby_aem to 3.16.0 ## 5.21.0 - 2022-11-29 ### Changed diff --git a/provisioners/puppet/modules/config/Gemfile b/provisioners/puppet/modules/config/Gemfile index d8c8c407..d0dca1f9 100644 --- a/provisioners/puppet/modules/config/Gemfile +++ b/provisioners/puppet/modules/config/Gemfile @@ -19,7 +19,7 @@ group :test do gem 'voxpupuli-release', :require => false, :git => 'https://github.com/voxpupuli/voxpupuli-release-gem.git' gem 'puppet-strings', :require => false, :git => 'https://github.com/puppetlabs/puppetlabs-strings.git' gem 'json_pure', '<= 2.0.1', :require => false if RUBY_VERSION < '2.0.0' - gem 'ruby_aem', '3.14.0', :require => false + gem 'ruby_aem', '3.16.0', :require => false gem 'ruby_aem_aws', '2.0.1', :require => false end diff --git a/provisioners/puppet/modules/config/data/RedHat/Amazon-2.yaml b/provisioners/puppet/modules/config/data/RedHat/Amazon-2.yaml index 095389be..50ffebda 100644 --- a/provisioners/puppet/modules/config/data/RedHat/Amazon-2.yaml +++ b/provisioners/puppet/modules/config/data/RedHat/Amazon-2.yaml @@ -6,7 +6,7 @@ config::package_manager_packages: - name: automake - name: libtool - name: ruby_aem - version: 3.14.0 + version: 3.16.0 provider: puppet_gem - name: ruby_aem_aws version: 2.3.1 diff --git a/provisioners/puppet/modules/config/data/RedHat/Amazon.yaml b/provisioners/puppet/modules/config/data/RedHat/Amazon.yaml index a484d6c4..847970c3 100644 --- a/provisioners/puppet/modules/config/data/RedHat/Amazon.yaml +++ b/provisioners/puppet/modules/config/data/RedHat/Amazon.yaml @@ -3,7 +3,7 @@ config::package_manager_packages: - name: ruby_aem - version: 3.14.0 + version: 3.16.0 provider: puppet_gem - name: ruby_aem_aws version: 2.3.1 diff --git a/provisioners/puppet/modules/config/data/RedHat/CentOS-7.yaml b/provisioners/puppet/modules/config/data/RedHat/CentOS-7.yaml index b9ac1dd6..add2ee94 100644 --- a/provisioners/puppet/modules/config/data/RedHat/CentOS-7.yaml +++ b/provisioners/puppet/modules/config/data/RedHat/CentOS-7.yaml @@ -6,7 +6,7 @@ config::package_manager_packages: - name: automake - name: libtool - name: ruby_aem - version: 3.14.0 + version: 3.16.0 provider: puppet_gem - name: ruby_aem_aws version: 2.3.1 diff --git a/provisioners/puppet/modules/config/data/RedHat/CentOS.yaml b/provisioners/puppet/modules/config/data/RedHat/CentOS.yaml index 5f490c59..7adfa98e 100644 --- a/provisioners/puppet/modules/config/data/RedHat/CentOS.yaml +++ b/provisioners/puppet/modules/config/data/RedHat/CentOS.yaml @@ -6,7 +6,7 @@ config::package_manager_packages: - name: automake - name: libtool - name: ruby_aem - version: 3.14.0 + version: 3.16.0 provider: puppet_gem - name: ruby_aem_aws version: 2.3.1 diff --git a/provisioners/puppet/modules/config/data/RedHat/RedHat.yaml b/provisioners/puppet/modules/config/data/RedHat/RedHat.yaml index 4b3e3859..4fe7e1e8 100644 --- a/provisioners/puppet/modules/config/data/RedHat/RedHat.yaml +++ b/provisioners/puppet/modules/config/data/RedHat/RedHat.yaml @@ -6,7 +6,7 @@ config::package_manager_packages: - name: automake - name: libtool - name: ruby_aem - version: 3.14.0 + version: 3.16.0 provider: puppet_gem - name: ruby_aem_aws version: 2.3.1 diff --git a/test/inspec/aem_base_spec.rb b/test/inspec/aem_base_spec.rb index 73b2f74b..442fe0c8 100644 --- a/test/inspec/aem_base_spec.rb +++ b/test/inspec/aem_base_spec.rb @@ -14,7 +14,7 @@ end it { should be_installed } - its('version') { should eq '3.14.0' } + its('version') { should eq '3.16.0' } end describe gem('ruby_aem_aws', '/opt/puppetlabs/puppet/bin/gem') do