You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2021/10/22 08:25:07 UTC

[libcloud] branch trunk updated (97247b0 -> e06fb47)

This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a change to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git.


    from 97247b0  Merge pull request #1615 from micafer/ost_disabled_images
     new bcfec62  Specify lower timeout for integration tests job.
     add 754f2b4  Fix NSOne DNS Provider
     new 4048faa  Merge branch 'fix/nsone-create-record' of https://github.com/karantan/libcloud into karantan-fix/nsone-create-record
     new e06fb47  Add changelog entry.

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/integration-tests.yml            |  1 +
 CHANGES.rst                                        |  4 ++
 libcloud/dns/drivers/nsone.py                      | 21 +++----
 .../nsone/create_record_already_exists.json        |  3 +
 .../dns/fixtures/nsone/create_record_success.json  | 24 ++++++++
 .../nsone/create_record_zone_not_found.json        |  3 +
 libcloud/test/dns/test_nsone.py                    | 66 +++++++++++++++++++++-
 7 files changed, 110 insertions(+), 12 deletions(-)
 create mode 100644 libcloud/test/dns/fixtures/nsone/create_record_already_exists.json
 create mode 100644 libcloud/test/dns/fixtures/nsone/create_record_success.json
 create mode 100644 libcloud/test/dns/fixtures/nsone/create_record_zone_not_found.json

[libcloud] 03/03: Add changelog entry.

Posted by to...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git

commit e06fb47f01622b86fd4500cc843b98ebdcf9beed
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Fri Oct 22 10:24:18 2021 +0200

    Add changelog entry.
---
 CHANGES.rst | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/CHANGES.rst b/CHANGES.rst
index b9054d6..ca3e27a 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -73,6 +73,10 @@ DNS
   (GITHUB-1570)
   [Gasper Vozel - @karantan]
 
+- [NSOne] Fix MX records and root domain handling.
+  (GITHUB-1571)
+  [Gasper Vozel - @karantan]
+
 Other
 ~~~~~
 

[libcloud] 02/03: Merge branch 'fix/nsone-create-record' of https://github.com/karantan/libcloud into karantan-fix/nsone-create-record

Posted by to...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git

commit 4048faa0d489246fd32601e4f1a903e263dce9b5
Merge: bcfec62 754f2b4
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Fri Oct 22 10:23:37 2021 +0200

    Merge branch 'fix/nsone-create-record' of https://github.com/karantan/libcloud into karantan-fix/nsone-create-record

 libcloud/dns/drivers/nsone.py                      | 21 +++----
 .../nsone/create_record_already_exists.json        |  3 +
 .../dns/fixtures/nsone/create_record_success.json  | 24 ++++++++
 .../nsone/create_record_zone_not_found.json        |  3 +
 libcloud/test/dns/test_nsone.py                    | 66 +++++++++++++++++++++-
 5 files changed, 105 insertions(+), 12 deletions(-)

[libcloud] 01/03: Specify lower timeout for integration tests job.

Posted by to...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git

commit bcfec6202a05b460bfbc5ea52ac72774dbdc4649
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Fri Oct 22 10:21:16 2021 +0200

    Specify lower timeout for integration tests job.
---
 .github/workflows/integration-tests.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml
index 76ecf4b..bf6b944 100644
--- a/.github/workflows/integration-tests.yml
+++ b/.github/workflows/integration-tests.yml
@@ -37,6 +37,7 @@ jobs:
   integration_tests:
     name: Run Integration Tests
     runs-on: ubuntu-latest
+    timeout-minutes: 30
 
     needs: pre_job
     if: ${{ needs.pre_job.outputs.should_skip == 'false' || github.ref == 'refs/heads/trunk' }}