Skip to content

Commit 95d8942

Browse files
committed
Don't ship URI gem
We had added this because the 0.12.4 version shipped with Ruby 3.2.9 had a CVE (non-exploitable with OpenVox, and we didn't end up shipping it). Now we ship Ruby 3.2.10 that has 0.12.5 so no need for this anymore.
1 parent 9a57ff0 commit 95d8942

File tree

5 files changed

+1
-24
lines changed

5 files changed

+1
-24
lines changed

configs/components/rubygem-net-http.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
### Maintained by update_gems automation ###
77
pkg.version '0.8.0'
88
pkg.sha256sum 'df42c47ce9f9e95ad32a317c97c12f945bc1af365288837ea4ff259876ecb46d'
9-
pkg.build_requires 'rubygem-uri'
109
### End automated maintenance section ###
1110

1211
instance_eval File.read('configs/components/_base-rubygem.rb')

configs/components/rubygem-uri.rb

Lines changed: 0 additions & 16 deletions
This file was deleted.

configs/projects/agent-runtime-main.rb

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,6 @@
6262
proj.component 'rubygem-text'
6363
proj.component 'rubygem-thor'
6464

65-
# Remove this once Ruby 3.2.10 is released
66-
proj.component 'rubygem-uri'
67-
6865
# We add rexml explicitly in here because even though ruby 3 ships with rexml as its default gem, the version
6966
# of rexml it ships with can contain CVEs. So, we add it here to update to a higher version free from the CVEs.
7067
proj.component 'rubygem-rexml'

configs/projects/openbolt-runtime.rb

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -224,9 +224,6 @@
224224
proj.component 'rubygem-webrick'
225225
proj.component 'rubygem-yard'
226226

227-
# Remove this once Ruby 3.2.10 is released
228-
proj.component 'rubygem-uri'
229-
230227
# Core Windows dependencies
231228
proj.component 'rubygem-windows_error'
232229
proj.component 'rubygem-winrm'

tasks/update_gems.rake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ DEFAULT_AND_BUNDLED_GEMS = [
109109
'tsort',
110110
'typeprof',
111111
'un',
112-
# 'uri',
112+
'uri',
113113
'weakref',
114114
'win32ole',
115115
'yaml',

0 commit comments

Comments
 (0)