<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ruby.git/lib/uri.rb, branch v4.0.3</title>
<subtitle>The Ruby Programming Language</subtitle>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/'/>
<entry>
<title>Use www.rfc-editor.org for RFC text.</title>
<updated>2024-03-28T02:44:45+00:00</updated>
<author>
<name>Hiroshi SHIBATA</name>
<email>hsbt@ruby-lang.org</email>
</author>
<published>2024-03-28T00:45:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=7630a89a4bf352e1310b5323e3e2ee976eecddca'/>
<id>7630a89a4bf352e1310b5323e3e2ee976eecddca</id>
<content type='text'>
We use the following site for that now:

* https://tools.ietf.org/ or http
* https://datatracker.ietf.org or http

Today, IETF said the official site of RFC is www.rfc-editor.org.

FYI: https://authors.ietf.org/en/references-in-rfcxml

I replaced them to www.rfc-editor.org.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We use the following site for that now:

* https://tools.ietf.org/ or http
* https://datatracker.ietf.org or http

Today, IETF said the official site of RFC is www.rfc-editor.org.

FYI: https://authors.ietf.org/en/references-in-rfcxml

I replaced them to www.rfc-editor.org.
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/uri] Use https instead of http</title>
<updated>2024-02-20T10:13:30+00:00</updated>
<author>
<name>Hiroshi SHIBATA</name>
<email>hsbt@ruby-lang.org</email>
</author>
<published>2024-02-20T07:57:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=fa3d6aafb70aa06f8afa198c463bf6fac84ce0dd'/>
<id>fa3d6aafb70aa06f8afa198c463bf6fac84ce0dd</id>
<content type='text'>
https://github.com/ruby/uri/commit/ad2591f0d1
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/uri/commit/ad2591f0d1
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/uri] Feat: Support WSS</title>
<updated>2022-04-22T02:59:54+00:00</updated>
<author>
<name>OKURA Masafumi</name>
<email>masafumi.o1988@gmail.com</email>
</author>
<published>2022-02-17T15:59:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=c94f964e3f94e9f934a3f4e73fb55f5fd2a21f08'/>
<id>c94f964e3f94e9f934a3f4e73fb55f5fd2a21f08</id>
<content type='text'>
There was a file for WSS so I added one line of `require_relative`
to make it work.
Now `URI.parse('wss://example.com')` returns `URI::WS`.

https://github.com/ruby/uri/commit/ff8a103564
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
There was a file for WSS so I added one line of `require_relative`
to make it work.
Now `URI.parse('wss://example.com')` returns `URI::WS`.

https://github.com/ruby/uri/commit/ff8a103564
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix test failure for parallel testing</title>
<updated>2021-07-27T08:34:13+00:00</updated>
<author>
<name>Hiroshi SHIBATA</name>
<email>hsbt@ruby-lang.org</email>
</author>
<published>2021-07-27T08:34:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=6656309fe22b799016f3bc20a5f466da543a44c0'/>
<id>6656309fe22b799016f3bc20a5f466da543a44c0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added missing require for URI::WS class</title>
<updated>2021-07-27T08:33:18+00:00</updated>
<author>
<name>Hiroshi SHIBATA</name>
<email>hsbt@ruby-lang.org</email>
</author>
<published>2021-07-27T08:20:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=b875a85c5367b9dff96e1ca1e78a2e35580a2f80'/>
<id>b875a85c5367b9dff96e1ca1e78a2e35580a2f80</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/uri] Add proper Ractor support to URI</title>
<updated>2021-07-27T07:54:27+00:00</updated>
<author>
<name>Benoit Daloze</name>
<email>eregontp@gmail.com</email>
</author>
<published>2021-06-25T11:38:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=1cf111774f03c6d1ddba735cb8cc79483f16f699'/>
<id>1cf111774f03c6d1ddba735cb8cc79483f16f699</id>
<content type='text'>
* Using a module to map scheme name to scheme class, which also works with Ractor.
* No constant redefinition, no ObjectSpace, still fast lookup for initial schemes.

https://github.com/ruby/uri/commit/883567fd81
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Using a module to map scheme name to scheme class, which also works with Ractor.
* No constant redefinition, no ObjectSpace, still fast lookup for initial schemes.

https://github.com/ruby/uri/commit/883567fd81
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/uri] Revert "Fix to support Ruby 3.0 Ractor"</title>
<updated>2021-07-27T07:54:26+00:00</updated>
<author>
<name>Benoit Daloze</name>
<email>eregontp@gmail.com</email>
</author>
<published>2021-06-25T11:24:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=090d799c2496f4c0e1f25c9970f4015fc693ff0e'/>
<id>090d799c2496f4c0e1f25c9970f4015fc693ff0e</id>
<content type='text'>
* This reverts commit 1faa4fdc161d7aeebdb5de0c407b923beaecf898.
* It has too many problems, see https://github.com/ruby/uri/pull/22 for discussion.

https://github.com/ruby/uri/commit/b959da2dc9
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* This reverts commit 1faa4fdc161d7aeebdb5de0c407b923beaecf898.
* It has too many problems, see https://github.com/ruby/uri/pull/22 for discussion.

https://github.com/ruby/uri/commit/b959da2dc9
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/uri] Fix to support Ruby 3.0 Ractor</title>
<updated>2021-07-27T07:54:26+00:00</updated>
<author>
<name>kvokka</name>
<email>kvokka@yahoo.com</email>
</author>
<published>2021-05-29T10:29:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=a288c21a5d46418e75c0f03eb12ff0782e51568d'/>
<id>a288c21a5d46418e75c0f03eb12ff0782e51568d</id>
<content type='text'>
https://github.com/ruby/uri/commit/1faa4fdc16
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/uri/commit/1faa4fdc16
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/uri] remove comment about URI::escape as it is removed</title>
<updated>2021-04-22T05:55:05+00:00</updated>
<author>
<name>Felix Wong</name>
<email>felix@waf.hk</email>
</author>
<published>2021-04-21T18:32:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=291cfa7125b86d3a14d477effd0e58bdc1723141'/>
<id>291cfa7125b86d3a14d477effd0e58bdc1723141</id>
<content type='text'>
https://github.com/ruby/uri/commit/0f0057e1b2
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/uri/commit/0f0057e1b2
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/uri] Remove RCS keywords</title>
<updated>2020-03-26T09:06:14+00:00</updated>
<author>
<name>David Rodríguez</name>
<email>deivid.rodriguez@riseup.net</email>
</author>
<published>2020-03-13T09:54:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=9e8d75e8819972377dc1457fc0d0e489bb9c533b'/>
<id>9e8d75e8819972377dc1457fc0d0e489bb9c533b</id>
<content type='text'>
https://github.com/ruby/uri/commit/1bcb1203ad
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/uri/commit/1bcb1203ad
</pre>
</div>
</content>
</entry>
</feed>
