From 24247ab0b12fd605917983b6c12c6e210e531431 Mon Sep 17 00:00:00 2001 From: Vin Armani <33237395+vinarmani@users.noreply.github.com> Date: Tue, 14 Dec 2021 15:46:22 +1000 Subject: [PATCH 1/7] add R3 (Let's Encrypt) new rootcert --- lib/certs.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/certs.js b/lib/certs.js index 46b93a1..779c0a6 100644 --- a/lib/certs.js +++ b/lib/certs.js @@ -399,5 +399,9 @@ module.exports = [ 'hex'), Buffer.from( '22a2c1f7bded704cc1e701b5f408c310880fe956b5de2a4a44f99c873a25a7c8', - 'hex') + 'hex'), + Buffer.from( + '67add1166b020ae61b8f5fc96813c04c2aa589960796865572a3c7e737613dfd', + 'hex' + ) // R3 (Let's Encrypt) ]; From c5c31a28d4790b78b63c9fcb963405edc3bfc8a0 Mon Sep 17 00:00:00 2001 From: Vin Armani <33237395+vinarmani@users.noreply.github.com> Date: Mon, 20 Dec 2021 09:44:15 +1000 Subject: [PATCH 2/7] v0.8.1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 8b59b84..f394574 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "b70", - "version": "0.8.0", + "version": "0.8.1", "description": "BIP70 for bcoin", "keywords": [ "bip70", From a16b58f4aae77c35d8ca9c853c6ae148b99f0ebe Mon Sep 17 00:00:00 2001 From: Vin Armani <33237395+vinarmani@users.noreply.github.com> Date: Mon, 2 Sep 2024 11:28:34 +1000 Subject: [PATCH 3/7] Add ISRG Root X1 cert --- lib/certs.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/certs.js b/lib/certs.js index 779c0a6..029498d 100644 --- a/lib/certs.js +++ b/lib/certs.js @@ -403,5 +403,9 @@ module.exports = [ Buffer.from( '67add1166b020ae61b8f5fc96813c04c2aa589960796865572a3c7e737613dfd', 'hex' - ) // R3 (Let's Encrypt) + ), // R3 (Let's Encrypt) + Buffer.from( + '96bcec06264976f37460779acf28c5a7cfe8a3c0aae11a8ffcee05c0bddf08c6', + 'hex' + ) // ISRG Root X1 (Let's Encrypt) ]; From c3d59d76def4b38a6df0f38613a1b3e7d837792a Mon Sep 17 00:00:00 2001 From: Vin Armani <33237395+vinarmani@users.noreply.github.com> Date: Mon, 2 Sep 2024 11:30:04 +1000 Subject: [PATCH 4/7] bump version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f394574..0517e10 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "b70", - "version": "0.8.1", + "version": "0.8.2", "description": "BIP70 for bcoin", "keywords": [ "bip70", From 2d16c150d78e97e9a0b91d7f5a0d4705fe4f6de7 Mon Sep 17 00:00:00 2001 From: Vin Armani <33237395+vinarmani@users.noreply.github.com> Date: Mon, 2 Sep 2024 12:55:59 +1000 Subject: [PATCH 5/7] added Let's Encrypt R11 --- lib/certs.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/certs.js b/lib/certs.js index 029498d..3e64dfe 100644 --- a/lib/certs.js +++ b/lib/certs.js @@ -404,8 +404,12 @@ module.exports = [ '67add1166b020ae61b8f5fc96813c04c2aa589960796865572a3c7e737613dfd', 'hex' ), // R3 (Let's Encrypt) + Buffer.from( + '591e9ce6c863d3a079e9fabe1478c7339a26b21269dde795211361024ae31a44', + 'hex' + ), // R11 (Let's Encrypt) Buffer.from( '96bcec06264976f37460779acf28c5a7cfe8a3c0aae11a8ffcee05c0bddf08c6', 'hex' - ) // ISRG Root X1 (Let's Encrypt) + ) // ISRG Root X1 ]; From 04ecf543320868936fa5d57e0837bb84e848d0a3 Mon Sep 17 00:00:00 2001 From: Vin Armani <33237395+vinarmani@users.noreply.github.com> Date: Mon, 2 Sep 2024 13:11:08 +1000 Subject: [PATCH 6/7] remove duplicate cert --- lib/certs.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/lib/certs.js b/lib/certs.js index 3e64dfe..10bb37b 100644 --- a/lib/certs.js +++ b/lib/certs.js @@ -407,9 +407,5 @@ module.exports = [ Buffer.from( '591e9ce6c863d3a079e9fabe1478c7339a26b21269dde795211361024ae31a44', 'hex' - ), // R11 (Let's Encrypt) - Buffer.from( - '96bcec06264976f37460779acf28c5a7cfe8a3c0aae11a8ffcee05c0bddf08c6', - 'hex' - ) // ISRG Root X1 + ) // R11 (Let's Encrypt) ]; From 2bcd12b7a6e1c3c9ec2f586f621a73b1bdf5a9ff Mon Sep 17 00:00:00 2001 From: Vin Armani <33237395+vinarmani@users.noreply.github.com> Date: Mon, 2 Sep 2024 13:11:55 +1000 Subject: [PATCH 7/7] bump version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0517e10..579d40f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "b70", - "version": "0.8.2", + "version": "0.8.3", "description": "BIP70 for bcoin", "keywords": [ "bip70",