Compare commits

...

2 Commits

Author SHA1 Message Date
Marco Lanzara
f404952e0e 🚀 Release v1.0.102
- Tipo: patch
- Database schema: database-schema/schema.sql (solo struttura)
- Data: 2026-01-02 16:16:47
2026-01-02 16:16:47 +00:00
marco370
0a269a9032 Update list fetching to correctly parse Google IP ranges
Add 'google' as an alias for GCPParser in `python_ml/list_fetcher/parsers.py` to resolve issues with parsing Google Cloud and Google global IP lists.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 7a657272-55ba-4a79-9a2e-f1ed9bc7a528
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Event-Id: 771e5bf9-f7cd-42b4-9abb-d79a800368ae
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/449cf7c4-c97a-45ae-8234-e5c5b8d6a84f/7a657272-55ba-4a79-9a2e-f1ed9bc7a528/C6BdLIt
2026-01-02 16:16:15 +00:00
3 changed files with 11 additions and 10 deletions

View File

@ -2,7 +2,7 @@
-- PostgreSQL database dump -- PostgreSQL database dump
-- --
\restrict tgCSU0lsazWYhvZDtJSySVv0XWsanBDacMCTKBwtKYs25ogGpWpmf5QkuPPQcwM \restrict 4RPpnLLawnEzbPG06wcgYKnNzVGqIJuRjSjDeScvkTkNVXRvYDJ4WaTOJoMleVa
-- Dumped from database version 16.11 (74c6bb6) -- Dumped from database version 16.11 (74c6bb6)
-- 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 tgCSU0lsazWYhvZDtJSySVv0XWsanBDacMCTKBwtKYs25ogGpWpmf5QkuPPQcwM \unrestrict 4RPpnLLawnEzbPG06wcgYKnNzVGqIJuRjSjDeScvkTkNVXRvYDJ4WaTOJoMleVa

View File

@ -263,6 +263,7 @@ PARSERS: Dict[str, type[ListParser]] = {
'talos': TalosParser, 'talos': TalosParser,
'aws': AWSParser, 'aws': AWSParser,
'gcp': GCPParser, 'gcp': GCPParser,
'google': GCPParser,
'cloudflare': CloudflareParser, 'cloudflare': CloudflareParser,
'iana': IANAParser, 'iana': IANAParser,
'ntp': NTPPoolParser, 'ntp': NTPPoolParser,

View File

@ -1,7 +1,13 @@
{ {
"version": "1.0.101", "version": "1.0.102",
"lastUpdate": "2026-01-02T16:14:47.174Z", "lastUpdate": "2026-01-02T16:16:47.939Z",
"changelog": [ "changelog": [
{
"version": "1.0.102",
"date": "2026-01-02",
"type": "patch",
"description": "Deployment automatico v1.0.102"
},
{ {
"version": "1.0.101", "version": "1.0.101",
"date": "2026-01-02", "date": "2026-01-02",
@ -295,12 +301,6 @@
"date": "2025-11-24", "date": "2025-11-24",
"type": "patch", "type": "patch",
"description": "Deployment automatico v1.0.53" "description": "Deployment automatico v1.0.53"
},
{
"version": "1.0.52",
"date": "2025-11-24",
"type": "patch",
"description": "Deployment automatico v1.0.52"
} }
] ]
} }