Skip to content

Commit 3bb6bfd

Browse files
authored
Merge branch 'master' into java-level-migrations
2 parents e5bf2fe + 57ea7ce commit 3bb6bfd

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

.github/workflows/changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
# Drafts your next Release notes as Pull Requests are merged into "master"
2525
- name: Generate GitHub Release Draft
2626
id: release-drafter
27-
uses: release-drafter/release-drafter@b1476f6e6eb133afa41ed8589daba6dc69b4d3f5 # v6.1.0
27+
uses: release-drafter/release-drafter@267d2e0268deae5d44f3ba5029dd4d6e85f9d52d # v6.1.1
2828
env:
2929
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3030
# Generates a YAML changelog file using https://github.com/jenkinsci/jenkins-core-changelog-generator

.github/workflows/publish-release-artifact.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
2020
- name: Set up JDK 21
21-
uses: actions/setup-java@5d7b2146334bacf88728daaa70414a99f5164e0f #v 5.0.0
21+
uses: actions/setup-java@d81c4e45f3ac973cc936d79104023e20054ba578 #v 5.0.0
2222
with:
2323
distribution: "temurin"
2424
java-version: 21

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"eslint-formatter-checkstyle": "9.0.1",
3737
"globals": "17.0.0",
3838
"handlebars-loader": "1.7.3",
39-
"mini-css-extract-plugin": "2.9.4",
39+
"mini-css-extract-plugin": "2.10.0",
4040
"postcss": "8.5.6",
4141
"postcss-loader": "8.2.0",
4242
"postcss-preset-env": "11.1.1",

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ THE SOFTWARE.
7373
</issueManagement>
7474

7575
<properties>
76-
<revision>2.547</revision>
76+
<revision>2.548</revision>
7777
<changelist>-SNAPSHOT</changelist>
78-
<project.build.outputTimestamp>2026-01-13T06:41:44Z</project.build.outputTimestamp>
78+
<project.build.outputTimestamp>2026-01-20T06:41:48Z</project.build.outputTimestamp>
7979

8080
<!-- configuration for patch tracker plugin -->
8181
<project.patchManagement.system>github</project.patchManagement.system>

src/main/js/util/dom.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ export function createElementFromHtml(html) {
55
}
66

77
export function toId(string) {
8-
return string
9-
.trim()
10-
.replace(/[\W_]+/g, "-")
11-
.toLowerCase();
8+
const trimmed = string.trim();
9+
return Array.from(trimmed)
10+
.map((c) => c.codePointAt(0).toString(16))
11+
.join("-");
1212
}

war/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ THE SOFTWARE.
383383
<!-- dependency of trilead-api -->
384384
<groupId>io.jenkins.plugins</groupId>
385385
<artifactId>eddsa-api</artifactId>
386-
<version>0.3.0.1-27.v6ea_07b_e90d1a_</version>
386+
<version>0.3.0.1-29.v67e9a_1c969b_b_</version>
387387
<type>hpi</type>
388388
</artifactItem>
389389
<artifactItem>

yarn.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4556,7 +4556,7 @@ __metadata:
45564556
hotkeys-js: "npm:3.12.2"
45574557
jquery: "npm:3.7.1"
45584558
lodash: "npm:4.17.21"
4559-
mini-css-extract-plugin: "npm:2.9.4"
4559+
mini-css-extract-plugin: "npm:2.10.0"
45604560
postcss: "npm:8.5.6"
45614561
postcss-loader: "npm:8.2.0"
45624562
postcss-preset-env: "npm:11.1.1"
@@ -5000,15 +5000,15 @@ __metadata:
50005000
languageName: node
50015001
linkType: hard
50025002

5003-
"mini-css-extract-plugin@npm:2.9.4":
5004-
version: 2.9.4
5005-
resolution: "mini-css-extract-plugin@npm:2.9.4"
5003+
"mini-css-extract-plugin@npm:2.10.0":
5004+
version: 2.10.0
5005+
resolution: "mini-css-extract-plugin@npm:2.10.0"
50065006
dependencies:
50075007
schema-utils: "npm:^4.0.0"
50085008
tapable: "npm:^2.2.1"
50095009
peerDependencies:
50105010
webpack: ^5.0.0
5011-
checksum: 10c0/76f9e471784d52435ea766ce576ad23d37d0ea51c32ddc56414c8fdf14f7de44202dbc772cdf7549b7e54a5e56f569af93cfbd036d62d13ff8fd9571e53353b7
5011+
checksum: 10c0/5fb0654471f4fb695629d96324d327d4d3a05069a95b83770d070e8f48a07d5b5f8da61adabdd56e3119cf6b17eef058c4ba6ab4cd31a7b2af48624621fe0520
50125012
languageName: node
50135013
linkType: hard
50145014

0 commit comments

Comments
 (0)