From 87ec9520171fb156a9024163c42275c8debb4dc5 Mon Sep 17 00:00:00 2001 From: ikedam Date: Fri, 28 Apr 2023 08:47:59 +0900 Subject: [PATCH 1/2] Update target Jenkins version to 2.361.4 (was: 2.289.1) --- Jenkinsfile | 19 +++++-------------- pom.xml | 9 ++++----- 2 files changed, 9 insertions(+), 19 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d4b8b1f..35198d4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,16 +1,7 @@ -/* - See the documentation for more options: - https://github.com/jenkins-infra/pipeline-library/ -*/ -// This should be updated manually. -// See: https://www.jenkins.io/changelog-stable/ -def recentLts = '2.303.1' - buildPlugin( - configurations: [ - [ platform: 'linux', jdk: '8' ], - [ platform: 'windows', jdk: '8' ], - [ platform: 'linux', jdk: '11', jenkins: recentLts ], - ], useContainerAgent: true, -) + configurations: [ + [platform: 'linux', jdk: 17], + [platform: 'linux', jdk: 11], + [platform: 'windows', jdk: 11], +]) diff --git a/pom.xml b/pom.xml index 788b9af..970353e 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.jenkins-ci.plugins plugin - 4.24 + 4.61 io.jenkins.plugins @@ -14,8 +14,7 @@ 999999-SNAPSHOT - 2.289.1 - 8 + 2.361.4 jenkinsci/${project.artifactId}-plugin Editable Choice Plugin @@ -43,8 +42,8 @@ io.jenkins.tools.bom - bom-2.277.x - 937.v51fde92016ed + bom-2.361.x + 2025.v816d28f1e04f import pom From 41fe642a67c5d1fc629fe30960c6f2781fbebdd9 Mon Sep 17 00:00:00 2001 From: ikedam Date: Fri, 28 Apr 2023 08:53:07 +0900 Subject: [PATCH 2/2] [JENKINS-71093] Fix UI: dropdown should be displayed over another elements * Regression since Jenkins-2.346.1 --- .../plugins/editable_choice/taglib/suggestInput/suggestInput.css | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/resources/io/jenkins/plugins/editable_choice/taglib/suggestInput/suggestInput.css b/src/main/resources/io/jenkins/plugins/editable_choice/taglib/suggestInput/suggestInput.css index 2a3eaaa..79fe57c 100644 --- a/src/main/resources/io/jenkins/plugins/editable_choice/taglib/suggestInput/suggestInput.css +++ b/src/main/resources/io/jenkins/plugins/editable_choice/taglib/suggestInput/suggestInput.css @@ -16,6 +16,7 @@ } .editable-choice-suggest .editable-choice-suggest-choices { + z-index: 999; display: none; position: absolute; width: 100%;