Skip to content

Commit b8b5bc9

Browse files
committed
Land rapid7#4500, update dependencies
2 parents 7f2add2 + 184b4e8 commit b8b5bc9

File tree

3 files changed

+19
-19
lines changed

3 files changed

+19
-19
lines changed

Gemfile.lock

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ PATH
88
jsobfu (~> 0.2.0)
99
json
1010
metasploit-concern (~> 0.3.0)
11-
metasploit-model (~> 0.28.0)
11+
metasploit-model (~> 0.29.0)
1212
meterpreter_bins (= 0.0.13)
1313
msgpack
1414
nokogiri
@@ -22,9 +22,9 @@ PATH
2222
tzinfo
2323
metasploit-framework-db (4.11.0.pre.dev)
2424
activerecord (>= 3.2.21, < 4.0.0)
25-
metasploit-credential (~> 0.13.17)
25+
metasploit-credential (~> 0.13.19)
2626
metasploit-framework (= 4.11.0.pre.dev)
27-
metasploit_data_models (~> 0.22.7)
27+
metasploit_data_models (~> 0.22.8)
2828
pg (>= 0.11)
2929
metasploit-framework-pcap (4.11.0.pre.dev)
3030
metasploit-framework (= 4.11.0.pre.dev)
@@ -68,7 +68,7 @@ GEM
6868
childprocess (>= 0.3.6)
6969
cucumber (>= 1.1.1)
7070
rspec-expectations (>= 2.7.0)
71-
bcrypt (3.1.9)
71+
bcrypt (3.1.10)
7272
builder (3.0.4)
7373
capybara (2.4.1)
7474
mime-types (>= 1.16)
@@ -101,7 +101,7 @@ GEM
101101
gherkin (2.11.6)
102102
json (>= 1.7.6)
103103
hike (1.2.3)
104-
i18n (0.7.0)
104+
i18n (0.6.11)
105105
journey (1.0.4)
106106
jsobfu (0.2.1)
107107
rkelly-remix (= 0.0.6)
@@ -112,31 +112,31 @@ GEM
112112
metasploit-concern (0.3.0)
113113
activesupport (~> 3.0, >= 3.0.0)
114114
railties (< 4.0.0)
115-
metasploit-credential (0.13.18)
115+
metasploit-credential (0.13.19)
116116
metasploit-concern (~> 0.3.0)
117-
metasploit-model (~> 0.28.0)
118-
metasploit_data_models (~> 0.22.7)
117+
metasploit-model (~> 0.29.0)
118+
metasploit_data_models (~> 0.22.8)
119119
pg
120120
railties (< 4.0.0)
121121
rubyntlm
122122
rubyzip (~> 1.1)
123-
metasploit-model (0.28.0)
123+
metasploit-model (0.29.0)
124124
activesupport
125125
railties (< 4.0.0)
126-
metasploit_data_models (0.22.7)
126+
metasploit_data_models (0.22.8)
127127
activerecord (>= 3.2.13, < 4.0.0)
128128
activesupport
129129
arel-helpers
130130
metasploit-concern (~> 0.3.0)
131-
metasploit-model (~> 0.28.0)
131+
metasploit-model (~> 0.29.0)
132132
pg
133133
railties (< 4.0.0)
134134
recog (~> 1.0)
135135
meterpreter_bins (0.0.13)
136136
method_source (0.8.2)
137137
mime-types (1.25.1)
138-
mini_portile (0.6.2)
139-
msgpack (0.5.9)
138+
mini_portile (0.6.1)
139+
msgpack (0.5.11)
140140
multi_json (1.0.4)
141141
network_interface (0.0.1)
142142
nokogiri (1.6.5)
@@ -172,10 +172,10 @@ GEM
172172
rdoc (~> 3.4)
173173
thor (>= 0.14.6, < 2.0)
174174
rake (10.4.2)
175-
rb-readline (0.5.1)
175+
rb-readline (0.5.2)
176176
rdoc (3.12.2)
177177
json (~> 1.4)
178-
recog (1.0.7)
178+
recog (1.0.16)
179179
nokogiri
180180
redcarpet (3.1.2)
181181
rkelly-remix (0.0.6)
@@ -200,7 +200,7 @@ GEM
200200
rspec-expectations (~> 2.99.0)
201201
rspec-mocks (~> 2.99.0)
202202
rubyntlm (0.4.0)
203-
rubyzip (1.1.6)
203+
rubyzip (1.1.7)
204204
shoulda-matchers (2.6.2)
205205
simplecov (0.5.4)
206206
multi_json (~> 1.0.3)

metasploit-framework-db.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ Gem::Specification.new do |spec|
2929

3030
spec.add_runtime_dependency 'activerecord', *Metasploit::Framework::RailsVersionConstraint::RAILS_VERSION
3131
# Metasploit::Credential database models
32-
spec.add_runtime_dependency 'metasploit-credential', '~> 0.13.17'
32+
spec.add_runtime_dependency 'metasploit-credential', '~> 0.13.19'
3333
# Database models shared between framework and Pro.
34-
spec.add_runtime_dependency 'metasploit_data_models', '~> 0.22.7'
34+
spec.add_runtime_dependency 'metasploit_data_models', '~> 0.22.8'
3535
# depend on metasploit-framewrok as the optional gems are useless with the actual code
3636
spec.add_runtime_dependency 'metasploit-framework', "= #{spec.version}"
3737
# Needed for module caching in Mdm::ModuleDetails

metasploit-framework.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Gem::Specification.new do |spec|
6262
spec.add_runtime_dependency 'metasploit-concern', '~> 0.3.0'
6363
# Things that would normally be part of the database model, but which
6464
# are needed when there's no database
65-
spec.add_runtime_dependency 'metasploit-model', '~> 0.28.0'
65+
spec.add_runtime_dependency 'metasploit-model', '~> 0.29.0'
6666
# Needed for Meterpreter on Windows, soon others.
6767
spec.add_runtime_dependency 'meterpreter_bins', '0.0.13'
6868
# Needed by msfgui and other rpc components

0 commit comments

Comments
 (0)