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', goVersion: '1.26',
minGoVersion: '1.26', minGoVersion: '1.26',
minNodeVersion: '24', minNodeVersion: '24',
version: '1.27.1', version: '1.27.2',
sourceVersion: 'v1.27.1', sourceVersion: 'v1.27.2',
sourceBranch: 'release/v1.27', sourceBranch: 'release/v1.27',
dockerVersion: '1.27.1', dockerVersion: '1.27.2',
displayVersion: '1.27.1', displayVersion: '1.27.2',
}, },
'1.26': { '1.26': {
goVersion: '1.26', goVersion: '1.26',
+16 -8
View File
@@ -17,7 +17,7 @@
"name": "MIT", "name": "MIT",
"url": "http://opensource.org/licenses/MIT" "url": "http://opensource.org/licenses/MIT"
}, },
"version": "1.27.1" "version": "1.27.2"
}, },
"basePath": "https://gitea.com/api/v1", "basePath": "https://gitea.com/api/v1",
"paths": { "paths": {
@@ -30294,6 +30294,20 @@
}, },
"x-go-package": "gitea.dev/modules/structs" "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": { "TopicName": {
"description": "TopicName a list of repo topic names", "description": "TopicName a list of repo topic names",
"type": "object", "type": "object",
@@ -31920,10 +31934,7 @@
"TopicListResponse": { "TopicListResponse": {
"description": "TopicListResponse", "description": "TopicListResponse",
"schema": { "schema": {
"type": "array", "$ref": "#/definitions/TopicListResponse"
"items": {
"$ref": "#/definitions/TopicResponse"
}
} }
}, },
"TopicNames": { "TopicNames": {
@@ -31974,11 +31985,8 @@
"UserSettings": { "UserSettings": {
"description": "UserSettings", "description": "UserSettings",
"schema": { "schema": {
"type": "array",
"items": {
"$ref": "#/definitions/UserSettings" "$ref": "#/definitions/UserSettings"
} }
}
}, },
"VariableList": { "VariableList": {
"description": "VariableList", "description": "VariableList",
+1 -1
View File
@@ -77,7 +77,7 @@ if [ "$LATEST_ONLY" -eq 1 ]; then
exit 0 exit 0
fi 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 download_swagger "refs/tags/v${ver}" v1_json.tmpl
rewrite_swagger v1_json.tmpl "${ver}" rewrite_swagger v1_json.tmpl "${ver}"
minor=$(echo "$ver" | cut -d '.' -f 2) minor=$(echo "$ver" | cut -d '.' -f 2)