Skip to content

Commit

Permalink
address vulnerability in RubyZip (< 1.2.1)
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-litvak committed Nov 24, 2022
1 parent 93e2f2f commit 1454c0c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions Gemfile.lock
Expand Up @@ -13,10 +13,11 @@ GEM
concur
iron_core (1.0.12)
rest (>= 3.0.8)
iron_worker_ng (1.6.10)
bundler
iron_core (>= 1.0.6)
rubyzip (>= 1.0.0)
iron_worker (3.4.2)
iron_core (>= 1.0.12, < 2)
json (~> 2.0)
rest (~> 3.0, >= 3.0.8)
json (2.6.2)
minitest (5.11.3)
net-http-persistent (2.9.4)
netrc (0.11.0)
Expand All @@ -27,7 +28,6 @@ GEM
rest (3.0.8)
net-http-persistent (>= 2.9.1, < 3)
netrc
rubyzip (1.2.1)
test-unit (3.2.7)
power_assert
uber_config (1.1.3)
Expand All @@ -39,7 +39,7 @@ DEPENDENCIES
beanstalk-client
go
iron_mq!
iron_worker_ng
iron_worker
minitest (>= 5.0)
parallel
quicky
Expand All @@ -48,4 +48,4 @@ DEPENDENCIES
uber_config

BUNDLED WITH
1.16.1
1.17.3
2 changes: 1 addition & 1 deletion iron_mq.gemspec
Expand Up @@ -25,7 +25,7 @@ Gem::Specification.new do |gem|
gem.add_development_dependency "beanstalk-client"
gem.add_development_dependency "uber_config"
gem.add_development_dependency "quicky"
gem.add_development_dependency "iron_worker_ng"
gem.add_development_dependency "iron_worker"
gem.add_development_dependency "go"
gem.add_development_dependency "parallel"
end
Expand Down
2 changes: 1 addition & 1 deletion test/Rakefile
Expand Up @@ -5,7 +5,7 @@ Dir.chdir(File.dirname(__FILE__) + '/..')

Rake::TestTask.new do |t|
if ENV['NEW_PROJECT']
require_relative '../lib/iron_worker_ng.rb'
require_relative '../lib/iron_worker.rb'

client = IronWorkerNG::Client.new
name = 'IWtest ' + Time.now.strftime('%b %-d %T')
Expand Down
4 changes: 2 additions & 2 deletions test/test_mq_worker_subscribers.rb
Expand Up @@ -5,7 +5,7 @@

require File.expand_path('test_base.rb', File.dirname(__FILE__))
require 'logger'
require 'iron_worker_ng'
require 'iron_worker'


class TestWorkerSubscribers < TestBase
Expand Down Expand Up @@ -62,7 +62,7 @@ def test_mq_worker_subscribers

wc = @config['iron']
wc[:host] = wc[:worker_host] if wc[:worker_host]
iron_worker = IronWorkerNG::Client.new(wc)
iron_worker = IronWorker::Client.new(wc)
tasks = iron_worker.tasks.list(:code_name=>code_name, :from_time=>(Time.now - 30).to_i)
assert_equal 1, tasks.size
end
Expand Down

0 comments on commit 1454c0c

Please sign in to comment.