summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--lib/uri/mailto.rb3
-rw-r--r--test/uri/test_mailto.rb10
-rw-r--r--version.h2
4 files changed, 17 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index eb8e000657..7f16c39e2a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Tue Aug 16 21:01:55 2016 NARUSE, Yui <naruse@ruby-lang.org>
+
+ * lib/uri/mailto.rb (initialize): RFC3986_Parser#split sets opaque
+ only if the URI has path-rootless, not path-empty.
+ [ruby-core:76055] [Bug #12498]
+ patched by Chris Heisterkamp <cheister@squareup.com>
+
Tue Aug 16 20:59:35 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ext/date/date_strftime.c (date_strftime_with_tmx): reject too
diff --git a/lib/uri/mailto.rb b/lib/uri/mailto.rb
index b4405630a9..282dcbe404 100644
--- a/lib/uri/mailto.rb
+++ b/lib/uri/mailto.rb
@@ -135,6 +135,9 @@ module URI
@to = nil
@headers = []
+ # The RFC3986 parser does not normally populate opaque
+ @opaque = "?#{@query}" if @query && !@opaque
+
unless @opaque
raise InvalidComponentError,
"missing opaque part for mailto URL"
diff --git a/test/uri/test_mailto.rb b/test/uri/test_mailto.rb
index 9001835d28..bfe41e71fa 100644
--- a/test/uri/test_mailto.rb
+++ b/test/uri/test_mailto.rb
@@ -111,13 +111,15 @@ class TestMailTo < Test::Unit::TestCase
bad << ["foo@example.jp?subject=1+1=2", []]
ok.each do |x|
- assert_equal(x[0],
- @u.build(x[1]).to_s)
- assert_equal(x[0],
- @u.build(x[2]).to_s)
+ assert_equal(x[0], URI.parse(x[0]).to_s)
+ assert_equal(x[0], @u.build(x[1]).to_s)
+ assert_equal(x[0], @u.build(x[2]).to_s)
end
bad.each do |x|
+ assert_raise(URI::InvalidURIError) {
+ URI.parse(x)
+ }
assert_raise(URI::InvalidComponentError) {
@u.build(x)
}
diff --git a/version.h b/version.h
index 204ad28eb3..24b0b0e674 100644
--- a/version.h
+++ b/version.h
@@ -1,6 +1,6 @@
#define RUBY_VERSION "2.2.6"
#define RUBY_RELEASE_DATE "2016-08-16"
-#define RUBY_PATCHLEVEL 367
+#define RUBY_PATCHLEVEL 368
#define RUBY_RELEASE_YEAR 2016
#define RUBY_RELEASE_MONTH 8