Skip to content

Commit c894ee2

Browse files
fix(deps): update dependency weblate-schemas to v2026.2 (#19627)
* fix(deps): update dependency weblate-schemas to v2026.2 * docs: Update JSON schemas --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Weblate CI <noreply@weblate.org>
1 parent c4b700e commit c894ee2

3 files changed

Lines changed: 44 additions & 10 deletions

File tree

docs/specs/schemas/weblate-backup.schema.json

Lines changed: 37 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -407,13 +407,47 @@
407407
"title": "Members",
408408
"type": "array",
409409
"items": {
410-
"title": "Username",
411-
"type": "string"
410+
"oneOf": [
411+
{
412+
"title": "Username",
413+
"type": "string"
414+
},
415+
{
416+
"title": "Team member",
417+
"type": "object",
418+
"additionalProperties": false,
419+
"required": [
420+
"username",
421+
"limit_languages"
422+
],
423+
"properties": {
424+
"username": {
425+
"title": "Username",
426+
"type": "string"
427+
},
428+
"limit_languages": {
429+
"title": "Limited languages",
430+
"type": "array",
431+
"items": {
432+
"title": "Language code",
433+
"type": "string"
434+
},
435+
"default": []
436+
}
437+
}
438+
}
439+
]
412440
},
413441
"default": [],
414442
"examples": [
415443
[
416-
"user-1"
444+
"user-1",
445+
{
446+
"username": "reviewer-cs",
447+
"limit_languages": [
448+
"cs"
449+
]
450+
}
417451
]
418452
]
419453
},

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ sbom = [
5656
"packaging==26.2"
5757
]
5858
schemas = [
59-
"weblate-schemas==2026.1"
59+
"weblate-schemas==2026.2"
6060
]
6161
scripts = [
6262
"django-debug-toolbar==6.3.0",
@@ -206,7 +206,7 @@ dependencies = [
206206
"user-agents==2.2.0",
207207
"weblate-fonts==2026.1",
208208
"weblate-language-data==2026.8",
209-
"weblate-schemas==2026.1"
209+
"weblate-schemas==2026.2"
210210
]
211211
description = "A web-based continuous localization system with tight version control integration"
212212
keywords = [

uv.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)