Skip to content

Commit f035cea

Browse files
committed
Fix compilation error in GitBucket 4.31.0
1 parent ee5590d commit f035cea

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,12 @@ Run `sbt assembly` and copy generated `/target/scala-2.12/gitbucket-ci-plugin-as
7373

7474
## Release Notes
7575

76+
### 1.8.0
77+
- Docker support
78+
79+
### 1.7.0
80+
- Update for GitBucket 4.30.x
81+
7682
### 1.6.0
7783
- Some CircleCI compatible Web API
7884

build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name := "gitbucket-ci-plugin"
22
organization := "io.github.gitbucket"
3-
version := "1.7.0"
4-
scalaVersion := "2.12.7"
5-
gitbucketVersion := "4.30.0"
3+
version := "1.8.0"
4+
scalaVersion := "2.12.8"
5+
gitbucketVersion := "4.31.0"
66
libraryDependencies ++= Seq(
77
"org.fusesource.jansi" % "jansi" % "1.16",
88
"org.scalatest" %% "scalatest" % "3.0.5" % "test",

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 with WebHookService
18-
with WebHookPullRequestService with WebHookPullRequestReviewCommentService with ActivityService
18+
with WebHookPullRequestService with WebHookPullRequestReviewCommentService with ActivityService with MergeService
1919
with RepositoryService with LabelsService with PrioritiesService with MilestonesService with CIService {
2020

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

0 commit comments

Comments
 (0)