summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 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
| | |
| * | async https docoBob Halley2021-11-201-2/+10
| | |
| * | remove backend parameter to https()Bob Halley2021-11-201-3/+3
| | |
| * | async resolver supporthttpx_if_possibleBob Halley2021-11-171-2/+3
| | |
| * | initial implemention of async https queryBob Halley2021-11-172-3/+89
| | |
| * | fix DoH requirementsBob Halley2021-11-162-2/+4
| | |
| * | fix session check when httpx is not installedBob Halley2021-11-161-1/+4
| | |
| * | incorporate feedback about sessions, optional http1, and http2 availabilityBob Halley2021-11-163-20/+40
| | |
| * | For DoH, use httpx and with HTTP/2 if we can, but fall back to requests if ↵Bob Halley2021-11-102-13/+140
| | | | | | | | | | | | we have to.
* | | use win32utilBob Halley2021-11-171-158/+8
| | |
* | | Do not impose 2**31-1 bounds on TTL-like things; impose 2**32-1.Bob Halley2021-11-164-16/+15
| | |
* | | remove out-of-date commentBob Halley2021-11-161-2/+0
| | |
* | | Merge pull request #722 from rthalley/win32utilBob Halley2021-11-162-9/+255
|\ \ \ | | | | | | | | Add WMI-based method for finding resolver info on Windows.
| * | | Add WMI-based method for finding resolver info on Windows.win32utilBob Halley2021-11-092-9/+255
| |/ /
* | | update version in doco titleBob Halley2021-11-161-2/+2
| | |
* | | try again with better .readthedocs.yml syntaxBob Halley2021-11-141-1/+1
| | |
* | | pin versions for readthedocsBob Halley2021-11-142-0/+4
| | |
* | | fix examples.rst quotingBob Halley2021-11-141-0/+2
|/ /
* | Handle DHCP servers returning domains prefixed by dot [#687].Bob Halley2021-11-072-0/+15
| |
* | update RD=0 example now that we have a flags parameterBob Halley2021-11-071-5/+6
| |
* | Merge pull request #719 from paulehoffman/rd=0-exampleBob Halley2021-11-071-0/+10
|\ \ | | | | | | Extended the example to include one with RD=0
| * | Extended the example to include one with RD=0Paul Hoffman2021-11-021-0/+10
| | |
* | | Merge pull request #718 from paulehoffman/examples-docBob Halley2021-11-022-0/+11
|\ \ \ | | | | | | | | Added small section to the manual about examples
| * | | Added small section to the manual about examplesPaul Hoffman2021-11-022-0/+11
| |/ /
* | | Merge pull request #720 from bwelling/make-query-flagsBob Halley2021-11-022-2/+11
|\ \ \ | |_|/ |/| | Add flags to dns.message.make_query().
| * | Add flags to dns.message.make_query().Brian Wellington2021-11-022-2/+11
|/ /
* | add setup.cfg to sdistBob Halley2021-10-261-1/+2
| |
* | poetry style kittingBob Halley2021-10-262-1/+25
| |
* | Distinguish between the two causes of NoResolverConfiguration in the ↵Bob Halley2021-10-251-2/+2
| | | | | | | | exception string
* | Merge pull request #694 from rthalley/continue_on_errorBob Halley2021-10-252-91/+172
|\ \ | | | | | | Continue on error
| * | Simplify; add a MessageError class.continue_on_errorBob Halley2021-10-242-50/+54
| | |
| * | add test of continue_on_errorBob Halley2021-10-231-1/+38
| | |
| * | change error format to have current instead of last goodBob Halley2021-10-231-10/+9
| | |
| * | draft continue_on_errorBob Halley2021-10-231-62/+103
| | |
* | | Validate resolver nameservers when set [Issue #699].Bob Halley2021-10-244-17/+18
|/ /
* | Merge pull request #703 from rthalley/cmp_fixBob Halley2021-10-205-15/+180
|\ \ | | | | | | Fix #698 and #702, problems caused by _cmp() giving the wrong result in some cases
| * | _cmp() raised NoRelativeRdataOrdering in abs vs. abs casecmp_fixBob Halley2021-10-141-3/+5
| | |
| * | Allow relative rdata comparisons for now, but disallow in the future.Bob Halley2021-10-142-37/+114
| | |
| * | fix ordering issue with relative rdatasBob Halley2021-10-141-4/+4
| | |
| * | fix accidental reversion of message.py typo fixBob Halley2021-10-111-1/+2
| | |
| * | Fix #698 and #702, problems caused by _cmp() giving the wrongBob Halley2021-10-115-11/+96
| |/ | | | | | | | | result in certain comparisons of rdata with relative and absolute names.
* | Merge pull request #713 from peterthomassen/20211020_cds_rfc8078_deleteBob Halley2021-10-203-17/+35
|\ \ | | | | | | Allow digest type 0 for CDS