summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 2.2.0 versioningv2.2.0Bob Halley2022-01-184-6/+6
|
* skip async DoH tests if no httpxv2.2.0rc1Bob Halley2021-12-211-1/+5
| | | | (cherry picked from commit ec5bee76861f3da38dd6b72f01c28ea888a346c8)
* Allow unknown digest types [#625]Bob Halley2021-12-202-14/+13
| | | | (cherry picked from commit d2b4a140d6da9d2d60570152a2507d96614b1326)
* add dns.edns.EDECode enumBob Halley2021-12-193-8/+43
|
* edns: implement Extended DNS Error Option supportTomas Krizek2021-12-192-1/+93
| | | | | This is quite minimalistic implementation of the Extended DNS Errors (RFC 8914). It just allows access to code and text fields.
* regenerate rdatatype-list.rstBob Halley2021-12-191-1/+11
|
* try again to get 2.2 workflow to runBob Halley2021-12-181-2/+2
|
* reference the github project pageBob Halley2021-12-181-2/+2
|
* 2.2.0rc1 versioningBob Halley2021-12-185-8/+11
|
* Do not set asyncio future if it is already done. [#740]Bob Halley2021-12-171-1/+1
|
* lint from flakeBob Halley2021-12-173-4/+2
|
* lintBob Halley2021-12-179-27/+26
|
* lint and remove unused helpersBob Halley2021-12-171-15/+2
|
* Merge pull request #739 from rthalley/dependabot/pip/mypy-tw-0.920Bob Halley2021-12-171-1/+1
|\ | | | | Update mypy requirement from ^0.910 to ^0.920
| * Update mypy requirement from ^0.910 to ^0.920dependabot/pip/mypy-tw-0.920dependabot[bot]2021-12-161-1/+1
|/ | | | | | | | | | | | | Updates the requirements on [mypy](https://github.com/python/mypy) to permit the latest version. - [Release notes](https://github.com/python/mypy/releases) - [Commits](https://github.com/python/mypy/compare/v0.910...v0.920) --- updated-dependencies: - dependency-name: mypy dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com>
* add WMI extra; simplify install doc a bitBob Halley2021-12-152-4/+15
|
* add 3.10 classifierBob Halley2021-12-151-0/+2
|
* cope with 3.6 exception differenceBob Halley2021-12-071-3/+9
|
* add quoting to python version listBob Halley2021-12-071-3/+7
|
* add runs-onBob Halley2021-12-071-1/+3
|
* test 3.10 and windows tooBob Halley2021-12-071-2/+7
|
* Merge pull request #731 from rthalley/cname-and-other-dataBob Halley2021-12-036-22/+416
|\ | | | | First draft of CNAME and other data handling in zones.
| * fix typos; simplify _check_cname_and_other_dataBob Halley2021-12-032-7/+7
| |
| * add missing @ to immutable invocationBob Halley2021-12-021-1/+1
| |
| * refactor to have a get_node() in the txn APIcname-and-other-dataBob Halley2021-12-025-85/+147
| |
| * fix doco errorsBob Halley2021-12-022-3/+3
| |
| * simpliy node.is_cname()Bob Halley2021-12-021-4/+1
| |
| * cname and other data check in zonefile readerBob Halley2021-12-024-17/+59
| |
| * infrastructure needed for CNAME-and-other-data check in txnBob Halley2021-12-024-17/+112
| |
| * incorporate review feedbackBob Halley2021-12-022-8/+15
| |
| * more doco for CNAME-and-other-dataBob Halley2021-12-021-1/+14
| |
| * doco for CNAME-and-other-dataBob Halley2021-12-021-0/+10
| |
| * First draft of CNAME and other data handling in zones.Bob Halley2021-12-023-10/+178
|/
* Merge pull request #734 from rthalley/zone-refactorBob Halley2021-12-022-271/+225
|\ | | | | Refactor zone transactions to always use versioned CoW code.
| * Refactor zone transactions to always use versioned CoW code.zone-refactorBob Halley2021-12-012-271/+225
|/
* Fix replacement txn bugs in non-versioned zones [#732].Bob Halley2021-11-282-5/+39
|
* note issues around rdata comparisonBob Halley2021-11-281-2/+28
|
* note that Curio cannot be used for DoHBob Halley2021-11-271-0/+3
|
* basic testing for async DoHBob Halley2021-11-271-1/+58
|
* Node find_rdataset() should set covers when creating [#730]Bob Halley2021-11-262-2/+11
|
* Merge pull request #729 from ↵Bob Halley2021-11-231-1/+1
|\ | | | | | | | | rthalley/dependabot/pip/cryptography-gte-2.6-and-lt-37.0 Update cryptography requirement from >=2.6,<36.0 to >=2.6,<37.0
| * Update cryptography requirement from >=2.6,<36.0 to >=2.6,<37.0dependabot/pip/cryptography-gte-2.6-and-lt-37.0dependabot[bot]2021-11-221-1/+1
|/ | | | | | | | | | | | | | Updates the requirements on [cryptography](https://github.com/pyca/cryptography) to permit the latest version. - [Release notes](https://github.com/pyca/cryptography/releases) - [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pyca/cryptography/compare/2.6...36.0.0) --- updated-dependencies: - dependency-name: cryptography dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
* update whatsnewBob Halley2021-11-201-0/+17
|
* fix hyperlink targetBob Halley2021-11-201-1/+1
|
* Merge pull request #715 from rthalley/rrset-readerBob Halley2021-11-204-49/+429
|\ | | | | rrset-reader PR
| * add read_rrsets() documentationBob Halley2021-11-203-0/+109
| |
| * remove incorrect commentrrset-readerBob Halley2021-11-171-2/+0
| |
| * rrset-reader PRBob Halley2021-11-012-49/+322
| |
* | Merge pull request #723 from rthalley/httpx_if_possibleBob Halley2021-11-208-23/+272
|\ \ | | | | | | For DoH, use httpx and with HTTP/2 if we can
| * | mention async DoH in whatsnewBob Halley2021-11-201-0/+2
| | |