summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Change ChainingResult "rrset" to "answer"; fix typo.resolve_chainingBob Halley2020-12-213-13/+13
|
* resolve_chaining() now returns a ChainingResult object.Bob Halley2020-12-214-14/+51
|
* resolve_chaining() should not go into an infinite loop if the qtype isBob Halley2020-12-212-0/+17
| | | | CNAME and there is no answer [Issue #610].
* Add a test of a TSIG-signed AXFR of the root.Brian Wellington2020-11-251-5/+13
|
* Merge pull request #609 from salzmdan/masterBrian Wellington2020-11-251-1/+1
|\ | | | | TSIG: don't relativize algorithm name
| * TSIG: don't relativize algorithm nameDaniel Salzman2020-11-251-1/+1
|/ | | | | | | | | | The domain name relativization of TSIG's algorithm name breaks TSIG validation when using with the Root zone. Example for algorithm hmac-sha224: zone 'example.com.' -> hmac-sha224. zone '.' -> hmac-sha224
* Do not test override with default resolver if there is no Internet.Bob Halley2020-11-191-0/+1
|
* give on on Azure windows testing for nowBob Halley2020-11-091-1/+0
|
* yet another azure attemptBob Halley2020-11-011-1/+1
|
* another azure attemptBob Halley2020-11-011-3/+3
|
* azure + poetry attemptBob Halley2020-11-011-4/+12
|
* update README.md for 2.1.0rc1v2.1.0rc1Bob Halley2020-10-301-1/+1
|
* update versions for 2.1.0rc1Bob Halley2020-10-304-4/+4
|
* Add repr() for dns.tsig.Key.Brian Wellington2020-10-291-0/+5
|
* another azure try. sigh!Bob Halley2020-10-281-1/+2
|
* another tryBob Halley2020-10-282-3/+4
|
* still yet another azure fix attemptBob Halley2020-10-281-3/+3
|
* yet another azure fix attemptBob Halley2020-10-281-1/+1
|
* another azure fix attemptBob Halley2020-10-281-2/+6
|
* azure fix take 2Bob Halley2020-10-211-2/+0
|
* try to fix azureBob Halley2020-10-211-0/+1
|
* Merge pull request #593 from rthalley/dependabot/pip/mypy-tw-0.790Bob Halley2020-10-121-1/+1
|\ | | | | Update mypy requirement from ^0.782 to ^0.790
| * Update mypy requirement from ^0.782 to ^0.790dependabot/pip/mypy-tw-0.790dependabot[bot]2020-10-121-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.782...v0.790) Signed-off-by: dependabot[bot] <support@github.com>
* First pass at adding network timeouts to tests. This is for whenBob Halley2020-10-093-28/+41
| | | | | it looks like we have a network but it's not connected to the Internet.
* add comment on NSEC downcasing to avoid future confusionBob Halley2020-10-061-0/+2
|
* we should not canonicalize SVCB/HTTPS alias target either!Bob Halley2020-10-062-3/+3
|
* The alias target of an SVCB or HTTPS rdata must not be compressed.Bob Halley2020-10-062-1/+15
|
* Merge pull request #586 from The-Compiler/no-deprecatedBob Halley2020-09-223-4/+4
|\ | | | | Avoid using deprecated Resolver.query in examples
| * Avoid using deprecated Resolver.query in examplesFlorian Bruhin2020-09-213-4/+4
|/
* Merge pull request #583 from rthalley/dependabot/pip/trio-gte-0.14-and-lt-0.18Bob Halley2020-09-161-1/+1
|\ | | | | Update trio requirement from >=0.14,<0.17 to >=0.14,<0.18
| * Update trio requirement from >=0.14,<0.17 to >=0.14,<0.18dependabot/pip/trio-gte-0.14-and-lt-0.18dependabot[bot]2020-09-161-1/+1
|/ | | | | | | Updates the requirements on [trio](https://github.com/python-trio/trio) to permit the latest version. - [Release notes](https://github.com/python-trio/trio/releases) - [Commits](https://github.com/python-trio/trio/compare/v0.14.0...v0.17.0) Signed-off-by: dependabot[bot] <support@github.com>
* Merge pull request #579 from rthalley/proc-orderBob Halley2020-09-0910-0/+250
|\ | | | | Processing order
| * increase coverage for URI and SVCB processing_order()Bob Halley2020-09-091-0/+28
| |
| * correct and simplify weighted_processing_order()Bob Halley2020-09-094-43/+17
| |
| * Simplify code.proc-orderBrian Wellington2020-09-081-8/+5
| |
| * test processing_order()Bob Halley2020-09-021-0/+113
| |
| * deal with all zero weight URI caseBob Halley2020-09-021-0/+5
| |
| * processing order implementationBob Halley2020-09-029-0/+133
| |
* | Merge pull request #580 from rthalley/full_matchBob Halley2020-09-093-27/+55
|\ \ | | | | | | Address RRset.match() signature issues
| * | fix rrset match signature problemsfull_matchBob Halley2020-09-033-27/+55
|/ /
* | add missing doco for override_rdclass parameterBob Halley2020-09-031-0/+3
| |
* | fix trio exampleBob Halley2020-09-031-7/+8
|/
* test _as_* methodsBob Halley2020-09-011-0/+73
|
* _as_ttl was not returning the value if converting from a stringBob Halley2020-09-011-1/+1
|
* improve versioned zone coverageBob Halley2020-09-011-0/+46
|
* remove obsolete change indication code from WritableVersion deletion codeBob Halley2020-09-011-5/+0
|
* add some versioned zone test casesBob Halley2020-09-011-0/+25
|
* more test coverage for dns.query._matches_destination()Bob Halley2020-09-011-0/+29
|
* check for TTL type errors in rdataset/rrset from_text; allow text-form TTLs ↵Bob Halley2020-09-013-2/+23
| | | | there.
* add a note on type annotationsBob Halley2020-08-312-0/+11
|