You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

dry-stack

Package Overview
Dependencies
Maintainers
1
Versions
142
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dry-stack - rubygems Package Compare versions

Comparing version
0.1.53
to
0.1.54
+15
-3
lib/dry-stack/stack.rb

@@ -196,3 +196,9 @@ # frozen_string_literal: true

domain = opts[:tls_domain] || 'example.com'
domain = ing[:host_sni].gsub('.*', ".#{domain}") if ing[:host_sni]&.include?('*')
if ing[:host_sni]&.include?('*')
domain = ing[:host_sni].gsub('.*', ".#{domain}")
else
domain = ing[:host_sni]
end
domain = ing[:tls_domain] if ing[:tls_domain]

@@ -225,3 +231,10 @@

domain = opts[:tls_domain] || 'example.com'
domain = ing[:host].gsub('.*', ".#{domain}") if ing[:host]&.include?('.*')
if ing[:host]
if ing[:host]&.include?('*')
domain = ing[:host].gsub('*', domain)
else
domain = ing[:host]
end
end
domain = ing[:tls_domain] if ing[:tls_domain]

@@ -532,2 +545,1 @@ service[:deploy][:labels] += [

end
+1
-1
module Dry
class Stack
VERSION = '0.1.53'
VERSION = '0.1.54'
end
end