File tree 3 files changed +6
-4
lines changed
3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1
1
name := " gitbucket-ci-plugin"
2
2
organization := " io.github.gitbucket"
3
- version := " 1.6.2 "
3
+ version := " 1.6.3 "
4
4
scalaVersion := " 2.12.6"
5
5
gitbucketVersion := " 4.25.0"
6
6
libraryDependencies += " org.fusesource.jansi" % " jansi" % " 1.16"
Original file line number Diff line number Diff line change 3
3
<addColumn tableName =" CI_RESULT" >
4
4
<column name =" QUEUED_TIME" type =" datetime" nullable =" true" />
5
5
<column name =" EXIT_CODE" type =" int" nullable =" true" />
6
- <column name =" BUILD_SCRIPT" type =" text" nullable =" false " defaultValue = " " />
6
+ <column name =" BUILD_SCRIPT" type =" text" nullable =" true " />
7
7
</addColumn >
8
8
<sql >
9
- UPDATE CI_RESULT SET QUEUED_TIME = START_TIME
9
+ UPDATE CI_RESULT SET QUEUED_TIME = START_TIME, BUILD_SCRIPT = ''
10
10
</sql >
11
11
<sql >
12
12
UPDATE CI_RESULT SET EXIT_CODE = 0 WHERE STATUS = 'success'
16
16
</sql >
17
17
<addNotNullConstraint tableName =" CI_RESULT" columnName =" QUEUED_TIME" />
18
18
<addNotNullConstraint tableName =" CI_RESULT" columnName =" EXIT_CODE" />
19
+ <addNotNullConstraint tableName =" CI_RESULT" columnName =" BUILD_SCRIPT" />
19
20
</changeSet >
Original file line number Diff line number Diff line change @@ -58,7 +58,8 @@ class Plugin extends gitbucket.core.plugin.Plugin with CIService with AccountSer
58
58
new Version (" 1.6.0" ,
59
59
new LiquibaseMigration (" update/gitbucket-ci_1.6.0.xml" )),
60
60
new Version (" 1.6.1" ),
61
- new Version (" 1.6.2" )
61
+ new Version (" 1.6.2" ),
62
+ new Version (" 1.6.3" )
62
63
)
63
64
64
65
override val assetsMappings = Seq (" /ci" -> " /gitbucket/ci/assets" )
You can’t perform that action at this time.
0 commit comments