Skip to content

Commit 95d36af

Browse files
committed
Update for GitBucket 4.34.0 compatibility
1 parent 61c22d2 commit 95d36af

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ In addition, this plug-in is made to just experiment continuous integration on G
5656

5757
Plugin version | GitBucket version
5858
:--------------|:--------------------
59+
1.10.x | 4.34.x -
5960
1.9.x | 4.32.x -
6061
1.8.x | 4.31.x -
6162
1.7.x | 4.30.x -

build.sbt

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
name := "gitbucket-ci-plugin"
22
organization := "io.github.gitbucket"
3-
version := "1.9.1"
3+
version := "1.10.0"
44
scalaVersion := "2.13.1"
5-
gitbucketVersion := "4.32.0"
5+
gitbucketVersion := "4.34.0"
66
scalacOptions += "-deprecation"
77
libraryDependencies ++= Seq(
88
"org.fusesource.jansi" % "jansi" % "1.18",
99
"org.scalatest" %% "scalatest" % "3.0.8" % "test",
10-
"com.dimafeng" %% "testcontainers-scala" % "0.29.0" % "test",
10+
"com.dimafeng" %% "testcontainers-scala" % "0.37.0" % "test",
1111
"org.testcontainers" % "mysql" % "1.12.0" % "test",
12-
"org.testcontainers" % "postgresql" % "1.12.0" % "test"
12+
"org.testcontainers" % "postgresql" % "1.14.3" % "test"
1313
)
1414

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

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ import scala.util.Using
1616
class CIPullRequestHook extends PullRequestHook
1717
with PullRequestService with IssuesService with CommitsService with AccountService with WebHookService
1818
with WebHookPullRequestService with WebHookPullRequestReviewCommentService with ActivityService with MergeService
19-
with RepositoryService with LabelsService with PrioritiesService with MilestonesService with CIService {
19+
with RepositoryService with LabelsService with PrioritiesService with MilestonesService with CIService
20+
with RequestCache {
2021

2122
private def runBuildWith(issue: Issue, repository: RepositoryInfo, isMergeRequest: Boolean)(implicit session: Session, context: Context): Unit = {
2223
if(issue.isPullRequest){

0 commit comments

Comments
 (0)