Compare commits
2 Commits
182d98de0d
...
5fdd99f585
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5fdd99f585 | ||
|
|
0db7d03db7 |
@ -2,9 +2,9 @@
|
||||
-- PostgreSQL database dump
|
||||
--
|
||||
|
||||
\restrict Jq3ohS02Qcz3l9bNbeQprTZolEFbFh84eEwk4en2HkAqc2Xojxrd4AFqHJvBETG
|
||||
\restrict Pm7Se0tW1nWw6qc6EX1uRmohgf9e12QrVE3tMjJCKfmvUUPM4d23uZQYNGwgWyr
|
||||
|
||||
-- Dumped from database version 16.11 (74c6bb6)
|
||||
-- Dumped from database version 16.11 (df20cf9)
|
||||
-- Dumped by pg_dump version 16.10
|
||||
|
||||
SET statement_timeout = 0;
|
||||
@ -387,5 +387,5 @@ ALTER TABLE ONLY public.public_blacklist_ips
|
||||
-- PostgreSQL database dump complete
|
||||
--
|
||||
|
||||
\unrestrict Jq3ohS02Qcz3l9bNbeQprTZolEFbFh84eEwk4en2HkAqc2Xojxrd4AFqHJvBETG
|
||||
\unrestrict Pm7Se0tW1nWw6qc6EX1uRmohgf9e12QrVE3tMjJCKfmvUUPM4d23uZQYNGwgWyr
|
||||
|
||||
|
||||
@ -2,32 +2,31 @@
|
||||
-- Date: 2026-01-02
|
||||
|
||||
-- Microsoft Azure IP ranges (whitelist - cloud provider)
|
||||
INSERT INTO public_lists (name, url, type, format, enabled, description, fetch_interval)
|
||||
INSERT INTO public_lists (name, url, type, enabled, fetch_interval_minutes)
|
||||
VALUES (
|
||||
'Microsoft Azure',
|
||||
'https://raw.githubusercontent.com/femueller/cloud-ip-ranges/master/microsoft-azure-ip-ranges.json',
|
||||
'whitelist',
|
||||
'json',
|
||||
true,
|
||||
'Microsoft Azure cloud IP ranges - auto-updated from Azure Service Tags',
|
||||
3600
|
||||
60
|
||||
) ON CONFLICT (name) DO UPDATE SET
|
||||
url = EXCLUDED.url,
|
||||
description = EXCLUDED.description;
|
||||
enabled = EXCLUDED.enabled;
|
||||
|
||||
-- Meta/Facebook IP ranges (whitelist - major service provider)
|
||||
INSERT INTO public_lists (name, url, type, format, enabled, description, fetch_interval)
|
||||
INSERT INTO public_lists (name, url, type, enabled, fetch_interval_minutes)
|
||||
VALUES (
|
||||
'Meta (Facebook)',
|
||||
'https://raw.githubusercontent.com/parseword/util-misc/master/block-facebook/facebook-ip-ranges.txt',
|
||||
'whitelist',
|
||||
'plain',
|
||||
true,
|
||||
'Meta/Facebook IP ranges (includes Instagram, WhatsApp, Oculus) from BGP AS32934/AS54115/AS63293',
|
||||
3600
|
||||
60
|
||||
) ON CONFLICT (name) DO UPDATE SET
|
||||
url = EXCLUDED.url,
|
||||
description = EXCLUDED.description;
|
||||
enabled = EXCLUDED.enabled;
|
||||
|
||||
-- Update schema version
|
||||
UPDATE schema_version SET version = 9, updated_at = NOW();
|
||||
|
||||
-- Verify insertion
|
||||
SELECT id, name, type, enabled, url FROM public_lists WHERE name IN ('Microsoft Azure', 'Meta (Facebook)');
|
||||
|
||||
16
version.json
16
version.json
@ -1,7 +1,13 @@
|
||||
{
|
||||
"version": "1.0.103",
|
||||
"lastUpdate": "2026-01-02T16:33:13.545Z",
|
||||
"version": "1.0.104",
|
||||
"lastUpdate": "2026-02-14T09:45:26.595Z",
|
||||
"changelog": [
|
||||
{
|
||||
"version": "1.0.104",
|
||||
"date": "2026-02-14",
|
||||
"type": "patch",
|
||||
"description": "Deployment automatico v1.0.104"
|
||||
},
|
||||
{
|
||||
"version": "1.0.103",
|
||||
"date": "2026-01-02",
|
||||
@ -295,12 +301,6 @@
|
||||
"date": "2025-11-24",
|
||||
"type": "patch",
|
||||
"description": "Deployment automatico v1.0.55"
|
||||
},
|
||||
{
|
||||
"version": "1.0.54",
|
||||
"date": "2025-11-24",
|
||||
"type": "patch",
|
||||
"description": "Deployment automatico v1.0.54"
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user