@nictool/dns-resource-record 1.1.3 → 1.1.4

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +81 -30
  2. package/README.md +3 -3
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,19 +1,30 @@
1
+ # Changelog
1
2
 
2
- #### N.N.N - YYYY-MM-DD
3
+ Notable changes to this project are documented in this file.
3
4
 
4
5
 
5
- #### 1.1.3 - 2022-05-29
6
+ #### Unreleased
7
+
8
+ ### [1.1.4] - 2022-05-29
9
+
10
+ #### Changed
11
+
12
+ - doc(README): improved develop notes
13
+ - doc(CHANGELOG): make version numbers links
14
+
15
+
16
+ ### [1.1.3] - 2022-05-29
6
17
 
7
18
  - chore: publish npm package in @nictool namespace
8
19
 
9
20
 
10
- #### 1.1.2 - 2022-05-28
21
+ ### [1.1.2] - 2022-05-28
11
22
 
12
23
  - chore(ci): replace .release with submodule
13
24
  - chore(ci): use GHA with shared workflows
14
25
 
15
26
 
16
- #### 1.1.1 - 2022-04-28
27
+ ### [1.1.1] - 2022-04-28
17
28
 
18
29
  - feat(DNSKEY): expanded algo from 1-5 to 1-16 (RFC 8624)
19
30
  - warn if outside that range, not error
@@ -21,7 +32,7 @@
21
32
  - test(dnskey): update fail test
22
33
 
23
34
 
24
- #### 1.1.0 - 2022-04-22
35
+ ### [1.1.0] - 2022-04-22
25
36
 
26
37
  - feat(tinydns): add ipv4toOctal, octalToIPv4, base64toOctal, octalToBase64
27
38
  - feat(DNSKEY,DS,IPSECKEY,TLSA): added to/fromTinydns support
@@ -35,7 +46,7 @@
35
46
  - tinydns.unpackdomain: return fqdn + length, for RRs where the FQDN is part of the byte stream
36
47
 
37
48
 
38
- #### 1.0.1 - 2022-04-19
49
+ ### [1.0.1] - 2022-04-19
39
50
 
40
51
  - feat(IPSECKEY): added basic support
41
52
  - doc(README): update for ES module usage
@@ -46,7 +57,7 @@
46
57
  - test(KEY): added valid test
47
58
 
48
59
 
49
- #### 1.0.0 - 2022-04-18
60
+ ### [1.0.0] - 2022-04-18
50
61
 
51
62
  - style: move rr/index to ./rr
52
63
  - test: add base.getRdataFields
@@ -54,7 +65,7 @@
54
65
  - test: add base.getRdataFields
55
66
 
56
67
 
57
- #### 0.9.9 - 2022-04-14
68
+ ### [0.9.9] - 2022-04-14
58
69
 
59
70
  - feat: parser improvements (DNSKEY, HINFO, NAPTR, SOA, TLSA, TXT)
60
71
  - CAA: more robust fromBind parser
@@ -64,7 +75,7 @@
64
75
  - README: move some content to web links
65
76
 
66
77
 
67
- #### 0.9.8 - 2022-04-07
78
+ ### [0.9.8] - 2022-04-07
68
79
 
69
80
  - url updates
70
81
  - fix: txt records
@@ -72,7 +83,7 @@
72
83
  - docs: updates
73
84
 
74
85
 
75
- #### 0.9.7 - 2022-03-29
86
+ ### [0.9.7] - 2022-03-29
76
87
 
77
88
  - index
78
89
  - previousName -> previousOwner
@@ -84,7 +95,7 @@
84
95
  - add index.citeRFC
85
96
 
86
97
 
87
- #### 0.9.6 - 2022-03-27
98
+ ### [0.9.6] - 2022-03-27
88
99
 
89
100
  - rr\*: rename name -> owner (not overloaded)
90
101
  - RFC 4034: letters in DNS names are lower cased
@@ -94,7 +105,7 @@
94
105
  - add CERT, KEY, NSEC, NSEC3, NSEC3PARAM, OPENPGPKEY, SIG
95
106
 
96
107
 
97
- #### 0.9.5 - 2022-03-26
108
+ ### [0.9.5] - 2022-03-26
98
109
 
99
110
  - README: add docs for getRFCs()
100
111
  - dnskey: fix copy/paste errors
@@ -104,7 +115,7 @@
104
115
  - TXT: pass along zone_opts
105
116
 
106
117
 
107
- #### 0.9.4 - 2022-03-24
118
+ ### [0.9.4] - 2022-03-24
108
119
 
109
120
  - add: getComment
110
121
  - zone_opts, for influencing output of toBind
