dns-message 1.0.1-canary-5358558d51748ee8060d5894158491696423b95e → 1.0.1-canary-e30ae7317ba5298ba0dbe33fc2f54ef234fb28cb
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -1
- package/dist/dns-message.d.ts +2 -2
- package/dist/dns-message.js +233 -219
- package/dist/dns-message.js.map +1 -1
- package/dist/dns-message.mjs +233 -219
- package/dist/dns-message.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,15 +1,19 @@
|
|
|
1
1
|
# dns-message
|
|
2
2
|
|
|
3
|
-
## 1.0.1-canary-
|
|
3
|
+
## 1.0.1-canary-e30ae7317ba5298ba0dbe33fc2f54ef234fb28cb
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- Clamp `position.length` to `>=0` to be defensive
|
|
8
8
|
Submitted by [@kitten](https://github.com/kitten) (See [#2](https://github.com/kitten/dns-message/pull/2))
|
|
9
|
+
- ⚠️ Fix `issuerCritical` overriding CAA flags
|
|
10
|
+
Submitted by [@kitten](https://github.com/kitten) (See [#8](https://github.com/kitten/dns-message/pull/8))
|
|
9
11
|
- Constrain message compression (name) pointer references
|
|
10
12
|
Submitted by [@kitten](https://github.com/kitten) (See [#4](https://github.com/kitten/dns-message/pull/4))
|
|
11
13
|
- Encode/decode PTR, CNAME, and DNAME as names
|
|
12
14
|
Submitted by [@kitten](https://github.com/kitten) (See [#1](https://github.com/kitten/dns-message/pull/1))
|
|
15
|
+
- Change NSEC3 salt and nextDomain data fields to Uint8Array
|
|
16
|
+
Submitted by [@kitten](https://github.com/kitten) (See [#7](https://github.com/kitten/dns-message/pull/7))
|
|
13
17
|
- Enforce name and label length limits
|
|
14
18
|
Submitted by [@kitten](https://github.com/kitten) (See [#3](https://github.com/kitten/dns-message/pull/3))
|
|
15
19
|
- ⚠️ Fix `streamEncode` and `streamDecode` treating length uint16 prefix as including the length bytes themselves, rather than excluding them
|
package/dist/dns-message.d.ts
CHANGED
|
@@ -285,8 +285,8 @@ interface Nsec3Data {
|
|
|
285
285
|
algorithm: number;
|
|
286
286
|
flags: number;
|
|
287
287
|
iterations: number;
|
|
288
|
-
salt:
|
|
289
|
-
nextDomain:
|
|
288
|
+
salt: Uint8Array;
|
|
289
|
+
nextDomain: Uint8Array;
|
|
290
290
|
rrtypes: RecordType[];
|
|
291
291
|
}
|
|
292
292
|
interface Nsec3Answer extends BaseAnswer {
|