Files
OmniRoute/docs/i18n/az/docs/ops/RELEASE_CHECKLIST.md
diegosouzapw 6e392932c2 feat(i18n): add Azerbaijani (az 🇦🇿) language support
- Add az locale to config/i18n.json (source of truth, 42 locales total)
- Create src/i18n/messages/az.json (UI strings from en.json base)
- Create docs/i18n/az/ directory with full documentation set
- Add 🇦🇿 Azərbaycan dili to README.md language bar
- Add az entry to docs/i18n/README.md index (40 doc languages)
- Add az to generate-multilang.mjs LOCALE_SPECS (Google TL: az)
- Add az to i18n_autotranslate.py lang_map
- Update CHANGELOG.md with feat(i18n) entry
2026-05-15 01:14:43 -03:00

3.5 KiB

Release Checklist (Български)

🌐 Languages: 🇺🇸 English · 🇸🇦 ar · 🇧🇬 bg · 🇧🇩 bn · 🇨🇿 cs · 🇩🇰 da · 🇩🇪 de · 🇪🇸 es · 🇮🇷 fa · 🇫🇮 fi · 🇫🇷 fr · 🇮🇳 gu · 🇮🇱 he · 🇮🇳 hi · 🇭🇺 hu · 🇮🇩 id · 🇮🇹 it · 🇯🇵 ja · 🇰🇷 ko · 🇮🇳 mr · 🇲🇾 ms · 🇳🇱 nl · 🇳🇴 no · 🇵🇭 phi · 🇵🇱 pl · 🇵🇹 pt · 🇧🇷 pt-BR · 🇷🇴 ro · 🇷🇺 ru · 🇸🇰 sk · 🇸🇪 sv · 🇰🇪 sw · 🇮🇳 ta · 🇮🇳 te · 🇹🇭 th · 🇹🇷 tr · 🇺🇦 uk-UA · 🇵🇰 ur · 🇻🇳 vi · 🇨🇳 zh-CN


Use this checklist before tagging or publishing a new OmniRoute release.

Version and Changelog

  1. Bump package.json version (x.y.z) in the release branch.
  2. Move release notes from ## [Unreleased] in CHANGELOG.md to a dated section:
    • ## [x.y.z] — YYYY-MM-DD
  3. Keep ## [Unreleased] as the first changelog section for upcoming work.
  4. Ensure the latest semver section in CHANGELOG.md equals package.json version.

API Docs

  1. Update docs/reference/openapi.yaml:
    • info.version must equal package.json version.
  2. Validate endpoint examples if API contracts changed.

Runtime Docs

  1. Review docs/architecture/ARCHITECTURE.md for storage/runtime drift.
  2. Review docs/guides/TROUBLESHOOTING.md for env var and operational drift.
  3. Verify the release/runtime Node.js version still satisfies the supported secure floor:
    • >=20.20.2 <21 or >=22.22.2 <23
    • npm run check:node-runtime
  4. Validate the npm publish artifact after building the standalone package:
    • npm run build:cli
    • npm run check:pack-artifact
    • confirm no app.__qa_backup, scripts/scratch, package-lock.json, or other local residue
  5. Update localized docs if source docs changed significantly.

Automated Check

Run the sync guard locally before opening PR:

npm run check:docs-sync

CI also runs this check in .github/workflows/ci.yml (lint job).