Merge pull request #3284 from vitorpamplona/claude/adoring-pascal-tbm6za

Remove unused `updated` field from translator mappings
This commit is contained in:
Vitor Pamplona
2026-06-19 16:05:10 -04:00
committed by GitHub
2 changed files with 2 additions and 4 deletions
-1
View File
@@ -75,7 +75,6 @@
"sinceLastTag": {
"tag": "v1.12.5",
"since": "2026-06-19T12:55:37-04:00",
"updated": "2026-06-19T17:21:54+00:00",
"translators": [
{
"user": "vitorpamplona",
+2 -3
View File
@@ -185,8 +185,7 @@ fi
if [ "$SEED" = "1" ]; then
before="$(jq '(.mappings // {}) | length' "$MAPPING")"
merged="$(jq -n --slurpfile cur "$MAPPING" --argjson rep "$report" \
--arg tag "$LAST_TAG" --arg since "$DATE_FROM" \
--arg updated "$(date -u +%Y-%m-%dT%H:%M:%S+00:00)" '
--arg tag "$LAST_TAG" --arg since "$DATE_FROM" '
($cur[0]) as $file
| [ ($rep.data // $rep)[] | {
user: (.user.username // (.user.id|tostring)),
@@ -198,7 +197,7 @@ if [ "$SEED" = "1" ]; then
then . else . + { ($u): "" } end) ) as $mappings
| $file
+ { mappings: $mappings }
+ { sinceLastTag: { tag: $tag, since: $since, updated: $updated,
+ { sinceLastTag: { tag: $tag, since: $since,
translators: $contribs } }
')"
echo "$merged" > "$MAPPING"