Skip to content
This repository has been archived by the owner on Jun 13, 2021. It is now read-only.

Releases: davidtsadler/ebay-sdk-php

Version 4.0.0

24 Apr 10:27
Compare
Choose a tag to compare

Breaking changes

  • Support Trading API version 963.
  • Support Shopping API version 963.

Version 3.0.0

11 Apr 13:50
Compare
Choose a tag to compare

Breaking changes

  • Support Trading API version 961.
  • Support Shopping API version 961.

Version 2.0.0

28 Mar 17:17
Compare
Choose a tag to compare

Breaking changes

  • Support Trading API version 959.
  • Support Shopping API version 959.

Doc

  • Added version information.
  • Corrected site map for API guide.

Version 1.0.0

19 Mar 23:58
Compare
Choose a tag to compare

As this is version 1.0.0 there are a few breaking changes. A full list can be found in the migration guide.

Version 0.5.0

20 Nov 14:24
Compare
Choose a tag to compare

Fixes

  • Some properties where incorrectly declared as being DTS\eBaySDK\ResolutionCaseManagement\Types\Integer instead of integer.
  • Correct URLs for Resolution Case Management service.

API

  • Support Trading API version 947.

Version 0.4.0

07 Nov 14:52
Compare
Choose a tag to compare

Version 0.3.0

11 Oct 15:36
Compare
Choose a tag to compare

API

  • Support Merchant Data API version 941.
  • Support Shopping API version 941.
  • Support Trading API version 941.

Fixes

Order of object properties now matches the order specified in the service WSDL. Some operations require the elements in the XML to be in the correct order. Since the object properties were originally in alphabetical order the resulting XML would not be valid.

The generated XML is no longer a single string. It was possible to generate XML that was greater than the 20,000 character limit found in the LMS. Each element in the XML is now separated by a line-feed character.

Version 0.2.0

11 Aug 20:25
Compare
Choose a tag to compare

API

  • Support Merchant Data API version 933.
  • Support Trading API version 933.

Version 0.1.1

05 Aug 20:12
Compare
Choose a tag to compare

Feature

Assigning values when instatiating an object has been improved. It is now possible to simply pass an associative array of property names and values. When a property expects an object as its value you can just pass another associative array instead. For example,

$variation = new Types\VariationType(array(
    'SKU' => 'TS-W-S',
    'Quantity' => 5,
    'StartPrice' => ['value' => 10.99],
    'VariationSpecifics' => [[
        'NameValueList' => [
            ['Name' => 'Color', 'Value' => ['White']],
            ['Name' => "Size (Men's)", 'Value' => ['S']]
        ]
    ]]
));

This feature is compatiable with the existing method and so you can mix and match as in the example below.

$variation = new Types\VariationType(array(
    'SKU' => 'TS-W-S',
    'Quantity' => 5,
    'StartPrice' => new Types\AmountType(['value' => 10.99]),
    'VariationSpecifics' => [[
        'NameValueList' => [
            new Types\NameValueListType(['Name' => 'Color', 'Value' => ['White']]),
            ['Name' => "Size (Men's)", 'Value' => ['S']]
        ]
    ]]
));

Version 0.1.0

02 Aug 07:26
Compare
Choose a tag to compare

Initial Release

API

  • Support Merchant Data API version 931.
  • Support Trading API version 931.