Closed infeo closed 7 months ago
The project has been updated to JDK 22, involving changes in GitHub Actions workflows, IntelliJ IDEA configurations, Maven settings, and source code. The --enable-preview
flag has been removed, and unused variables in method parameters have been replaced with _
to improve code readability.
Files | Change Summary |
---|---|
.github/workflows/... |
Updated Java version from 21 to 22 in GitHub Actions workflows. |
.idea/misc.xml |
Updated Java language level from JDK_21 to JDK_22 . |
.idea/runConfigurations/Mirror.xml |
Removed --enable-preview flag from VM parameters. |
pom.xml |
Updated JDK version to 22, updated jfuse to 0.7.0, removed --enable-preview . |
src/main/java/org/cryptomator/frontend/fuse/...Adapter.java |
Replaced dataLock with _ in method parameters. |
🎉🐇 To JDK 22 we hop,
No more--enable-preview
, let it drop.
With_
in place, the code now neat,
Cryptomator's updates are quite a feat.
Cheers to the devs, hip hip hooray,
Onward we code, by night and by day!
🎉🐇
.github/workflows/dependency-check.yml (1)
`17-17`: Update to JDK 22 is correctly applied in the dependency check workflow..idea/runConfigurations/Mirror.xml (1)
`5-5`: Correct removal of `--enable-preview` and appropriate use of `--enable-native-access=ALL-UNNAMED` in the IntelliJ IDEA run configuration..github/workflows/codeql-analysis.yml (1)
`23-23`: Update to JDK 22 is correctly applied in the CodeQL analysis workflow..github/workflows/publish-github.yml (1)
`13-13`: Update to JDK 22 is correctly applied in the GitHub Packages publishing workflow..github/workflows/publish-central.yml (1)
`18-18`: Update to JDK 22 is correctly applied in the Maven Central publishing workflow.pom.xml (2)
`20-20`: Update to JDK 22 is correctly applied in the Maven POM file. --- `24-24`: Update to `jfuse` version 0.7.0 is correctly applied in the Maven POM file.
Issues
0 New issues
0 Accepted issues
Measures
0 Security Hotspots
No data about Coverage
0.0% Duplication on New Code
This PR updates the project to JDK 22.
Included changes:
--enable-preview
flagSummary by CodeRabbit
New Features
Bug Fixes
--enable-preview
flag in configurations to stabilize runtime behavior.Refactor