chore(deps): Update to Gitea 1.27.2 (#508)

<!-- cloudflare-preview --> Preview: https://pr-508.docs-gitea-com.pages.dev

Reviewed-on: https://gitea.com/gitea/docs/pulls/508
Reviewed-by: Lunny Xiao <[email protected]>
Co-authored-by: bircni <[email protected]>
This commit is contained in:
bircni
2026-08-13 22:18:25 +00:00
committed by Lunny Xiao
parent 362878dfba
commit 2a172c8947
3 changed files with 23 additions and 15 deletions
+4 -4
View File
@@ -80,11 +80,11 @@ const variables: Record<string, VersionVariables> = {
goVersion: '1.26',
minGoVersion: '1.26',
minNodeVersion: '24',
version: '1.27.1',
sourceVersion: 'v1.27.1',
version: '1.27.2',
sourceVersion: 'v1.27.2',
sourceBranch: 'release/v1.27',
dockerVersion: '1.27.1',
displayVersion: '1.27.1',
dockerVersion: '1.27.2',
displayVersion: '1.27.2',
},
'1.26': {
goVersion: '1.26',
+18 -10
View File
@@ -17,7 +17,7 @@
"name": "MIT",
"url": "http://opensource.org/licenses/MIT"
},
"version": "1.27.1"
"version": "1.27.2"
},
"basePath": "https://gitea.com/api/v1",
"paths": {
@@ -30294,6 +30294,20 @@
},
"x-go-package": "gitea.dev/modules/structs"
},
"TopicListResponse": {
"description": "TopicListResponse returns a list of TopicResponse",
"type": "object",
"properties": {
"topics": {
"type": "array",
"items": {
"$ref": "#/definitions/TopicResponse"
},
"x-go-name": "Topics"
}
},
"x-go-package": "gitea.dev/modules/structs"
},
"TopicName": {
"description": "TopicName a list of repo topic names",
"type": "object",
@@ -31920,10 +31934,7 @@
"TopicListResponse": {
"description": "TopicListResponse",
"schema": {
"type": "array",
"items": {
"$ref": "#/definitions/TopicResponse"
}
"$ref": "#/definitions/TopicListResponse"
}
},
"TopicNames": {
@@ -31974,10 +31985,7 @@
"UserSettings": {
"description": "UserSettings",
"schema": {
"type": "array",
"items": {
"$ref": "#/definitions/UserSettings"
}
"$ref": "#/definitions/UserSettings"
}
},
"VariableList": {
@@ -32187,4 +32195,4 @@
"TOTPHeader": []
}
]
}
}
+1 -1
View File
@@ -77,7 +77,7 @@ if [ "$LATEST_ONLY" -eq 1 ]; then
exit 0
fi
for ver in '1.27.1' '1.26.4' '1.25.5' '1.24.7' '1.23.8' '1.22.6'; do
for ver in '1.27.2' '1.26.4' '1.25.5' '1.24.7' '1.23.8' '1.22.6'; do
download_swagger "refs/tags/v${ver}" v1_json.tmpl
rewrite_swagger v1_json.tmpl "${ver}"
minor=$(echo "$ver" | cut -d '.' -f 2)