Skip to content
This repository has been archived by the owner on Jan 15, 2025. It is now read-only.

Updates for Ruby, Openssl, net-ssh, Puppet for Bolt runtime #903

Merged
merged 2 commits into from
Oct 22, 2024
Merged
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
14 changes: 10 additions & 4 deletions configs/projects/bolt-runtime.rb
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
project 'bolt-runtime' do |proj|
# Used in component configurations to conditionally include dependencies
proj.setting(:runtime_project, 'bolt')
proj.setting(:ruby_version, '2.7.8')
proj.setting(:openssl_version, '1.1.1')
proj.setting(:rubygem_net_ssh_version, '6.1.0')
proj.setting(:ruby_version, '3.2.5')
proj.setting(:openssl_version, '3.0')
# Legacy algos must be enabled in OpenSSL >= 3.0 for Bolt's WinRM transport to work.
proj.setting(:use_legacy_openssl_algos, true)
proj.setting(:rubygem_net_ssh_version, '7.2.3')
proj.setting(:augeas_version, '1.14.1')
# TODO: Can runtime projects use these updated versions?
proj.setting(:rubygem_deep_merge_version, '1.2.2')
proj.setting(:rubygem_puppet_version, '7.32.1')
proj.setting(:rubygem_puppet_version, '8.8.1')
Copy link
Contributor

Choose a reason for hiding this comment

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

puppet is on 8.9.0 now (though we will be doing a release next week) we will want to make sure we are on latest when we ship.


platform = proj.get_platform

Expand Down Expand Up @@ -112,6 +114,10 @@
# What to build?
# --------------

# Required to build ruby >=3.0.0
proj.component 'libffi'
proj.component 'libyaml'

# Ruby and deps
proj.component "openssl-#{proj.openssl_version}"
proj.component "runtime-bolt"
Expand Down
Loading