r74324 - in /branches/upstream/libjira-client-perl/current: Changes META.yml README lib/JIRA/Client.pm

angelabad-guest at users.alioth.debian.org angelabad-guest at users.alioth.debian.org
Fri May 13 14:43:01 UTC 2011


Author: angelabad-guest
Date: Fri May 13 14:41:54 2011
New Revision: 74324

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=74324
Log:
[svn-upgrade] new version libjira-client-perl (0.28)

Modified:
    branches/upstream/libjira-client-perl/current/Changes
    branches/upstream/libjira-client-perl/current/META.yml
    branches/upstream/libjira-client-perl/current/README
    branches/upstream/libjira-client-perl/current/lib/JIRA/Client.pm

Modified: branches/upstream/libjira-client-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libjira-client-perl/current/Changes?rev=74324&op=diff
==============================================================================
--- branches/upstream/libjira-client-perl/current/Changes (original)
+++ branches/upstream/libjira-client-perl/current/Changes Fri May 13 14:41:54 2011
@@ -1,4 +1,10 @@
 Revision history for JIRA-Client
+
+0.28	2011-05-09
+
+	JIRA::Client->new passes extra arguments to the underlying
+	SOAP::Lite object. This was suggested by Nicholas J Humfrey
+	<njh AT cpan DOT org>.
 
 0.27	2011-03-05
 

Modified: branches/upstream/libjira-client-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libjira-client-perl/current/META.yml?rev=74324&op=diff
==============================================================================
--- branches/upstream/libjira-client-perl/current/META.yml (original)
+++ branches/upstream/libjira-client-perl/current/META.yml Fri May 13 14:41:54 2011
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               JIRA-Client
-version:            0.27
+version:            0.28
 abstract:           An extended interface to JIRA's SOAP API.
 author:
     - Gustavo Chaves <gnustavo at cpan.org>

Modified: branches/upstream/libjira-client-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libjira-client-perl/current/README?rev=74324&op=diff
==============================================================================
--- branches/upstream/libjira-client-perl/current/README (original)
+++ branches/upstream/libjira-client-perl/current/README Fri May 13 14:41:54 2011
@@ -1,6 +1,6 @@
 Name:    JIRA-Client
 What:    A OO interface to JIRA's SOAP API.
-Version: 0.27
+Version: 0.28
 Author:  Gustavo Chaves <gnustavo at cpan.org>
 
 JIRA is a proprietary bug tracking system from Atlassian
@@ -52,7 +52,7 @@
 
 COPYRIGHT AND LICENCE
 
-Copyright (C) 2009 CPqD (http://www.cpqd.com.br/)
+Copyright (C) 2009-2011 CPqD (http://www.cpqd.com.br/)
 
 This program is free software; you can redistribute it and/or modify it
 under the same terms as Perl itself.

Modified: branches/upstream/libjira-client-perl/current/lib/JIRA/Client.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libjira-client-perl/current/lib/JIRA/Client.pm?rev=74324&op=diff
==============================================================================
--- branches/upstream/libjira-client-perl/current/lib/JIRA/Client.pm (original)
+++ branches/upstream/libjira-client-perl/current/lib/JIRA/Client.pm Fri May 13 14:41:54 2011
@@ -11,11 +11,11 @@
 
 =head1 VERSION
 
-Version 0.27
-
-=cut
-
-our $VERSION = '0.27';
+Version 0.28
+
+=cut
+
+our $VERSION = '0.28';
 
 =head1 SYNOPSIS
 
@@ -98,19 +98,21 @@
 
 =over 4
 
-=item B<new> JIRAURL, USER, PASSWD
-
-The JIRA::Client constructor needs three arguments. JIRAURL is JIRA's
-base URL from which will be constructed it's WSDL descriptor as
+=item B<new> JIRAURL, USER, PASSWD [, <SOAP::Lite arguments>]
+
+The JIRA::Client constructor requires three arguments. JIRAURL is
+JIRA's base URL from which will be constructed it's WSDL descriptor as
 C<$JIRAURL/rpc/soap/jirasoapservice-v2?wsdl>. USER and PASSWD are the
-credentials that will be used to authenticate into JIRA.
+credentials that will be used to authenticate into JIRA. Any other
+arguments will be passed to the L<SOAP::Lite> object that will be
+created to talk to JIRA.
 
 =cut
 
 sub new {
-    my ($class, $base_url, $user, $pass) = @_;
-
-    my $soap = SOAP::Lite->proxy("$base_url/rpc/soap/jirasoapservice-v2?wsdl");
+    my ($class, $base_url, $user, $pass, @args) = @_;
+
+    my $soap = SOAP::Lite->proxy("$base_url/rpc/soap/jirasoapservice-v2?wsdl", @args);
 
     # Make all scalars be encoded as strings by default.
     %{$soap->typelookup()} = (default => [0, sub {1}, 'as_string']);
@@ -1295,7 +1297,7 @@
 
 =head1 COPYRIGHT & LICENSE
 
-Copyright 2009 CPqD, all rights reserved.
+Copyright 2009-2011 CPqD, all rights reserved.
 
 This program is free software; you can redistribute it and/or modify
 it under the same terms as Perl itself.




More information about the Pkg-perl-cvs-commits mailing list