Skip to content

Commit

Permalink
Merge branch 'aliasRecord' into 'master'
Browse files Browse the repository at this point in the history
Add support for ALIAS dns record

See merge request transip/restapi-php-library!144
  • Loading branch information
Thies Verhave committed Sep 9, 2021
2 parents e0b39da + 412d9b4 commit 25a7e97
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ deploy:deploy-to-github:
- k8s-tbk

release:release-to-github:
image: '$IMAGE_URL_PYTHON'
stage: release
only:
- tags
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
CHANGELOG
=========

6.9.1
-----
* Added support for ALIAS DNS resource record

6.9.0
-----
* Added support for NAPTR DNS resource record
Expand Down
2 changes: 1 addition & 1 deletion ci/release_to_github.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ if [ -z "$TAG_VERSION" ] ; then
fi

function convert_to_json() {
python -c 'import json,sys;print json.dumps(sys.stdin.read().strip())'
python -c 'import json,sys;print( json.dumps(sys.stdin.read().strip()) )'
}

description="$(git tag -l -n999 --format='%(contents)' $TAG_VERSION | convert_to_json)"
Expand Down
1 change: 1 addition & 0 deletions src/Entity/Domain/DnsEntry.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ class DnsEntry extends AbstractEntity
public const TYPE_TLSA = 'TLSA';
public const TYPE_CAA = 'CAA';
public const TYPE_NAPTR = 'NAPTR';
public const TYPE_ALIAS = 'ALIAS';

/**
* @var string $name
Expand Down
2 changes: 1 addition & 1 deletion src/TransipAPI.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
class TransipAPI
{
public const TRANSIP_API_ENDPOINT = "https://api.transip.nl/v6";
public const TRANSIP_API_LIBRARY_VERSION = "6.9.0";
public const TRANSIP_API_LIBRARY_VERSION = "6.9.1";
public const TRANSIP_API_DEMO_TOKEN = "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImp0aSI6ImN3MiFSbDU2eDNoUnkjelM4YmdOIn0.eyJpc3MiOiJhcGkudHJhbnNpcC5ubCIsImF1ZCI6ImFwaS50cmFuc2lwLm5sIiwianRpIjoiY3cyIVJsNTZ4M2hSeSN6UzhiZ04iLCJpYXQiOjE1ODIyMDE1NTAsIm5iZiI6MTU4MjIwMTU1MCwiZXhwIjoyMTE4NzQ1NTUwLCJjaWQiOiI2MDQ0OSIsInJvIjpmYWxzZSwiZ2siOmZhbHNlLCJrdiI6dHJ1ZX0.fYBWV4O5WPXxGuWG-vcrFWqmRHBm9yp0PHiYh_oAWxWxCaZX2Rf6WJfc13AxEeZ67-lY0TA2kSaOCp0PggBb_MGj73t4cH8gdwDJzANVxkiPL1Saqiw2NgZ3IHASJnisUWNnZp8HnrhLLe5ficvb1D9WOUOItmFC2ZgfGObNhlL2y-AMNLT4X7oNgrNTGm-mespo0jD_qH9dK5_evSzS3K8o03gu6p19jxfsnIh8TIVRvNdluYC2wo4qDl5EW5BEZ8OSuJ121ncOT1oRpzXB0cVZ9e5_UVAEr9X3f26_Eomg52-PjrgcRJ_jPIUYbrlo06KjjX2h0fzMr21ZE023Gw";

/**
Expand Down

0 comments on commit 25a7e97

Please sign in to comment.