From 1e1c8dec5c91172c436dc86f31c0cd6f711dee94 Mon Sep 17 00:00:00 2001 From: Styxit Date: Thu, 30 Apr 2020 14:29:05 +0200 Subject: [PATCH 1/4] Remove types not supported by PowerDNS --- src/RecordType.php | 25 ++----------------------- 1 file changed, 2 insertions(+), 23 deletions(-) diff --git a/src/RecordType.php b/src/RecordType.php index 12484c3..7b8ac03 100644 --- a/src/RecordType.php +++ b/src/RecordType.php @@ -3,7 +3,8 @@ namespace Exonet\Powerdns; /** - * List of possible DNS Record types. Source: https://en.wikipedia.org/wiki/List_of_DNS_record_types. + * List of possible DNS Record types supported by PowerDNS. + * Source: https://doc.powerdns.com/md/types/ */ class RecordType { @@ -36,13 +37,6 @@ class RecordType */ public const ALIAS = 'ALIAS'; - /** - * Address Prefix List. - * - * Specify lists of address ranges, e.g. in CIDR format, for various address families. Experimental. - */ - public const APL = 'APL'; - /** * Certification Authority Authorization. * @@ -111,13 +105,6 @@ class RecordType */ public const DS = 'DS'; - /** - * Host Identity Protocol. - * - * Method of separating the end-point identifier and locator roles of IP addresses. - */ - public const HIP = 'HIP'; - /** * IPsec Key. * @@ -264,14 +251,6 @@ class RecordType */ public const SSHFP = 'SSHFP'; - /** - * DNSSEC Trust Authorities. - * - * Part of a deployment proposal for DNSSEC without a signed DNS root. See the IANA database and Weiler Spec for - * details. Uses the same format as the DS record. - */ - public const TA = 'TA'; - /** * Transaction Key record. * From 8acf04b350f0e75cc5acb29027766cfa00081ddf Mon Sep 17 00:00:00 2001 From: Styxit Date: Thu, 30 Apr 2020 14:37:23 +0200 Subject: [PATCH 2/4] Update PR template, remove reference to develop --- .github/PULL_REQUEST_TEMPLATE.md | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 66af763..c74eaec 100755 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -36,7 +36,6 @@ Please, please, please, don't send your pull request until all of the boxes are - [ ] I have read the **[CONTRIBUTING](../.github/CONTRIBUTING.md)** document. - [ ] My pull request addresses exactly one patch/feature. - [ ] I have created a branch for this patch/feature. -- [ ] I'm creating this PR to the `develop` branch. - [ ] Each individual commit in the pull request is meaningful. - [ ] I have added tests to cover my changes. - [ ] If my change requires a change to the documentation, I have updated it accordingly. From bb1312be498d31f6f5590f39221d3f6ac30e00c0 Mon Sep 17 00:00:00 2001 From: Styxit Date: Thu, 30 Apr 2020 14:40:20 +0200 Subject: [PATCH 3/4] Update changelog for new release --- CHANGELOG.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a3e633..c1aee5d 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,15 @@ All notable changes to `powerdns-php` will be documented in this file. Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) principles. ## Unreleased -[Compare v2.2.0 - Unreleased](https://github.com/exonet/powerdns-php/compare/v2.2.0...develop) +[Compare v2.3.0 - Unreleased](https://github.com/exonet/powerdns-php/compare/v2.3.0...develop) + +## [v2.3.0](https://github.com/exonet/powerdns-php/releases/tag/v2.3.0) - 2020-04-30 +[Compare v2.2.0 - v2.3.0](https://github.com/exonet/powerdns-php/compare/v2.2.0...v2.3.0) +### Added +- The record type `SPF`. ([Th3Mouk](https://github.com/Th3Mouk) - [#30](https://github.com/exonet/powerdns-php/pull/30)) + +### Fixed +- Removed record types `APL`, `HIP` and `TA` which are not supported by PowerDNS. ## [v2.2.0](https://github.com/exonet/powerdns-php/releases/tag/v2.2.0) - 2020-04-01 [Compare v2.1.0 - v2.2.0](https://github.com/exonet/powerdns-php/compare/v2.1.0...v2.2.0) From 08e7e55da80ed11fd3be18c1dc750328b38f6587 Mon Sep 17 00:00:00 2001 From: Styxit Date: Thu, 30 Apr 2020 12:40:38 +0000 Subject: [PATCH 4/4] Apply fixes from StyleCI --- src/RecordType.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/RecordType.php b/src/RecordType.php index 7b8ac03..9be67ae 100644 --- a/src/RecordType.php +++ b/src/RecordType.php @@ -4,7 +4,7 @@ /** * List of possible DNS Record types supported by PowerDNS. - * Source: https://doc.powerdns.com/md/types/ + * Source: https://doc.powerdns.com/md/types/. */ class RecordType {