summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
* more 2.2.1 prepBob Halley2022-03-061-2/+2
|
* documentation updateDJ Anniss2022-03-061-2/+2
| | | | | | Was just reading through and this part confused me a bit with the wording. (cherry picked from commit 15406879f19289bf9b0f288a817437f63b92f851)
* 2.2.1 whatsnew prepBob Halley2022-02-271-0/+27
|
* fix documentation broken by the immutable mechanismBob Halley2022-02-272-0/+6
| | | | (cherry picked from commit 95045c5834732042b59f3fcc08f086e7cf139b22)
* fix various typing issues (typos)Sebastian Wagner2022-01-295-7/+7
| | | | | | I stumbled over a few typos and then decided to fix 'em all (cherry picked from commit a593b38d892f6b5b2180086157d73bff181f1475)
* version prep for 2.2.1Bob Halley2022-01-251-1/+1
|
* 2.2.0 versioningv2.2.0Bob Halley2022-01-181-1/+1
|
* add dns.edns.EDECode enumBob Halley2021-12-191-0/+2
|
* regenerate rdatatype-list.rstBob Halley2021-12-191-1/+11
|
* 2.2.0rc1 versioningBob Halley2021-12-182-3/+6
|
* doco for CNAME-and-other-dataBob Halley2021-12-021-0/+10
|
* note issues around rdata comparisonBob Halley2021-11-281-2/+28
|
* note that Curio cannot be used for DoHBob Halley2021-11-271-0/+3
|
* 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-202-0/+60
|\ | | | | rrset-reader PR
| * add read_rrsets() documentationBob Halley2021-11-202-0/+60
| |
* | Merge pull request #723 from rthalley/httpx_if_possibleBob Halley2021-11-202-2/+12
|\ \ | | | | | | 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
| | |
* | | update version in doco titleBob Halley2021-11-161-2/+2
| | |
* | | pin versions for readthedocsBob Halley2021-11-141-0/+3
| | |
* | | fix examples.rst quotingBob Halley2021-11-141-0/+2
|/ /
* | Added small section to the manual about examplesPaul Hoffman2021-11-022-0/+11
|/
* add some doc on thread safetyBob Halley2021-10-102-0/+31
|
* update with 2.2.0 changes so farBob Halley2021-05-101-2/+9
|
* Fix typoAntonio Huete Jimenez2021-03-231-1/+1
|
* post 2.1.0 versioningBob Halley2021-01-071-0/+5
|
* Set 2.1.0 version.Bob Halley2021-01-071-1/+1
|
* docs: fix simple typo, transation -> translationTim Gates2020-12-291-1/+1
| | | | | | There is a small typo in doc/zone-class.rst. Should read `translation` rather than `transation`.
* resolve_chaining() now returns a ChainingResult object.Bob Halley2020-12-211-1/+10
|
* update versions for 2.1.0rc1Bob Halley2020-10-301-1/+1
|
* add a note on type annotationsBob Halley2020-08-312-0/+11
|
* refresh doco rdatatype listBob Halley2020-08-271-6/+16
|
* add SMIMEA to whatsnewBob Halley2020-08-271-1/+1
|
* Adds SMIMEA record type, RFC 8162Nils Wisiol2020-08-273-0/+23
|
* minor doco editsBob Halley2020-08-224-9/+15
|
* update whatsnew.rstBob Halley2020-08-211-0/+13
|
* Implement new inbound xfr design.xfrBob Halley2020-08-215-2/+38
|
* doco updateBob Halley2020-08-112-1/+70
|
* mention GSS-TSIG and TKEY in what's newBob Halley2020-08-081-0/+3
|
* SVCB and HTTPS supportBob Halley2020-08-071-0/+2
|
* Have only one one top-level section for What's New.Bob Halley2020-07-231-4/+7
|
* Update with what's new in 2.1.0.Bob Halley2020-07-201-0/+19
|
* Add canonical_name() to async resolver too.Bob Halley2020-07-201-0/+1
|
* Add canonical_name() method to resolver.Bob Halley2020-07-201-0/+1
|
* rename statistics class; add documentationcache_statsBob Halley2020-07-191-1/+8
|
* Add documentation.Brian Wellington2020-07-171-0/+1
|
* Document some parser_from_wire() methods.Bob Halley2020-07-023-0/+3
|
* Add dns.tsig.Key class.Brian Wellington2020-07-011-3/+1
| | | | | | | | | | | | | | | | | | | | This creates a new class to represent a TSIG key, containing name, secret, and algorithm. The keyring format is changed to be {name : key}, and the methods in dns.tsigkeyring are updated to deal with old and new formats. The Message class is updated to use dns.tsig.Key, although (to avoid breaking existing code), it stores them in the keyring field. Message.use_tsig() can accept either explicit keys, or keyrings; it will extract and/or create a key. dns.message.from_wire() can accept either a key or a keyring in the keyring parameter. If passed a key, it will now raise if the TSIG record in the message was signed with a different key. If passed a keyring containing keys (as opposed to bare secrets), it will check that the TSIG record's algorithm matches that of the key.