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