Skip Menu |

This queue is for tickets about the JIRA-REST CPAN distribution.

Report information
The Basics
Id: 122524
Status: resolved
Priority: 0/
Queue: JIRA-REST

People
Owner: GNUSTAVO [...] cpan.org
Requestors: GRANTG [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.018
Fixed in: (no value)



Subject: JIRA::REST actually requires JSON 2.23, not "0"
JIRA::REST calls JSON->new->utf8, which exists only in JSON 2.23 and newer. Patch: --- ../Makefile.PL 2017-07-17 23:51:43.000000000 -0400 +++ ./Makefile.PL 2017-07-17 23:49:55.000000000 -0400 @@ -21,7 +21,7 @@ "Config::Identity" => "0.0019", "HTML::TreeBuilder" => 0, "HTTP::Status" => 0, - "JSON" => 0, + "JSON" => "2.23", "MIME::Base64" => 0, "Net::Netrc" => 0, "REST::Client" => 0,
On Mon Jul 17 23:56:52 2017, GRANTG wrote: Show quoted text
> JIRA::REST calls JSON->new->utf8, which exists only in JSON 2.23 and newer.
Thank you, GRANTG. I just pushed a commit to fix this: https://github.com/gnustavo/JIRA-REST/commit/7f609de87f1cc078e0f2ccdae1eca9ff67488de3 It'll be part of the next release.
Subject: Re: [rt.cpan.org #122524] JIRA::REST actually requires JSON 2.23, not "0"
Date: Wed, 19 Jul 2017 08:44:22 -0700
To: bug-jira-rest [...] rt.cpan.org
From: Grant Grueninger <grant.grueninger [...] gmail.com>
Cool thanks - and thanks for a very handy module. Grant -- Grant Grueninger On July 18, 2017 at 3:14:58 PM, Gustavo Leite de Mendonça Chaves via RT ( bug-jira-rest@rt.cpan.org) wrote: Show quoted text
> <URL: https://rt.cpan.org/Ticket/Display.html?id=122524 > > > On Mon Jul 17 23:56:52 2017, GRANTG wrote: > > JIRA::REST calls JSON->new->utf8, which exists only in JSON 2.23 and > newer. > > > Thank you, GRANTG. > > I just pushed a commit to fix this: > https://github.com/gnustavo/JIRA-REST/commit/7f609de87f1cc078e0f2ccdae1eca9ff67488de3 > > It'll be part of the next release. >