@nictool/dns-resource-record 1.1.5 → 1.1.6
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 +6 -1
- package/package.json +1 -1
- package/rr/sshfp.js +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,11 @@ Notable changes to this project are documented in this file.
|
|
|
6
6
|
#### Unreleased
|
|
7
7
|
|
|
8
8
|
|
|
9
|
+
### [1.1.6] - 2022-06-21
|
|
10
|
+
|
|
11
|
+
- doc(sshfp): added RFC 7479, 8709
|
|
12
|
+
|
|
13
|
+
|
|
9
14
|
### [1.1.5] - 2022-06-03
|
|
10
15
|
|
|
11
16
|
- ci: auto-populate node LTS versions to run CI tests with
|
|
@@ -305,5 +310,5 @@ Notable changes to this project are documented in this file.
|
|
|
305
310
|
[0.2.1]: https://github.com/NicTool/dns-resource-record/releases/tag/0.2.1
|
|
306
311
|
[0.2.0]: https://github.com/NicTool/dns-resource-record/releases/tag/0.2.0
|
|
307
312
|
[1.1.4]: https://github.com/NicTool/dns-resource-record/releases/tag/1.1.4
|
|
308
|
-
|
|
309
313
|
[1.1.5]: https://github.com/NicTool/dns-resource-record/releases/tag/1.1.5
|
|
314
|
+
[1.1.6]: https://github.com/NicTool/dns-resource-record/releases/tag/1.1.6
|
package/package.json
CHANGED
package/rr/sshfp.js
CHANGED
|
@@ -9,7 +9,7 @@ export default class SSHFP extends RR {
|
|
|
9
9
|
|
|
10
10
|
/****** Resource record specific setters *******/
|
|
11
11
|
setAlgorithm (val) {
|
|
12
|
-
// 0: reserved
|
|
12
|
+
// 0: reserved 1: RSA 2: DSA 3: ECDSA 4: Ed25519 6: Ed448
|
|
13
13
|
this.is8bitInt('SSHFP', 'algorithm', val)
|
|
14
14
|
|
|
15
15
|
this.set('algorithm', val)
|
|
@@ -35,7 +35,7 @@ export default class SSHFP extends RR {
|
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
getRFCs () {
|
|
38
|
-
return [ 4255 ]
|
|
38
|
+
return [ 4255, 7479, 8709 ]
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
getTypeId () {
|