Skip to content

Releases: php-soap/wsdl-reader

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

Release 0.4.0

25 Aug 14:56
0.4.0
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.3.0...0.4.0

Version 0.3.0

25 Aug 12:53
0.3.0
94e8b00
Compare
Choose a tag to compare

What's Changed

  • Detect attributes base-types by @veewee in #10
  • Extract nested inline complex element types by @veewee in #11

Full Changelog: 0.2.0...0.3.0

Release 0.2.0

25 May 10:23
0.2.0
cb65f93
Compare
Choose a tag to compare

What's Changed

  • Automatically import known SOAP related schemas by @veewee in #8

Full Changelog: 0.1.0...0.2.0

Release 0.1.0

01 Apr 19:13
0.1.0
9d834e8
Compare
Choose a tag to compare

What's Changed

  • Basic architecture
  • Parse simple-type info like unions and enumerations by @veewee in #1
  • Improved engine v2 metadata by @veewee in #2
  • Make known schemas configurable by @veewee in #3
  • Extends WSDL tools instead of providing a second CLI by @veewee in #4
  • Get rid of leftover TODOs by @veewee in #5
  • Fancy meta table in inspection details by @veewee in #6

New Contributors

  • @veewee made their first contribution in #1

Full Changelog: https://github.com/php-soap/wsdl-reader/commits/0.1.0