mirror of
https://gitea.com/gitea/docs.git
synced 2026-09-17 19:55:34 +00:00
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:
@@ -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',
|
||||||
|
|||||||
+18
-10
@@ -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,10 +31985,7 @@
|
|||||||
"UserSettings": {
|
"UserSettings": {
|
||||||
"description": "UserSettings",
|
"description": "UserSettings",
|
||||||
"schema": {
|
"schema": {
|
||||||
"type": "array",
|
"$ref": "#/definitions/UserSettings"
|
||||||
"items": {
|
|
||||||
"$ref": "#/definitions/UserSettings"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"VariableList": {
|
"VariableList": {
|
||||||
@@ -32187,4 +32195,4 @@
|
|||||||
"TOTPHeader": []
|
"TOTPHeader": []
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
+1
-1
@@ -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)
|
||||||
|
|||||||
Reference in New Issue
Block a user