Skip to content

Commit 0fef483

Browse files
committed
Bump to GitBucket 4.23.0
1 parent 78ec14f commit 0fef483

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ In addition, this plug-in is made to just experiment continuous integration on G
3535

3636
Plugin version | GitBucket version
3737
:--------------|:--------------------
38+
1.4.x - | 4.23.x -
3839
1.3.x - | 4.19.x -
3940
1.0.x - 1.2.x | 4.17.x, 4.18.x
4041

@@ -48,6 +49,10 @@ Run `sbt assembly` and copy generated `/target/scala-2.12/gitbucket-ci-plugin-as
4849

4950
## Release Notes
5051

52+
### 1.4.0
53+
54+
- Max parallel builds and max stored history became configurable
55+
5156
### 1.3.0
5257

5358
- update for Scalatra 2.6

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ name := "gitbucket-ci-plugin"
22
organization := "io.github.gitbucket"
33
version := "1.4.0"
44
scalaVersion := "2.12.4"
5-
gitbucketVersion := "4.19.0"
5+
gitbucketVersion := "4.23.0"
66
libraryDependencies += "org.fusesource.jansi" % "jansi" % "1.16"
77

src/main/scala/io/github/gitbucket/ci/hook/CIPullRequestHook.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import profile.api._
1515

1616
class CIPullRequestHook extends PullRequestHook
1717
with PullRequestService with IssuesService with CommitsService with AccountService
18-
with RepositoryService with CIService {
18+
with RepositoryService with LabelsService with PrioritiesService with MilestonesService with CIService {
1919

2020
override def created(issue: Issue, repository: RepositoryInfo)(implicit session: Session, context: Context): Unit = {
2121
if(issue.isPullRequest){

0 commit comments

Comments
 (0)