Just a friendly reminder that you may get help from the A0 Time Zone Migration utilities to programatically get the diffs between tzdb releases, so you can check/correct your data once a new tzdb is installed in your systems.
import { TZVersion } from 'a0-tzmigration-js'
// calculate changes from America/Santiago 2018e to America/Santiago 2018f
let version_a = new TZVersion('America/Santiago', '2018e')
let version_b = new TZVersion('America/Santiago', '2018f')
let changes = await version_a.changes(version_b)
console.log(changes)