Skip to content

Releases: php-soap/wsdl-reader

Release 0.5.0

22 Sep 11:45
0.5.0
541792a

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

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

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

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

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