Skip to content

Commit a351c26

Browse files
committedOct 7, 2024
Merge branch 'master' into metal
2 parents aa26a6c + f681302 commit a351c26

File tree

89 files changed

+6663
-896
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+6663
-896
lines changed
 

‎.github/workflows/submit.yml

+12-12
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ jobs:
7373
# BOOT_JDK_FILENAME: "${{ fromJson(needs.prerequisites.outputs.dependencies).LINUX_X64_BOOT_JDK_FILENAME }}"
7474
# BOOT_JDK_URL: "${{ fromJson(needs.prerequisites.outputs.dependencies).LINUX_X64_BOOT_JDK_URL }}"
7575
# BOOT_JDK_SHA256: "${{ fromJson(needs.prerequisites.outputs.dependencies).LINUX_X64_BOOT_JDK_SHA256 }}"
76-
BOOT_JDK_VERSION: "22.0.2"
77-
BOOT_JDK_FILENAME: "jdk-22.0.2_linux-x64_bin.tar.gz"
78-
BOOT_JDK_URL: "https://download.oracle.com/java/22/archive/jdk-22.0.2_linux-x64_bin.tar.gz"
76+
BOOT_JDK_VERSION: "23"
77+
BOOT_JDK_FILENAME: "jdk-23_linux-x64_bin.tar.gz"
78+
BOOT_JDK_URL: "https://download.oracle.com/java/23/archive/jdk-23_linux-x64_bin.tar.gz"
7979
ANT_DIR: "apache-ant-1.10.5"
8080
ANT_FILENAME: "apache-ant-1.10.5.tar.gz"
8181
ANT_URL: "https://archive.apache.org/dist/ant/binaries/apache-ant-1.10.5-bin.tar.gz"
@@ -155,9 +155,9 @@ jobs:
155155
# BOOT_JDK_FILENAME: "${{ fromJson(needs.prerequisites.outputs.dependencies).LINUX_X64_BOOT_JDK_FILENAME }}"
156156
# BOOT_JDK_URL: "${{ fromJson(needs.prerequisites.outputs.dependencies).LINUX_X64_BOOT_JDK_URL }}"
157157
# BOOT_JDK_SHA256: "${{ fromJson(needs.prerequisites.outputs.dependencies).LINUX_X64_BOOT_JDK_SHA256 }}"
158-
BOOT_JDK_VERSION: "22.0.2"
159-
BOOT_JDK_FILENAME: "jdk-22.0.2_macos-x64_bin.tar.gz"
160-
BOOT_JDK_URL: "https://download.oracle.com/java/22/archive/jdk-22.0.2_macos-x64_bin.tar.gz"
158+
BOOT_JDK_VERSION: "23"
159+
BOOT_JDK_FILENAME: "jdk-23_macos-x64_bin.tar.gz"
160+
BOOT_JDK_URL: "https://download.oracle.com/java/23/archive/jdk-23_macos-x64_bin.tar.gz"
161161
# Disabled due to timeout downloading ant; use ant installed on system
162162
#ANT_DIR: "apache-ant-1.10.5"
163163
#ANT_FILENAME: "apache-ant-1.10.5.tar.gz"
@@ -241,9 +241,9 @@ jobs:
241241
# BOOT_JDK_FILENAME: "${{ fromJson(needs.prerequisites.outputs.dependencies).LINUX_X64_BOOT_JDK_FILENAME }}"
242242
# BOOT_JDK_URL: "${{ fromJson(needs.prerequisites.outputs.dependencies).LINUX_X64_BOOT_JDK_URL }}"
243243
# BOOT_JDK_SHA256: "${{ fromJson(needs.prerequisites.outputs.dependencies).LINUX_X64_BOOT_JDK_SHA256 }}"
244-
BOOT_JDK_VERSION: "22.0.2"
245-
BOOT_JDK_FILENAME: "jdk-22.0.2_macos-aarch64_bin.tar.gz"
246-
BOOT_JDK_URL: "https://download.oracle.com/java/22/archive/jdk-22.0.2_macos-aarch64_bin.tar.gz"
244+
BOOT_JDK_VERSION: "23"
245+
BOOT_JDK_FILENAME: "jdk-23_macos-aarch64_bin.tar.gz"
246+
BOOT_JDK_URL: "https://download.oracle.com/java/23/archive/jdk-23_macos-aarch64_bin.tar.gz"
247247
# Disabled due to timeout downloading ant; use ant installed on system
248248
#ANT_DIR: "apache-ant-1.10.5"
249249
#ANT_FILENAME: "apache-ant-1.10.5.tar.gz"
@@ -327,9 +327,9 @@ jobs:
327327
# BOOT_JDK_FILENAME: "${{ fromJson(needs.prerequisites.outputs.dependencies).LINUX_X64_BOOT_JDK_FILENAME }}"
328328
# BOOT_JDK_URL: "${{ fromJson(needs.prerequisites.outputs.dependencies).LINUX_X64_BOOT_JDK_URL }}"
329329
# BOOT_JDK_SHA256: "${{ fromJson(needs.prerequisites.outputs.dependencies).LINUX_X64_BOOT_JDK_SHA256 }}"
330-
BOOT_JDK_VERSION: "22.0.2"
331-
BOOT_JDK_FILENAME: "jdk-22.0.2_windows-x64_bin.zip"
332-
BOOT_JDK_URL: "https://download.oracle.com/java/22/archive/jdk-22.0.2_windows-x64_bin.zip"
330+
BOOT_JDK_VERSION: "23"
331+
BOOT_JDK_FILENAME: "jdk-23_windows-x64_bin.zip"
332+
BOOT_JDK_URL: "https://download.oracle.com/java/23/archive/jdk-23_windows-x64_bin.zip"
333333
ANT_DIR: "apache-ant-1.10.5"
334334
ANT_FILENAME: "apache-ant-1.10.5.tar.gz"
335335
ANT_URL: "https://archive.apache.org/dist/ant/binaries/apache-ant-1.10.5-bin.tar.gz"

‎SECURITY.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# JavaFX Vulnerabilities
2+
3+
Please follow the process outlined in the [OpenJDK Vulnerability Policy](https://openjdk.org/groups/vulnerability/report) to disclose vulnerabilities in JavaFX.

0 commit comments

Comments
 (0)
Please sign in to comment.