Skip to content

Releases: php-soap/wsdl-reader

Version 0.13.0

24 May 14:13
0.13.0
7143e02
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.12.0...0.13.0

Version 0.12.0

24 May 12:47
0.12.0
df16b8a
Compare
Choose a tag to compare

What's Changed

  • Improve method type information by @veewee in #28

Full Changelog: 0.11.0...0.12.0

Version 0.11.0

24 May 10:30
0.11.0
758e2b6
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.10.0...0.11.0

Version 0.10.0

02 Apr 13:54
0.10.0
535251d
Compare
Choose a tag to compare

What's Changed

  • Update veewee/xml requirement from ^2.6 to ^2.6 || ^3.0 by @dependabot in #22
  • Parse anonymous sequence containers by @veewee in #24

New Contributors

Full Changelog: 0.9.0...0.10.0

Version 0.9.0

18 Mar 10:21
0.9.0
dedf74f
Compare
Choose a tag to compare

What's Changed

  • Parse additional XML type information that can be used for encoding by @veewee in #21

Full Changelog: 0.8.0...0.9.0

Version 0.8.0

15 Jan 14:39
0.8.0
1b1b8b0
Compare
Choose a tag to compare

What's Changed

  • Add support for multi-element attribute groups by @veewee in #20

Full Changelog: 0.7.1...0.8.0

0.7.1

14 Dec 10:55
0.7.1
e0ed480
Compare
Choose a tag to compare

What's Changed

  • feat: add support for symfony 5.4 by @EJTJ3 in #18

New Contributors

  • @EJTJ3 made their first contribution in #18

Full Changelog: 0.7.0...0.7.1

Version 0.7.0

24 Nov 07:33
0.7.0
ef5c21a
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.6.0...0.7.0

Release 0.6.0

29 Sep 06:21
0.6.0
04a7c63
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.5.0...0.6.0

Release 0.5.0

22 Sep 11:45
0.5.0
541792a
Compare
Choose a tag to compare

What's Changed

  • Mark extends as simple by @veewee in #12
  • Improve bottom type inference of nested simple types by @veewee in #13
<simpleType name="StringLength1to128">
    <restriction base="string">
	<minLength value="1"/>
	<maxLength value="128"/>
    </restriction>
</simpleType>
<complexType name="EmailType">
      <simpleContent>
          <extension base="tns:StringLength1to128">
              <attribute name="EmailType" type="string" use="optional" />
          </extension>
      </simpleContent>
</complexType>
<complexType name="VerificationType">
    <sequence>
	<element name="Email" type="tns:EmailType" minOccurs="0"></element>
    </sequence>
</complexType>
Types:
  > http://test-uri/:StringLength1to128 extends string
  > http://test-uri/:EmailType extends StringLength1to128 {
    StringLength1to128 $_
    @string $EmailType
  }
  > http://test-uri/:VerificationType {
    ?EmailType $Email
  }

Full Changelog: 0.3.0...0.5.0