Skip to content

Commit 5ea84df

Browse files
build(deps): bump uri from 0.13.1 to 1.0.3 (#4356)
* build(deps): bump uri from 0.13.1 to 1.0.3 Bumps [uri](https://github.com/ruby/uri) from 0.13.1 to 1.0.3. - [Release notes](https://github.com/ruby/uri/releases) - [Commits](ruby/uri@v0.13.1...v1.0.3) --- updated-dependencies: - dependency-name: uri dependency-version: 1.0.3 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * Fix URI::InvalidURIError assertions (missing space) --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jochen Ehret <[email protected]>
1 parent 2a0bf15 commit 5ea84df

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ gem 'statsd-ruby', '~> 1.5.0'
4141
gem 'steno'
4242
gem 'talentbox-delayed_job_sequel', '~> 4.3.0'
4343
gem 'thin'
44-
gem 'uri', '~> 0.13'
44+
gem 'uri', '~> 1.0'
4545
gem 'vmstat', '~> 2.3'
4646

4747
# Rails Components

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -596,7 +596,7 @@ GEM
596596
unicode-display_width (3.1.4)
597597
unicode-emoji (~> 4.0, >= 4.0.4)
598598
unicode-emoji (4.0.4)
599-
uri (0.13.2)
599+
uri (1.0.3)
600600
useragent (0.16.11)
601601
vhd (0.0.4)
602602
bit-struct
@@ -705,7 +705,7 @@ DEPENDENCIES
705705
talentbox-delayed_job_sequel (~> 4.3.0)
706706
thin
707707
timecop
708-
uri (~> 0.13)
708+
uri (~> 1.0)
709709
vmstat (~> 2.3)
710710
webmock (> 2.3.1)
711711

spec/unit/lib/cloud_controller/config_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ module VCAP::CloudController
155155
it "can't handle an unescaped @" do
156156
expect do
157157
DatabasePartsParser.database_parts_from_connection(uri)
158-
end.to raise_error(URI::InvalidURIError, "bad URI(is not URI?): \"#{uri}\"")
158+
end.to raise_error(URI::InvalidURIError, "bad URI (is not URI?): \"#{uri}\"")
159159
end
160160
end
161161

spec/unit/lib/cloud_controller/database_parts_parser_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
uri = 'mysql://user:p4s [email protected]:1234/databasename'
4141
expect do
4242
VCAP::CloudController::DatabasePartsParser.database_parts_from_connection(uri)
43-
end.to raise_error(URI::InvalidURIError, "bad URI(is not URI?): \"#{uri}\"")
43+
end.to raise_error(URI::InvalidURIError, "bad URI (is not URI?): \"#{uri}\"")
4444
end
4545
end
4646
end

0 commit comments

Comments
 (0)