Skip to content

Commit

Permalink
Update to version 5.16
Browse files Browse the repository at this point in the history
  • Loading branch information
transip-abos committed Aug 26, 2019
1 parent 914ea38 commit 91287b9
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
TRANSIP API V5.16
NEW
- Added SSHFP, TLSA, and CAA to DnsEntry as acceptable types.

TRANSIP API V5.15

NEW
Expand Down
2 changes: 1 addition & 1 deletion Transip/ColocationService.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class Transip_ColocationService
/** The SOAP service that corresponds with this class. */
const SERVICE = 'ColocationService';
/** The API version. */
const API_VERSION = '5.15';
const API_VERSION = '5.16';
/** @var SoapClient The SoapClient used to perform the SOAP calls. */
protected static $_soapClient = null;

Expand Down
3 changes: 3 additions & 0 deletions Transip/DnsEntry.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ class Transip_DnsEntry
const TYPE_NS = 'NS';
const TYPE_TXT = 'TXT';
const TYPE_SRV = 'SRV';
const TYPE_SSHFP = 'SSHFP';
const TYPE_TLSA = 'TLSA';
const TYPE_CAA = 'CAA';

/**
* The name of the dns entry, for example '@' or 'www'
Expand Down
2 changes: 1 addition & 1 deletion Transip/DnsService.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Transip_DnsService
/** The SOAP service that corresponds with this class. */
const SERVICE = 'DnsService';
/** The API version. */
const API_VERSION = '5.15';
const API_VERSION = '5.16';
/** @var SoapClient The SoapClient used to perform the SOAP calls. */
protected static $_soapClient = null;

Expand Down
2 changes: 1 addition & 1 deletion Transip/DomainService.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class Transip_DomainService
/** The SOAP service that corresponds with this class. */
const SERVICE = 'DomainService';
/** The API version. */
const API_VERSION = '5.15';
const API_VERSION = '5.16';
/** @var SoapClient The SoapClient used to perform the SOAP calls. */
protected static $_soapClient = null;

Expand Down
2 changes: 1 addition & 1 deletion Transip/ForwardService.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class Transip_ForwardService
/** The SOAP service that corresponds with this class. */
const SERVICE = 'ForwardService';
/** The API version. */
const API_VERSION = '5.15';
const API_VERSION = '5.16';
/** @var SoapClient The SoapClient used to perform the SOAP calls. */
protected static $_soapClient = null;

Expand Down
2 changes: 1 addition & 1 deletion Transip/HaipService.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Transip_HaipService
/** The SOAP service that corresponds with this class. */
const SERVICE = 'HaipService';
/** The API version. */
const API_VERSION = '5.15';
const API_VERSION = '5.16';
/** @var SoapClient The SoapClient used to perform the SOAP calls. */
protected static $_soapClient = null;

Expand Down
2 changes: 1 addition & 1 deletion Transip/PropositionService.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Transip_PropositionService
/** The SOAP service that corresponds with this class. */
const SERVICE = 'PropositionService';
/** The API version. */
const API_VERSION = '5.15';
const API_VERSION = '5.16';
/** @var SoapClient The SoapClient used to perform the SOAP calls. */
protected static $_soapClient = null;

Expand Down
2 changes: 1 addition & 1 deletion Transip/VpsService.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class Transip_VpsService
/** The SOAP service that corresponds with this class. */
const SERVICE = 'VpsService';
/** The API version. */
const API_VERSION = '5.15';
const API_VERSION = '5.16';
/** @var SoapClient The SoapClient used to perform the SOAP calls. */
protected static $_soapClient = null;

Expand Down
2 changes: 1 addition & 1 deletion Transip/WebhostingService.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class Transip_WebhostingService
/** The SOAP service that corresponds with this class. */
const SERVICE = 'WebhostingService';
/** The API version. */
const API_VERSION = '5.15';
const API_VERSION = '5.16';
/** @var SoapClient The SoapClient used to perform the SOAP calls. */
protected static $_soapClient = null;

Expand Down

0 comments on commit 91287b9

Please sign in to comment.