Files
domnitor/database/migrations/026_update_app_version_v1.1.4.sql
Hosteroid ed3e5739f4 Add TLD registry import/export/create & logging
Add CSV/JSON export and import endpoints and UI for the TLD registry, plus a manual Create TLD modal and drag-and-drop import UX. Standardize import/export logging by adding Logger('import'/'export') calls to Domains, Tags, Notification Groups and TLD flows. Add TldRegistry model helpers (findByTld, getAll) used for deduplication and exports. Update routes for /tld-registry export/import/create and add a migration to bump app_version to 1.1.4. Also update default app_version, enhance WhoisService parsing (registrar regex and ISO-8601 date handling), and adjust the TLD registry index view to include IANA and Export dropdowns, import modal, create modal, and related JS behavior.
2026-03-02 11:17:58 +02:00

8 lines
259 B
SQL

-- Update application version to 1.1.4
-- This version adds TLD Registry import/export/create, IANA dropdown UI, and standardized logging
-- Update application version to 1.1.4
UPDATE settings
SET setting_value = '1.1.4'
WHERE setting_key = 'app_version';