@@ -120,7 +131,7 @@
120
131
  - add uc hex chars to ip6 compress
121
132
 
122
133
 
123
- #### 0.9.3 - 2022-03-22
134
+ ### [0.9.3] - 2022-03-22
124
135
 
125
136
  - hasValidLabels: remove trailing dot, else split returns empty string
126
137
  - rename fullyQualified -> isFullyQualified
@@ -136,7 +147,7 @@
136
147
  - SPF inherits from TXT
137
148
 
138
149
 
139
- #### 0.9.2 - 2022-03-18
150
+ ### [0.9.2] - 2022-03-18
140
151
 
141
152
  - mx: weight -> preference
142
153
  - ds: keytag -> key tag (consistent naming)
@@ -149,12 +160,12 @@
149
160
  - use \_\_dirname to find RR mods
150
161
 
151
162
 
152
- #### 0.9.1 - 2022-03-14
163
+ ### [0.9.1] - 2022-03-14
153
164
 
154
165
  - TLSA, SMIMEA: add BIND support #13
155
166
 
156
167
 
157
- #### 0.9.0 - 2022-03-10
168
+ ### [0.9.0] - 2022-03-10
158
169
 
159
170
  - added null object instantiation
160
171
  - added `getTypeId`, `getDescription`, `getRdataFields`, `getQuotedFields`
@@ -168,19 +179,19 @@
168
179
  - tests: import tests from nictool 2
169
180
 
170
181
 
171
- #### 0.8.1 - 2022-03-08
182
+ ### [0.8.1] - 2022-03-08
172
183
 
173
184
  - use RFC example IPs and zone names
174
185
 
175
186
 
176
- #### 0.8.0 - 2022-02-01
187
+ ### [0.8.0] - 2022-02-01
177
188
 
178
189
  - fromBind for: A, AAAA, CNAME, TXT, CNAME, TXT, LOC, MX, NS, SOA, PTR, SPF, SSHFP, URI, CAA, DNAME, NAPTR
179
190
  - add fromTinydns: LOC
180
191
  - rr/\*: add getFields
181
192
 
182
193
 
183
- #### 0.7.0 - 2021-10-26
194
+ ### [0.7.0] - 2021-10-26
184
195
 
185
196
  - tinydns: added octalToHex, octalToUInt16, unpackDomainName, octalToInt8
186
197
  - AAAA: added fromTinydns, compress, expand
@@ -188,38 +199,38 @@
188
199
  - add tests for getRFCs
189
200
 
190
201
 
191
- #### 0.6.0 - 2021-10-25
202
+ ### [0.6.0] - 2021-10-25
192
203
 
193
204
  - tinydns: added octalToChar
194
205
  - A, MX, NS, PTR, SOA, TXT: added fromTinydns
195
206
 
196
207
 
197
- #### 0.5.1 - 2021-10-25
208
+ ### [0.5.1] - 2021-10-25
198
209
 
199
210
  - LOC: added toTinydns
200
211
  - tinydns: add UInt32toOctal
201
212
  - SRV: added support
202
213
 
203
214
 
204
- #### 0.5.0 - 2021-10-24
215
+ ### [0.5.0] - 2021-10-24
205
216
 
206
217
  - NAPTR: add toTinydns
207
218
  - tinydns: remove sprintf-js dependency
208
219
 
209
220
 
210
- #### 0.4.0 - 2021-10-22
221
+ ### [0.4.0] - 2021-10-22
211
222
 
212
223
  - CAA, DNAME, SSHFP, URI: add toTinydns
213
224
  - lib/tinydns: added packHex and UInt16AsOctal
214
225
 
215
226
 
216
- #### 0.3.1 - 2021-10-21
227
+ ### [0.3.1] - 2021-10-21
217
228
 
218
229
  - update index.js to also export RR sub classes
219
230
  - update README examples
220
231
 
221
232
 
222
- #### 0.3.0 - 2021-10-21
233
+ ### [0.3.0] - 2021-10-21
223
234
 
224
235
  - add getRFCs to all RR types
225
236
  - populate this.id with IANA type ID
@@ -227,7 +238,7 @@
227
238
  - CAA, DNAME, NAPTR, SSHFP, URI: add toBind, tests
228
239
 
229
240
 
230
- #### 0.2.3 - 2021-10-21
241
+ ### [0.2.3] - 2021-10-21
231
242
 
232
243
  - refactored classes into separate files
233
244
  - TXT, SOA, MX, CNAME, PTR, SRV: add toBind and toTinydns
@@ -236,18 +247,58 @@
236
247
  - PTR, SRV: added tests
237
248
 
238
249
 
239
- #### 0.2.2 - 2021-10-20
250
+ ### [0.2.2] - 2021-10-20
240
251
 
