DuckDB bulk-insert speedup (~100×). The
DuckDBWriter.write() method now batches inserts into a single
transaction; previously each row was a separate insert.
country_vs_country filter fusion (~5–10×). The
AnalyticsEngine now fuses multiple filter predicates into a
single pass over the dataset; previously each filter was a
separate iteration.
un_comtrade.logging.DEFAULT_LOG_LEVEL (the deprecated alias)
removed in v1.0.1.x. The canonical constant is now
un_comtrade.config.DEFAULT_LOG_LEVEL (string value
"WARNING"). See F-003 (CHG-0081).