Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

YAML parser stops processing at the first newline when a byte order mark is present #331

Open
BanzaiMan opened this issue Oct 22, 2017 · 1 comment

Comments

@BanzaiMan
Copy link

Migrating https://bugs.ruby-lang.org/issues/13615.

Description

When the input has a byte order mark, the YAML parser stops processing the input upon seeing the first newline.

I believe this is a violation of YAML specification. http://www.yaml.org/spec/1.2/spec.html#id2771184

[1] pry(main)> RUBY_DESCRIPTION
=> "ruby 2.4.1p111 (2017-03-22 revision 58053) [x86_64-darwin15]"
[2] pry(main)> require 'yaml'
=> true
[3] pry(main)> YAML.load("a: b\nc: d")
=> {"a"=>"b", "c"=>"d"}
[4] pry(main)> YAML.load("\xEF\xBB\xBF" + "a: b\nc: d")
=> {"a"=>"b"}
@BanzaiMan
Copy link
Author

This is still an issue with 3.0.0 preview1

$ pry
[1] pry(main)> RUBY_DESCRIPTION
=> "ruby 3.0.0preview1 (2020-09-25 master 0096d2b895) [x86_64-darwin19]"
[2] pry(main)> require 'yaml'
=> true
[3] pry(main)> YAML.load("a: b\nc: d")
=> {"a"=>"b", "c"=>"d"}
[4] pry(main)> YAML.load("\xEF\xBB\xBF" + "a: b\nc: d")
=> {"a"=>"b"}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

1 participant