Compare commits

..

No commits in common. "f9fb378edc376f95a00aa03767e2a4e1eafcd42b" and "5fdd99f585c1c0ae88b2689c31c7f05a99e77a7c" have entirely different histories.

3 changed files with 28 additions and 18 deletions

View File

@ -2,7 +2,7 @@
-- PostgreSQL database dump -- PostgreSQL database dump
-- --
\restrict NVgwdkXpYs3olVbNsrR6Epb0Ejfrsl9ARZ6FqLY0WmGl0dkSnE6S3ycsf18QdKx \restrict Pm7Se0tW1nWw6qc6EX1uRmohgf9e12QrVE3tMjJCKfmvUUPM4d23uZQYNGwgWyr
-- Dumped from database version 16.11 (df20cf9) -- Dumped from database version 16.11 (df20cf9)
-- Dumped by pg_dump version 16.10 -- Dumped by pg_dump version 16.10
@ -387,5 +387,5 @@ ALTER TABLE ONLY public.public_blacklist_ips
-- PostgreSQL database dump complete -- PostgreSQL database dump complete
-- --
\unrestrict NVgwdkXpYs3olVbNsrR6Epb0Ejfrsl9ARZ6FqLY0WmGl0dkSnE6S3ycsf18QdKx \unrestrict Pm7Se0tW1nWw6qc6EX1uRmohgf9e12QrVE3tMjJCKfmvUUPM4d23uZQYNGwgWyr

View File

@ -3,17 +3,27 @@
-- 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, enabled, fetch_interval_minutes)
SELECT 'Microsoft Azure', VALUES (
'https://raw.githubusercontent.com/femueller/cloud-ip-ranges/master/microsoft-azure-ip-ranges.json', 'Microsoft Azure',
'whitelist', true, 60 'https://raw.githubusercontent.com/femueller/cloud-ip-ranges/master/microsoft-azure-ip-ranges.json',
WHERE NOT EXISTS (SELECT 1 FROM public_lists WHERE name = 'Microsoft Azure'); 'whitelist',
true,
60
) ON CONFLICT (name) DO UPDATE SET
url = EXCLUDED.url,
enabled = EXCLUDED.enabled;
-- 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, enabled, fetch_interval_minutes)
SELECT 'Meta (Facebook)', VALUES (
'https://raw.githubusercontent.com/parseword/util-misc/master/block-facebook/facebook-ip-ranges.txt', 'Meta (Facebook)',
'whitelist', true, 60 'https://raw.githubusercontent.com/parseword/util-misc/master/block-facebook/facebook-ip-ranges.txt',
WHERE NOT EXISTS (SELECT 1 FROM public_lists WHERE name = 'Meta (Facebook)'); 'whitelist',
true,
60
) ON CONFLICT (name) DO UPDATE SET
url = EXCLUDED.url,
enabled = EXCLUDED.enabled;
-- Update schema version -- Update schema version
UPDATE schema_version SET version = 9, updated_at = NOW(); UPDATE schema_version SET version = 9, updated_at = NOW();

View File

@ -1,13 +1,7 @@
{ {
"version": "1.0.105", "version": "1.0.104",
"lastUpdate": "2026-02-14T09:47:11.799Z", "lastUpdate": "2026-02-14T09:45:26.595Z",
"changelog": [ "changelog": [
{
"version": "1.0.105",
"date": "2026-02-14",
"type": "patch",
"description": "Deployment automatico v1.0.105"
},
{ {
"version": "1.0.104", "version": "1.0.104",
"date": "2026-02-14", "date": "2026-02-14",
@ -301,6 +295,12 @@
"date": "2025-11-24", "date": "2025-11-24",
"type": "patch", "type": "patch",
"description": "Deployment automatico v1.0.56" "description": "Deployment automatico v1.0.56"
},
{
"version": "1.0.55",
"date": "2025-11-24",
"type": "patch",
"description": "Deployment automatico v1.0.55"
} }
] ]
} }