Commit Graph

  • 2a16be401c bump version to 3.003 fix_dependencies Dinis Lage 2015-04-01 13:53:09 +01:00
  • ea1e8640a3 fix use base to SOAP::WSDL::SOAP::Header Dinis Lage 2015-04-01 13:44:16 +01:00
  • c35791c506 Merge pull request #2 from rejitnatarajan/pod-fix master Scott Walters 2015-02-11 22:46:16 -06:00
  • b803f83abd missing asterisk fixes pod error rejit natarajan 2015-02-12 09:55:29 +05:30
  • e95ff8baba Changelog entries for 3.002, too late for release. oops. and what exactly where the 3.001 changes? oh well. Scott Walters 2014-09-16 17:49:01 -04:00
  • cad782dbf2 bump version to 3.002, and also change each file from having their own version number to referring to $SOAP::WSDL::VERSION since they aren't really individually versions anyway but just copies of that number. Scott Walters 2014-09-16 17:40:18 -04:00
  • 99c5eb4dd7 remove META.yml (I still don't know how that's supposed to work) and Makefile (which I do know wasn't supposed to be in git) Scott Walters 2014-09-16 03:29:56 -04:00
  • a1e9927846 Declare dependency on Class::Load Thanks ANDYK! Ref Bug #98628 for SOAP-WSDL: Undeclared dependency on Class::Load https://rt.cpan.org/Public/Bug/Display.html?id=98628 Scott Walters 2014-09-15 19:17:08 -04:00
  • ba407622f5 Merge pull request #1 from szabgab/patch-1 Scott Walters 2014-08-30 03:52:40 -04:00
  • 5b9f3c640b link to GitHub from META files Gabor Szabo 2014-08-30 10:27:21 +03:00
  • ed715a4c88 smoke testing looks pretty good, only failing on amd64-netbsd machines and one random Linux machine (I should look why but I really don't want to know), so, bump version to 3.001 and do a release. FAIL 5.10.1 NetBSD 6.1.4 amd64-netbsd FAIL 5.14.2 GNU/Linux 3.11.0-18-generic x86_64-linux-thread-multi FAIL 5.10.1 NetBSD 6.1.4 amd64-netbsd-thread-multi Scott Walters 2014-08-29 15:05:06 -04:00
  • f5787f6057 version bump to 3.00.0_2 and Changes entry Scott Walters 2014-08-28 21:16:50 -04:00
  • 374793ef68 get rid of Build.PL; we use ExtUtils::MakeMaker now. Scott Walters 2014-08-28 21:08:13 -04:00
  • 7f6af60ed8 oops, global version search and replace ruined a comment. leave it ruined Scott Walters 2014-08-28 21:05:13 -04:00
  • 37740b870a fix a hash randomization bug that was causing random failures in t/SOAP/WSDL/05_simpleType-list.t Scott Walters 2014-08-28 21:03:39 -04:00
  • 31f5deacf5 2624a9 for #86142, adding the XML declaration to the output, broke another part of the system, so work around that. I accidentally stopped doing "recursive" tests (tests in subdirs) at some point and missed some of this fun breakage. Scott Walters 2014-08-28 21:01:51 -04:00
  • 3197383a7d update POD; thought I commit this already... ? Scott Walters 2014-08-28 20:38:31 -04:00
  • 285ffa463c okay, dam@cpan.org's fix for using not using ->usa('UNIVERSAL') to test if something loaded apparently works in a situation where mine doesn't, that was causing tests to fail. Scott Walters 2014-08-28 18:26:41 -04:00
  • 35321ce5d0 run tests recursively under ExtUtils::MakeMaker. Scott Walters 2014-08-28 16:25:55 -04:00
  • 08b156a546 take Module::Build out of inc. it doesn't work. don't use it. Scott Walters 2014-08-28 16:25:29 -04:00
  • 605732b836 https://rt.cpan.org/Ticket/Display.html?id=82028 -- POD error results in broken link generated Scott Walters 2014-08-27 18:28:43 -04:00
  • 1994b36d8b switch from Module::Build to Make::Maker based Makefile.PL after Module::Build vomited on trying to 'make dist', and then when that was fixed, generated a completely busted dist without error. good riddance. Scott Walters 2014-08-27 17:53:50 -04:00
  • f3ae85aed5 default directory for t/098_pod.t. not sure why it was doing @dir = (); if(ENV var) { @dir = 'some dir that exists' }. this would make a path analysis tool cry. Scott Walters 2014-08-27 17:52:41 -04:00
  • 7d81cfce87 bump version to 3.00.00_1; update POD a bit; include contact info for myself; declare this module deprecated and in maintenance mode; include Module::Build in the 'inc' dir to avoid a warning about it being deprecated from core inclusion; add mention of the UNIVERSAL->isa() bug created by Class::Std::Fast to the POD for BUGS AND LIMITATIONS. Scott Walters 2014-08-27 17:39:52 -04:00
  • 2624a9d5c0 applied patch from ticket #86142: Missing XML declaration in request https://rt.cpan.org/Public/Bug/Display.html?id=86142 tests still pass, so, good enough, right? Scott Walters 2014-08-21 20:50:56 -04:00
  • 45982ff330 Huh. Between 5.12 and 5.16 somewhere, the behavior of ClassName->isa('UNIVERSAL') changed. It used to be that that would return true if and only if that namespace existed. Now it always returns true for any random non-existant made up name. Changed this to do ->can() on a known existing method modules with this API have (serialize) instead after floundering around for a bit. exists ${"main::"}{$type.'::'} worked a little bit but made it barf for some reason I didn't investigate. This is the problem apparently behind the previous "haunted house level shit" fixes and reversions. This thing does automatically load these modules on the fly. Would be nice if the unit tests had some comments in them. Scott Walters 2014-08-21 08:37:49 -04:00
  • cfd5892b18 Revert "was barfing with "Can't locate object method "new" via package "MyElement" (perhaps you forgot to load "MyElement"?) at lib/SOAP/WSDL/XSD/Typelib/Comple" ref haunted house level shit going weird message in previous revert. Scott Walters 2014-08-21 07:48:30 -04:00
  • 6e95d01610 Revert "maybe I'm doing the wrong thing by adding use lines for test modules" Wow. Even with the "fix" in, it runs correctly once, and then starts vomiting with a similar error again as before the fix. it'll fail 20 times in a row, then pass 20 times in a row. there's some haunted house level shit going wrong here. Scott Walters 2014-08-21 07:47:02 -04:00
  • b121a061d8 maybe I'm doing the wrong thing by adding use lines for test modules that unit tests use. maybe there's some magic that's supposed to automatically use those things, even though they're hidden in deeply buried paths with no machine predictable naming scheme. I can't imagine that these unit tests passed before unless there is/was some magic. I hobbled this in to working with a use lib and a use for the module, but after doing this second one of these, I'm having serious doubts about whether I'm just spackling over the problem. Scott Walters 2014-08-21 07:37:22 -04:00
  • d2f324a7f2 oops, changing error messages breaks tests. make them match again. don't change the tests. change the error messages. that way the error message's awkwardness hints at the code's awkwardness. Scott Walters 2014-08-21 07:34:19 -04:00
  • f2ce9511e0 I don't get it. There were two calls to get_port() right next to each other, in the very same ? :, and one of them had a ->[0] tacked on the end and the other one didn't. Well guess what... the one without was returning an arrayref, which caused these failures in the unit tests: Can't call method "get_binding" on unblessed reference at /home/scott/projects/SOAP-WSDL/blib/lib/SOAP/WSDL.pm line 186. Scott Walters 2014-08-21 07:27:58 -04:00
  • 50c8d5b31f oh, look, ComplexType.pm has cut and paste hash reversing code from SimpleType.pm. that means that we can cut and paste the fix from SimpleType.pm into ComplexType.pm. how many wrongs make a right? I forget. Scott Walters 2014-08-21 07:26:30 -04:00
  • 47dc61bd9e protip: reverse %hash with '#default' => 'urn:myNamespace', 'tns' => 'urn:myNamespace' results in misery. random hash ordering made a pile of tests in t/003_wsdl_based_serializer.t randomly pass and fail in unison. I smelled a smell. Scott Walters 2014-08-21 06:32:11 -04:00
  • 3670df3e69 "vectors" (totally not the same thing as a vector in other languages or on a Cray 1) have been deprecated and removed. pretend like they never existed. Scott Walters 2014-08-21 05:20:56 -04:00
  • d221e87b29 was barfing with "Can't locate object method "new" via package "MyElement" (perhaps you forgot to load "MyElement"?) at lib/SOAP/WSDL/XSD/Typelib/Comple xType.pm line 213.". Okay, then, MyElement.pm exists in t/lib. Let's try using it. And it worked. Incidentally, the code at lib/SOAP/WSDL/XSD/Typelib/ComplexType.pm is heinous. Scott Walters 2014-08-21 05:17:05 -04:00
  • 001c36f8e8 fix two instances of the "Can't modify non-lvalue subroutine call at lib/SOAP/WSDL.pm line 167." error. it looks like the author wrote Scott Walters 2014-08-20 08:37:33 -04:00
  • 9023aa06a4 import SOAP-WSDL 2.00.10 from CPAN 2.00.10 Martin Kutter 2009-05-15 14:52:28 -08:00
  • 3b30e8d0e2 import SOAP-WSDL 2.00.09 from CPAN 2.00.09 Martin Kutter 2009-02-23 13:22:29 -08:00
  • fb9fd4a2b1 import SOAP-WSDL 2.00.08 from CPAN 2.00.08 Martin Kutter 2009-02-22 11:39:40 -08:00
  • bfc3247583 import SOAP-WSDL 2.00.07 from CPAN 2.00.07 Martin Kutter 2009-02-21 08:10:58 -08:00
  • 3de318be40 import SOAP-WSDL 2.00.06 from CPAN 2.00.06 Martin Kutter 2008-12-03 13:40:56 -08:00
  • c2ac24dd0f import SOAP-WSDL 2.00.05 from CPAN 2.00.05 Martin Kutter 2008-07-13 11:36:11 -08:00
  • c3e3d1908e import SOAP-WSDL 2.00.04 from CPAN 2.00.04 Martin Kutter 2008-06-05 11:24:54 -08:00
  • e58a27e2ad import SOAP-WSDL 2.00.03 from CPAN 2.00.03 Martin Kutter 2008-05-18 12:24:41 -08:00
  • 915ee03cbe import SOAP-WSDL 2.00.02 from CPAN 2.00.02 Martin Kutter 2008-05-16 04:20:13 -08:00
  • 745ce925c1 import SOAP-WSDL 2.00.01 from CPAN 2.00.01 Martin Kutter 2008-04-22 14:00:59 -08:00
  • 0cbf981665 import SOAP-WSDL 2.00_33 from CPAN 2.00_33 Martin Kutter 2008-03-30 12:52:28 -08:00
  • 51db446428 import SOAP-WSDL 2.00_32 from CPAN 2.00_32 Martin Kutter 2008-02-14 09:13:39 -08:00
  • f0b3bdc201 import SOAP-WSDL 2.00_31 from CPAN 2.00_31 Martin Kutter 2008-02-10 15:36:36 -08:00
  • 874251225f import SOAP-WSDL 2.00_29 from CPAN 2.00_29 Martin Kutter 2008-01-20 14:43:56 -08:00
  • 2bad767211 import SOAP-WSDL 1.27 from CPAN 1.27 Martin Kutter 2008-01-13 04:59:16 -08:00
  • 7ca2154ad6 import SOAP-WSDL 2.00_28 from CPAN 2.00_28 Martin Kutter 2008-01-08 11:34:47 -08:00
  • eb096ad88e import SOAP-WSDL 2.00_27 from CPAN 2.00_27 Martin Kutter 2007-12-19 14:17:23 -08:00
  • 3cfeebae54 import SOAP-WSDL 2.00_26 from CPAN 2.00_26 Martin Kutter 2007-12-03 14:33:48 -08:00
  • a9033164e6 import SOAP-WSDL 2.00_25 from CPAN 2.00_25 Martin Kutter 2007-12-02 14:26:22 -08:00
  • 84b53d9261 import SOAP-WSDL 2.00_24 from CPAN 2.00_24 Martin Kutter 2007-11-17 14:07:49 -08:00
  • b955c5ad79 import SOAP-WSDL 2.00_23 from CPAN 2.00_23 Martin Kutter 2007-11-05 13:47:05 -08:00
  • 080b211e4e import SOAP-WSDL 2.00_22 from CPAN 2.00_22 Martin Kutter 2007-10-23 23:36:22 -08:00
  • fa4d5dd884 import SOAP-WSDL 2.00_20 from CPAN 2.00_20 Martin Kutter 2007-10-18 02:33:51 -08:00
  • 3d11524449 import SOAP-WSDL 2.00_19 from CPAN 2.00_19 Martin Kutter 2007-10-15 12:58:31 -08:00
  • 21efa286af import SOAP-WSDL 2.00_18 from CPAN 2.00_18 Martin Kutter 2007-10-07 09:34:20 -08:00
  • 008d06b72a import SOAP-WSDL 2.00_17 from CPAN 2.00_17 Martin Kutter 2007-10-05 09:50:09 -08:00
  • c6a48ba84b import SOAP-WSDL 1.26 from CPAN 1.26 Martin Kutter 2007-10-04 23:29:57 -08:00
  • 30be0da3dc import SOAP-WSDL 2.00_16 from CPAN 2.00_16 Martin Kutter 2007-09-29 12:52:16 -08:00
  • 2347a88353 import SOAP-WSDL 1.25 from CPAN 1.25 Martin Kutter 2007-09-24 12:30:15 -08:00
  • 9e85f63aa0 import SOAP-WSDL 1.24 from CPAN 1.24 Martin Kutter 2007-09-22 11:00:55 -08:00
  • 7ba2f93e44 import SOAP-WSDL 2.00_15 from CPAN 2.00_15 Martin Kutter 2007-09-11 04:24:21 -08:00
  • 099c83b6bc import SOAP-WSDL 2.00_14 from CPAN 2.00_14 Martin Kutter 2007-09-11 02:02:21 -08:00
  • f63138fc87 import SOAP-WSDL 2.00_13 from CPAN 2.00_13 Martin Kutter 2007-09-10 08:23:59 -08:00
  • fd0854e34a import SOAP-WSDL 2.00_12 from CPAN 2.00_12 Martin Kutter 2007-09-03 07:25:01 -08:00
  • c2da74b5ae import SOAP-WSDL 2.00_11 from CPAN 2.00_11 Martin Kutter 2007-09-01 01:38:05 -08:00
  • 7ba1959888 import SOAP-WSDL 2.00_10 from CPAN 2.00_10 Martin Kutter 2007-08-13 10:45:49 -08:00
  • a554e87f49 import SOAP-WSDL 2.00_09 from CPAN 2.00_09 Martin Kutter 2007-08-12 05:15:39 -08:00
  • 312f3d6bbd import SOAP-WSDL 2.00_08 from CPAN 2.00_08 Martin Kutter 2007-08-05 08:48:17 -08:00
  • 40e0e67e84 import SOAP-WSDL 2.00_07 from CPAN 2.00_07 Martin Kutter 2007-07-21 13:25:53 -08:00
  • 25548e6296 import SOAP-WSDL 2.00_06 from CPAN 2.00_06 Martin Kutter 2007-07-20 05:38:01 -08:00
  • a78d6d15b5 import SOAP-WSDL 2.00_05 from CPAN 2.00_05 Martin Kutter 2007-07-10 02:04:16 -08:00
  • 5c42b1d8f6 import SOAP-WSDL 2.00_04 from CPAN 2.00_04 Martin Kutter 2007-07-04 06:13:16 -08:00
  • 21b5330a8d import SOAP-WSDL 2.00_03 from CPAN 2.00_03 Martin Kutter 2007-07-03 23:52:14 -08:00
  • 7716d4349a import SOAP-WSDL 2.00_02 from CPAN 2.00_02 Martin Kutter 2007-06-28 03:05:54 -08:00
  • 6fe52c4370 import SOAP-WSDL 2.00_01 from CPAN 2.00_01 Martin Kutter 2007-06-28 01:07:38 -08:00
  • bfbf5e27e0 import SOAP-WSDL 1.23 from CPAN 1.23 Martin Kutter 2007-06-05 11:52:26 -08:00
  • 903b3e95e4 import SOAP-WSDL 1.22 from CPAN 1.22 Martin Kutter 2007-05-30 00:52:27 -08:00
  • a31389246e import SOAP-WSDL 1.21 from CPAN 1.21 Martin Kutter 2007-05-28 05:50:22 -08:00
  • 95465c33d9 import SOAP-WSDL 1.20 from CPAN 1.20 Martin Kutter 2004-08-10 00:01:16 -08:00
  • 1d8092299a import SOAP-WSDL 1.19 from CPAN 1.19 Martin Kutter 2004-07-27 05:17:55 -08:00
  • 90ea294d66 import SOAP-WSDL 1.18 from CPAN 1.18 Martin Kutter 2004-07-16 00:02:40 -08:00
  • 121b801cc8 import SOAP-WSDL 1.17 from CPAN 1.17 Martin Kutter 2004-07-09 01:24:58 -08:00
  • f528d729f6 initial import of SOAP-WSDL from CPAN Martin Kutter 2004-07-09 01:18:07 -08:00