Skip to content

Commit 6a89ee6

Browse files
authored
Merge branch 'master' into ui-migration-cancel
2 parents 934ed01 + 594cc4a commit 6a89ee6

File tree

2 files changed

+18
-9
lines changed

2 files changed

+18
-9
lines changed

docs/config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ params:
1818
description: Git with a cup of tea
1919
author: The Gitea Authors
2020
website: https://docs.gitea.io
21-
version: 1.12.6
21+
version: 1.13.0
2222
minGoVersion: 1.13
2323
goVersion: 1.15
2424
minNodeVersion: 10.13

models/migrations/migrations.go

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ type Version struct {
5757
// update minDBVersion accordingly
5858
var migrations = []Migration{
5959

60-
// Gitea 1.5.3 ends at v70
60+
// Gitea 1.5.0 ends at v69
6161

6262
// v70 -> v71
6363
NewMigration("add issue_dependencies", addIssueDependencies),
@@ -66,7 +66,7 @@ var migrations = []Migration{
6666
// v72 -> v73
6767
NewMigration("add review", addReview),
6868

69-
// Gitea 1.6.4 ends at v73
69+
// Gitea 1.6.0 ends at v73
7070

7171
// v73 -> v74
7272
NewMigration("add must_change_password column for users table", addMustChangePassword),
@@ -75,7 +75,7 @@ var migrations = []Migration{
7575
// v75 -> v76
7676
NewMigration("clear nonused data which not deleted when user was deleted", clearNonusedData),
7777

78-
// Gitea 1.7.6 ends at v76
78+
// Gitea 1.7.0 ends at v76
7979

8080
// v76 -> v77
8181
NewMigration("add pull request rebase with merge commit", addPullRequestRebaseWithMerge),
@@ -90,7 +90,7 @@ var migrations = []Migration{
9090
// v81 -> v82
9191
NewMigration("update U2F counter type", changeU2FCounterType),
9292

93-
// Gitea 1.8.3 ends at v82
93+
// Gitea 1.8.0 ends at v82
9494

9595
// v82 -> v83
9696
NewMigration("hot fix for wrong release sha1 on release table", fixReleaseSha1OnReleaseTable),
@@ -105,7 +105,7 @@ var migrations = []Migration{
105105
// v87 -> v88
106106
NewMigration("add avatar field to repository", addAvatarFieldToRepository),
107107

108-
// Gitea 1.9.6 ends at v88
108+
// Gitea 1.9.0 ends at v88
109109

110110
// v88 -> v89
111111
NewMigration("add commit status context field to commit_status", addCommitStatusContext),
@@ -129,14 +129,14 @@ var migrations = []Migration{
129129
NewMigration("add repo_admin_change_team_access to user", addRepoAdminChangeTeamAccessColumnForUser),
130130
// v98 -> v99
131131
NewMigration("add original author name and id on migrated release", addOriginalAuthorOnMigratedReleases),
132-
133-
// Gitea 1.10.3 ends at v99
134-
135132
// v99 -> v100
136133
NewMigration("add task table and status column for repository table", addTaskTable),
137134
// v100 -> v101
138135
NewMigration("update migration repositories' service type", updateMigrationServiceTypes),
139136
// v101 -> v102
137+
138+
// Gitea 1.10.0 ends at v102
139+
140140
NewMigration("change length of some external login users columns", changeSomeColumnsLengthOfExternalLoginUser),
141141
// v102 -> v103
142142
NewMigration("update migration repositories' service type", dropColumnHeadUserNameOnPullRequest),
@@ -167,6 +167,9 @@ var migrations = []Migration{
167167
// v115 -> v116
168168
NewMigration("add user_id prefix to existing user avatar name", renameExistingUserAvatarName),
169169
// v116 -> v117
170+
171+
// Gitea 1.11.0 ends at v117
172+
170173
NewMigration("Extend TrackedTimes", extendTrackedTimes),
171174
// v117 -> v118
172175
NewMigration("Add block on rejected reviews branch protection", addBlockOnRejectedReviews),
@@ -213,6 +216,9 @@ var migrations = []Migration{
213216
// v138 -> v139
214217
NewMigration("Add ResolveDoerID to Comment table", addResolveDoerIDCommentColumn),
215218
// v139 -> v140
219+
220+
// Gitea 1.12.0 ends at v140
221+
216222
NewMigration("prepend refs/heads/ to issue refs", prependRefsHeadsToIssueRefs),
217223
// v140 -> v141
218224
NewMigration("Save detected language file size to database instead of percent", fixLanguageStatsToSaveSize),
@@ -243,6 +249,9 @@ var migrations = []Migration{
243249
// v153 > v154
244250
NewMigration("add Team review request support", addTeamReviewRequestSupport),
245251
// v154 > v155
252+
253+
// Gitea 1.13.0 ends at v155
254+
246255
NewMigration("add timestamps to Star, Label, Follow, Watch and Collaboration", addTimeStamps),
247256
// v155 -> v156
248257
NewMigration("add changed_protected_files column for pull_request table", addChangedProtectedFilesPullRequestColumn),

0 commit comments

Comments
 (0)