<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ruby.git/test/psych, branch v3_3_11</title>
<subtitle>The Ruby Programming Language</subtitle>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/'/>
<entry>
<title>[ruby/psych] Use `assert_same` in tests where applicable</title>
<updated>2023-12-19T02:07:46+00:00</updated>
<author>
<name>Alexander Momchilov</name>
<email>alexandermomchilov@gmail.com</email>
</author>
<published>2023-12-18T09:01:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=b3598f95fa997e667bb9e8003b0284ab2a4db081'/>
<id>b3598f95fa997e667bb9e8003b0284ab2a4db081</id>
<content type='text'>
https://github.com/ruby/psych/commit/0dc25a9d6a
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/psych/commit/0dc25a9d6a
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/psych] Add test for code_point_limit</title>
<updated>2023-10-02T02:47:35+00:00</updated>
<author>
<name>Charles Oliver Nutter</name>
<email>headius@headius.com</email>
</author>
<published>2023-09-18T14:54:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=5c501bcbdb163f8e27d098e2149cf9840e1043ac'/>
<id>5c501bcbdb163f8e27d098e2149cf9840e1043ac</id>
<content type='text'>
Only supported on JRuby currently.

https://github.com/ruby/psych/commit/0c1754eefe
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Only supported on JRuby currently.

https://github.com/ruby/psych/commit/0c1754eefe
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/psych] Skip BigDecimal tests when it's missing to load</title>
<updated>2023-07-18T02:55:47+00:00</updated>
<author>
<name>Hiroshi SHIBATA</name>
<email>hsbt@ruby-lang.org</email>
</author>
<published>2023-07-18T02:32:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=b368990ce632aaa11581d3b8f9fa9fd77401121a'/>
<id>b368990ce632aaa11581d3b8f9fa9fd77401121a</id>
<content type='text'>
https://github.com/ruby/psych/commit/e1dbfae7a6
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/psych/commit/e1dbfae7a6
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/psych] Prefer `assert_include` for simple strings</title>
<updated>2023-06-12T03:02:10+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2023-06-08T12:52:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=10e6626426fcbac3978fa63e9dd0b95076339239'/>
<id>10e6626426fcbac3978fa63e9dd0b95076339239</id>
<content type='text'>
https://github.com/ruby/psych/commit/33024ce2b0
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/psych/commit/33024ce2b0
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/psych] Update for stricter 1.2 syntax</title>
<updated>2023-01-31T04:14:05+00:00</updated>
<author>
<name>Charles Oliver Nutter</name>
<email>headius@headius.com</email>
</author>
<published>2023-01-18T17:32:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=29133794a3b2aea1e3f3451cd3720176ce75ed1f'/>
<id>29133794a3b2aea1e3f3451cd3720176ce75ed1f</id>
<content type='text'>
This allows these tests to pass on SnakeYAML Engine -- which is a
1.2-only YAML library -- while still passing on libyaml 1.1.

https://github.com/ruby/psych/commit/f44269fc9b
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This allows these tests to pass on SnakeYAML Engine -- which is a
1.2-only YAML library -- while still passing on libyaml 1.1.

https://github.com/ruby/psych/commit/f44269fc9b
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/psych] Fix RestrictedYAMLTree allowing the Symbol class should allow all symbols</title>
<updated>2023-01-23T02:07:23+00:00</updated>
<author>
<name>Jean Boussier</name>
<email>jean.boussier@gmail.com</email>
</author>
<published>2023-01-22T14:04:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=8fded5f5d12be958ca803627a541e5a5d9323586'/>
<id>8fded5f5d12be958ca803627a541e5a5d9323586</id>
<content type='text'>
Ref: https://github.com/ruby/psych/pull/495

That's how it works for `safe_load`:
```ruby
&gt;&gt; YAML.safe_load(':foo', permitted_classes: [Symbol])
=&gt; :foo
```

So `safe_dump` should mirror that.

https://github.com/ruby/psych/commit/592a75a656
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Ref: https://github.com/ruby/psych/pull/495

That's how it works for `safe_load`:
```ruby
&gt;&gt; YAML.safe_load(':foo', permitted_classes: [Symbol])
=&gt; :foo
```

So `safe_dump` should mirror that.

https://github.com/ruby/psych/commit/592a75a656
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/psych] Get rid of anonymous eval calls</title>
<updated>2023-01-11T10:08:13+00:00</updated>
<author>
<name>Jean Boussier</name>
<email>jean.boussier@gmail.com</email>
</author>
<published>2023-01-11T10:00:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=3161fd437210588ef7ce41d614ab317de11d2ec1'/>
<id>3161fd437210588ef7ce41d614ab317de11d2ec1</id>
<content type='text'>
Things declared in anonymous eval are always annoying to locate.

https://github.com/ruby/psych/commit/38871ad4e5
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Things declared in anonymous eval are always annoying to locate.

https://github.com/ruby/psych/commit/38871ad4e5
</pre>
</div>
</content>
</entry>
<entry>
<title>Always issue deprecation warning when calling Regexp.new with 3rd positional argument</title>
<updated>2022-12-22T19:50:26+00:00</updated>
<author>
<name>Jeremy Evans</name>
<email>code@jeremyevans.net</email>
</author>
<published>2022-12-20T20:44:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=7e8fa06022a9e412e3f8e6c8b6f0ba1909f648d5'/>
<id>7e8fa06022a9e412e3f8e6c8b6f0ba1909f648d5</id>
<content type='text'>
Previously, only certain values of the 3rd argument triggered a
deprecation warning.

First step for fix for bug #18797.  Support for the 3rd argument
will be removed after the release of Ruby 3.2.

Fix minor fallout discovered by the tests.

Co-authored-by: Nobuyoshi Nakada &lt;nobu@ruby-lang.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously, only certain values of the 3rd argument triggered a
deprecation warning.

First step for fix for bug #18797.  Support for the 3rd argument
will be removed after the release of Ruby 3.2.

Fix minor fallout discovered by the tests.

Co-authored-by: Nobuyoshi Nakada &lt;nobu@ruby-lang.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge Psych-5.0.1</title>
<updated>2022-12-09T07:36:22+00:00</updated>
<author>
<name>Hiroshi SHIBATA</name>
<email>hsbt@ruby-lang.org</email>
</author>
<published>2022-12-09T05:36:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=d928ebacb23639cbf3f28201304f0451e5bd45a7'/>
<id>d928ebacb23639cbf3f28201304f0451e5bd45a7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/psych] Dump Date/DateTime as proleptic Gregorian date as well as Time</title>
<updated>2022-09-07T00:44:14+00:00</updated>
<author>
<name>Nobuyoshi Nakada</name>
<email>nobu@ruby-lang.org</email>
</author>
<published>2022-08-09T00:22:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=cbdde8e0c574f19e170c3de05dd0bbd276acb741'/>
<id>cbdde8e0c574f19e170c3de05dd0bbd276acb741</id>
<content type='text'>
Fix ruby/psych#572

https://github.com/ruby/psych/commit/92304269bc
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix ruby/psych#572

https://github.com/ruby/psych/commit/92304269bc
</pre>
</div>
</content>
</entry>
</feed>
