ruby-core@ruby-lang.org archive (unofficial mirror)
 help / color / mirror / Atom feed
* [ruby-core:96788] [Ruby master Feature#16502] Add option :allow_trailing_comma to JSON#parse
       [not found] <redmine.issue-16502.20200111144327@ruby-lang.org>
@ 2020-01-11 14:43 ` oss
  2020-01-11 14:59 ` [ruby-core:96789] " mame
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 4+ messages in thread
From: oss @ 2020-01-11 14:43 UTC (permalink / raw)
  To: ruby-core

Issue #16502 has been reported by j.spanjers (Jan-Joost Spanjers).

----------------------------------------
Feature #16502: Add option :allow_trailing_comma to JSON#parse
https://bugs.ruby-lang.org/issues/16502

* Author: j.spanjers (Jan-Joost Spanjers)
* Status: Open
* Priority: Normal
* Assignee: 
* Target version: 
----------------------------------------
Hello everyone,

I'd like to be able to parse JSON sources that contain trailing commas in arrays and/or objects.

For example,

``` ruby
> JSON.parse('[1,2,3,]')
JSON::ParserError: 416: unexpected token at ']'
```


I have created a [pull request](https://github.com/ruby/ruby/pull/2831) to add the option :allow_trailing_comma to JSON#parse:

``` ruby
> JSON.parse('[1,2,3,]', allow_trailing_comma: true)
[1, 2, 3]
```


I would kindly like to ask you to consider this patch for merging in Ruby core. 


Regards,
Jan-Joost Spanjers


[1] https://github.com/ruby/ruby/pull/2831








-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [ruby-core:96789] [Ruby master Feature#16502] Add option :allow_trailing_comma to JSON#parse
       [not found] <redmine.issue-16502.20200111144327@ruby-lang.org>
  2020-01-11 14:43 ` [ruby-core:96788] [Ruby master Feature#16502] Add option :allow_trailing_comma to JSON#parse oss
@ 2020-01-11 14:59 ` mame
  2020-01-12 19:19 ` [ruby-core:96817] " oss
  2020-01-13  0:04 ` [ruby-core:96822] " mame
  3 siblings, 0 replies; 4+ messages in thread
From: mame @ 2020-01-11 14:59 UTC (permalink / raw)
  To: ruby-core

Issue #16502 has been updated by mame (Yusuke Endoh).

Status changed from Open to Feedback

The json library has another upstream repository: https://github.com/flori/json

Could you please send a pull request to them?

----------------------------------------
Feature #16502: Add option :allow_trailing_comma to JSON#parse
https://bugs.ruby-lang.org/issues/16502#change-83783

* Author: j.spanjers (Jan-Joost Spanjers)
* Status: Feedback
* Priority: Normal
* Assignee: 
* Target version: 
----------------------------------------
Hello everyone,

I'd like to be able to parse JSON sources that contain trailing commas in arrays and/or objects.

For example,

``` ruby
> JSON.parse('[1,2,3,]')
JSON::ParserError: 416: unexpected token at ']'
```


I have created a [pull request](https://github.com/ruby/ruby/pull/2831) to add the option :allow_trailing_comma to JSON#parse:

``` ruby
> JSON.parse('[1,2,3,]', allow_trailing_comma: true)
[1, 2, 3]
```


I would kindly like to ask you to consider this patch for merging in Ruby core. 


Regards,
Jan-Joost Spanjers


[1] https://github.com/ruby/ruby/pull/2831








-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [ruby-core:96817] [Ruby master Feature#16502] Add option :allow_trailing_comma to JSON#parse
       [not found] <redmine.issue-16502.20200111144327@ruby-lang.org>
  2020-01-11 14:43 ` [ruby-core:96788] [Ruby master Feature#16502] Add option :allow_trailing_comma to JSON#parse oss
  2020-01-11 14:59 ` [ruby-core:96789] " mame
@ 2020-01-12 19:19 ` oss
  2020-01-13  0:04 ` [ruby-core:96822] " mame
  3 siblings, 0 replies; 4+ messages in thread
From: oss @ 2020-01-12 19:19 UTC (permalink / raw)
  To: ruby-core

Issue #16502 has been updated by j.spanjers (Jan-Joost Spanjers).


mame (Yusuke Endoh) wrote:
> The json library has another upstream repository: https://github.com/flori/json
> 
> Could you please send a pull request to them?

Thank you for your feedback. I have created a new pull request (https://github.com/flori/json/pull/401).

----------------------------------------
Feature #16502: Add option :allow_trailing_comma to JSON#parse
https://bugs.ruby-lang.org/issues/16502#change-83812

* Author: j.spanjers (Jan-Joost Spanjers)
* Status: Feedback
* Priority: Normal
* Assignee: 
* Target version: 
----------------------------------------
Hello everyone,

I'd like to be able to parse JSON sources that contain trailing commas in arrays and/or objects.

For example,

``` ruby
> JSON.parse('[1,2,3,]')
JSON::ParserError: 416: unexpected token at ']'
```


I have created a [pull request](https://github.com/ruby/ruby/pull/2831) to add the option :allow_trailing_comma to JSON#parse:

``` ruby
> JSON.parse('[1,2,3,]', allow_trailing_comma: true)
[1, 2, 3]
```


I would kindly like to ask you to consider this patch for merging in Ruby core. 


Regards,
Jan-Joost Spanjers


[1] https://github.com/ruby/ruby/pull/2831








-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [ruby-core:96822] [Ruby master Feature#16502] Add option :allow_trailing_comma to JSON#parse
       [not found] <redmine.issue-16502.20200111144327@ruby-lang.org>
                   ` (2 preceding siblings ...)
  2020-01-12 19:19 ` [ruby-core:96817] " oss
@ 2020-01-13  0:04 ` mame
  3 siblings, 0 replies; 4+ messages in thread
From: mame @ 2020-01-13  0:04 UTC (permalink / raw)
  To: ruby-core

Issue #16502 has been updated by mame (Yusuke Endoh).

Status changed from Feedback to Closed

Thanks!  If the pull request is merged, it will be backported to ruby/ruby.  So I close this ticket.

----------------------------------------
Feature #16502: Add option :allow_trailing_comma to JSON#parse
https://bugs.ruby-lang.org/issues/16502#change-83818

* Author: j.spanjers (Jan-Joost Spanjers)
* Status: Closed
* Priority: Normal
* Assignee: 
* Target version: 
----------------------------------------
Hello everyone,

I'd like to be able to parse JSON sources that contain trailing commas in arrays and/or objects.

For example,

``` ruby
> JSON.parse('[1,2,3,]')
JSON::ParserError: 416: unexpected token at ']'
```


I have created a [pull request](https://github.com/ruby/ruby/pull/2831) to add the option :allow_trailing_comma to JSON#parse:

``` ruby
> JSON.parse('[1,2,3,]', allow_trailing_comma: true)
[1, 2, 3]
```


I would kindly like to ask you to consider this patch for merging in Ruby core. 


Regards,
Jan-Joost Spanjers


[1] https://github.com/ruby/ruby/pull/2831








-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-01-13  0:05 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <redmine.issue-16502.20200111144327@ruby-lang.org>
2020-01-11 14:43 ` [ruby-core:96788] [Ruby master Feature#16502] Add option :allow_trailing_comma to JSON#parse oss
2020-01-11 14:59 ` [ruby-core:96789] " mame
2020-01-12 19:19 ` [ruby-core:96817] " oss
2020-01-13  0:04 ` [ruby-core:96822] " mame

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).