From 4ba46306e4bc215727f3793d24d457b5ec4928fa Mon Sep 17 00:00:00 2001
From: Claude
Date: Wed, 3 Jun 2026 15:04:46 +0000
Subject: [PATCH 1/3] Remove duplicated IP address list from docs article
The article rendered the full IP list (fetched from patchstack.com/ips-v4)
as a bulleted list in addition to linking to the source. The rendered list
could go stale and mismatch the live API. Keep only the link so the IP list
lives in a single source of truth.
---
src/components/Ips.astro | 12 +-----------
1 file changed, 1 insertion(+), 11 deletions(-)
diff --git a/src/components/Ips.astro b/src/components/Ips.astro
index b69d63d..aab9220 100644
--- a/src/components/Ips.astro
+++ b/src/components/Ips.astro
@@ -1,13 +1,3 @@
----
-const response = await fetch("https://patchstack.com/ips-v4/");
-const ips = await response.text();
-const ipList = ips.split("\n").map(ip => ip.trim()).filter(ip => ip.length > 0);
----
-
-{ipList.map(ip => (
- - {ip}
-))}
-
You can find the list of IP addresses that Patchstack uses at patchstack.com/ips-v4.
-
\ No newline at end of file
+
From c9907055cf30e7b85f21130c38d65c4d0b73d7ea Mon Sep 17 00:00:00 2001
From: Renato Hysa
Date: Wed, 3 Jun 2026 18:05:39 +0200
Subject: [PATCH 2/3] Reword IP whitelisting article and reposition IP list
link
---
.../Technical/list-of-ip-addresses-that-patchstack-uses.mdx | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/content/docs/FAQ Troubleshooting/Technical/list-of-ip-addresses-that-patchstack-uses.mdx b/src/content/docs/FAQ Troubleshooting/Technical/list-of-ip-addresses-that-patchstack-uses.mdx
index 7dfbd0c..b7eb09d 100644
--- a/src/content/docs/FAQ Troubleshooting/Technical/list-of-ip-addresses-that-patchstack-uses.mdx
+++ b/src/content/docs/FAQ Troubleshooting/Technical/list-of-ip-addresses-that-patchstack-uses.mdx
@@ -12,7 +12,8 @@ sidebar:
---
import Ips from '../../../../components/Ips.astro';
-Sometimes you need to whitelist these IP addresses in order to avoid your hosting provider or (secondary) firewall blocking our services.
+Sometimes you need to whitelist our IP addresses in order to avoid your hosting provider or (secondary) firewall blocking our services.
-Note that we may add and remove IP addresses at any time without notice.
+
+Note that we may add and remove IP addresses at any time without notice.
From cdb4d6191ad7775984fdec5e1cc51321f29d06f1 Mon Sep 17 00:00:00 2001
From: Renato Hysa
Date: Thu, 4 Jun 2026 10:27:54 +0200
Subject: [PATCH 3/3] Link both IPv4 and IPv6 IP-list endpoints, drop unused
Ips component
---
src/components/Ips.astro | 3 ---
.../list-of-ip-addresses-that-patchstack-uses.mdx | 7 ++++---
2 files changed, 4 insertions(+), 6 deletions(-)
delete mode 100644 src/components/Ips.astro
diff --git a/src/components/Ips.astro b/src/components/Ips.astro
deleted file mode 100644
index aab9220..0000000
--- a/src/components/Ips.astro
+++ /dev/null
@@ -1,3 +0,0 @@
-
-You can find the list of IP addresses that Patchstack uses at patchstack.com/ips-v4.
-
diff --git a/src/content/docs/FAQ Troubleshooting/Technical/list-of-ip-addresses-that-patchstack-uses.mdx b/src/content/docs/FAQ Troubleshooting/Technical/list-of-ip-addresses-that-patchstack-uses.mdx
index b7eb09d..4f10823 100644
--- a/src/content/docs/FAQ Troubleshooting/Technical/list-of-ip-addresses-that-patchstack-uses.mdx
+++ b/src/content/docs/FAQ Troubleshooting/Technical/list-of-ip-addresses-that-patchstack-uses.mdx
@@ -10,10 +10,11 @@ updatedAt: "Tue May 16 2023 14:17:00 GMT+0000 (Coordinated Universal Time)"
sidebar:
order: 7.3
---
-import Ips from '../../../../components/Ips.astro';
-
Sometimes you need to whitelist our IP addresses in order to avoid your hosting provider or (secondary) firewall blocking our services.
-
+You can use these two API endpoints to get the list of IP addresses that Patchstack uses:
+
+- [patchstack.com/ips-v4/](https://patchstack.com/ips-v4/)
+- [patchstack.com/ips-v6/](https://patchstack.com/ips-v6/)
Note that we may add and remove IP addresses at any time without notice.