probing 4.0.0 → 5.0.1

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 CHANGED
@@ -1,5 +1,9 @@
1
1
  # Versions
2
2
 
3
+ ## Version 5.0.1
4
+
5
+ - Node.js 18 or higher is now required
6
+
3
7
  ## Version 4.0.0
4
8
 
5
9
  - Node.js 16 or higher is now required
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2020 Alex Bosworth
3
+ Copyright (c) 2020-2024 Alex Bosworth
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -7,14 +7,14 @@
7
7
  "url": "https://github.com/alexbosworth/probing/issues"
8
8
  },
9
9
  "dependencies": {
10
- "async": "3.2.4",
10
+ "async": "3.2.5",
11
11
  "asyncjs-util": "1.2.12",
12
12
  "bolt07": "1.8.4",
13
- "ln-service": "56.7.1"
13
+ "ln-service": "57.13.0"
14
14
  },
15
15
  "description": "Lightning Network probing utilities",
16
16
  "engines": {
17
- "node": ">=16"
17
+ "node": ">=18"
18
18
  },
19
19
  "keywords": [
20
20
  "lightning",
@@ -31,5 +31,5 @@
31
31
  "scripts": {
32
32
  "test": "npx nyc@15.1 node --experimental-test-coverage --test"
33
33
  },
34
- "version": "4.0.0"
34
+ "version": "5.0.1"
35
35
  }
@@ -89,6 +89,8 @@ const tests = [
89
89
  base_fee_mtokens: '1',
90
90
  cltv_delta: 1,
91
91
  fee_rate: 1,
92
+ inbound_base_discount_mtokens: '0',
93
+ inbound_rate_discount: 0,
92
94
  is_disabled: false,
93
95
  max_htlc_mtokens: '2100000000',
94
96
  min_htlc_mtokens: '1',
@@ -99,6 +101,8 @@ const tests = [
99
101
  base_fee_mtokens: '2',
100
102
  cltv_delta: 2,
101
103
  fee_rate: 2,
104
+ inbound_base_discount_mtokens: '0',
105
+ inbound_rate_discount: 0,
102
106
  is_disabled: false,
103
107
  max_htlc_mtokens: '2100000000',
104
108
  min_htlc_mtokens: '2',
@@ -160,6 +164,8 @@ const tests = [
160
164
  base_fee_mtokens: '1',
161
165
  cltv_delta: 1,
162
166
  fee_rate: 1,
167
+ inbound_base_discount_mtokens: '0',
168
+ inbound_rate_discount: 0,
163
169
  is_disabled: false,
164
170
  max_htlc_mtokens: '2100000000',
165
171
  min_htlc_mtokens: '1',
@@ -170,6 +176,8 @@ const tests = [
170
176
  base_fee_mtokens: '2',
171
177
  cltv_delta: 2,
172
178
  fee_rate: 2,
179
+ inbound_base_discount_mtokens: '0',
180
+ inbound_rate_discount: 0,
173
181
  is_disabled: false,
174
182
  max_htlc_mtokens: '2100000000',
175
183
  min_htlc_mtokens: '2',