Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions DATA
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ vendor/data/iso/currency/list-three.xml https://www.six-group.com/dam/download/f
vendor/data/xbrl/utr/utr.xml https://www.xbrl.org/utr/utr.xml
vendor/data/iso/language/ISO-639-2_utf-8.txt https://www.loc.gov/standards/iso639-2/ISO-639-2_utf-8
vendor/data/iso/language/iso-639-3_Code_Tables https://iso639-3.sil.org/sites/iso639-3/files/downloads/iso-639-3_Code_Tables_20251015.zip
vendor/data/iso/language/iso639-5.tsv http://id.loc.gov/vocabulary/iso639-5.tsv

@augmentcode augmentcode Bot Jul 27, 2026

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The new ISO 639-5 source URL is plain http://; since https://id.loc.gov/vocabulary/iso639-5.tsv is available, sticking to HTTPS would avoid environments that block HTTP and provides transport integrity for vendored data downloads.

Severity: medium

Fix This in Augment

🤖 Was this useful? React with 👍 or 👎, or 🚀 if it prevented an incident/outage.

Comment thread
jviotti marked this conversation as resolved.
8 changes: 7 additions & 1 deletion generated.mk
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,17 @@ build/iso/language/iso-639-3.json: \
vendor/data/iso/language/iso-639-3_Code_Tables/iso-639-3_Code_Tables_20251015/iso-639-3.tab \
scripts/csv2json.py
$(PYTHON) $(word 2,$^) --tab $< $@
build/iso/language/iso-639-5.json: \
vendor/data/iso/language/iso639-5.tsv \
scripts/csv2json.py
$(PYTHON) $(word 2,$^) --tab $< $@

build/iso/language/%.json: \
build/iso/language/iso-639-2.json \
build/iso/language/iso-639-3.json \
build/iso/language/iso-639-5.json \
templates/build/iso/language/%.jq
$(JQ) --slurpfile iso2 $< --slurpfile iso3 $(word 2,$^) -n -f $(word 3,$^) > $@
$(JQ) --slurpfile iso2 $< --slurpfile iso3 $(word 2,$^) --slurpfile iso5 $(word 3,$^) -n -f $(word 4,$^) > $@

$(eval $(call MAKE_SCHEMA,2020-12/iso/language/2023/set-1,build/iso/language/enriched))
$(eval $(call MAKE_SCHEMA,2020-12/iso/language/2023/set-2-bibliographic,build/iso/language/enriched))
Expand Down
Loading
Loading