241
252
  - add tests/*
242
253
  - A, AAAA, add toBind and toTinydns()
243
254
  - add .release
244
255
 
245
256
 
246
- #### 0.2.1 - 2021-10-16
257
+ ### [0.2.1] - 2021-10-16
247
258
 
248
259
  - additional RR formats started, weakly validated
249
260
 
250
261
 
251
- #### 0.2.0 - 2021-10-16
262
+ ### [0.2.0] - 2021-10-16
252
263
 
253
264
  - initial release & name grab
265
+
266
+
267
+ # References
268
+
269
+ - [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
270
+ - [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/)
271
+ + fix, feature, BREAKING CHANGE, build, chore, ci, docs, style, test
272
+
273
+
274
+ [1.1.3]: https://github.com/NicTool/dns-resource-record/releases/tag/1.1.3
275
+ [1.1.2]: https://github.com/NicTool/dns-resource-record/releases/tag/1.1.2
276
+ [1.1.1]: https://github.com/NicTool/dns-resource-record/releases/tag/1.1.1
277
+ [1.1.0]: https://github.com/NicTool/dns-resource-record/releases/tag/1.1.0
278
+ [1.0.1]: https://github.com/NicTool/dns-resource-record/releases/tag/1.0.1
279
+ [1.0.0]: https://github.com/NicTool/dns-resource-record/releases/tag/1.0.0
280
+ [0.9.9]: https://github.com/NicTool/dns-resource-record/releases/tag/0.9.9
281
+ [0.9.8]: https://github.com/NicTool/dns-resource-record/releases/tag/0.9.8
282
+ [0.9.7]: https://github.com/NicTool/dns-resource-record/releases/tag/0.9.7
283
+ [0.9.6]: https://github.com/NicTool/dns-resource-record/releases/tag/0.9.6
284
+ [0.9.5]: https://github.com/NicTool/dns-resource-record/releases/tag/0.9.5
285
+ [0.9.4]: https://github.com/NicTool/dns-resource-record/releases/tag/0.9.4
286
+ [0.9.3]: https://github.com/NicTool/dns-resource-record/releases/tag/0.9.3
287
+ [0.9.2]: https://github.com/NicTool/dns-resource-record/releases/tag/0.9.2
288
+ [0.9.1]: https://github.com/NicTool/dns-resource-record/releases/tag/0.9.1
289
+ [0.9.0]: https://github.com/NicTool/dns-resource-record/releases/tag/0.9.0
290
+ [0.8.1]: https://github.com/NicTool/dns-resource-record/releases/tag/0.8.1
291
+ [0.8.0]: https://github.com/NicTool/dns-resource-record/releases/tag/0.8.0
292
+ [0.7.0]: https://github.com/NicTool/dns-resource-record/releases/tag/0.7.0
293
+ [0.6.0]: https://github.com/NicTool/dns-resource-record/releases/tag/0.6.0
294
+ [0.5.1]: https://github.com/NicTool/dns-resource-record/releases/tag/0.5.1
295
+ [0.5.0]: https://github.com/NicTool/dns-resource-record/releases/tag/0.5.0
296
+ [0.4.0]: https://github.com/NicTool/dns-resource-record/releases/tag/0.4.0
297
+ [0.3.1]: https://github.com/NicTool/dns-resource-record/releases/tag/0.3.1
298
+ [0.3.0]: https://github.com/NicTool/dns-resource-record/releases/tag/0.3.0
299
+ [0.2.3]: https://github.com/NicTool/dns-resource-record/releases/tag/0.2.3
300
+ [0.2.2]: https://github.com/NicTool/dns-resource-record/releases/tag/0.2.2
301
+ [0.2.1]: https://github.com/NicTool/dns-resource-record/releases/tag/0.2.1
302
+ [0.2.0]: https://github.com/NicTool/dns-resource-record/releases/tag/0.2.0
303
+ [1.1.4]: https://github.com/NicTool/dns-resource-record/releases/tag/1.1.4
304
+
package/README.md CHANGED
@@ -261,7 +261,7 @@ PRs are welcome, especially PRs with tests.
261
261
 
262
262
  ## DEVELOP
263
263
 
264
- - this package has no dependencies. That's no accident.
265
- - this will be used by a node.js app & a browser based app, so ES modules
266
- - platform independence is a goal
264
+ - There are no dependencies. That's no accident.
265
+ - ES modules for use by node.js and browser
266
+ - Platform independence is a goal
267
267
  - [x] CI tests are on linux, windows, and macos
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nictool/dns-resource-record",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "DNS Resource Records",
5
5
  "main": "index.js",
6
6
  "type": "module",