Upgrade dependencies and refactor server implementation#372
Open
fuchsst wants to merge 6 commits intoschibsted:masterfrom
Open
Upgrade dependencies and refactor server implementation#372fuchsst wants to merge 6 commits intoschibsted:masterfrom
fuchsst wants to merge 6 commits intoschibsted:masterfrom
Conversation
added 4 commits
March 21, 2025 17:16
Updated Gradle plugins, dependencies, and wrapper to newer versions, improving compatibility and performance. Refactored `PlaygroundServer` to use modern Jetty APIs, enhancing HTTP request handling and response streaming. Adjusted build scripts to align with dependency updates.
Updated the CodeQL actions from v1 to v3 and removed redundant steps for autobuild by utilizing the `build-mode` parameter in the initialization. Ensured the workflow is streamlined and optimized for Java projects.
The CodeQL workflow now uses a distinct autobuild step instead of specifying the build mode in the initialization step. Additional comments have been added for better guidance on handling build failures and manually configuring the build process for compiled languages. This improves flexibility and aligns with best practices.
Upgraded the CodeQL autobuild action from v1 to v3 in the GitHub workflow. This ensures compatibility with the latest features and improvements provided by the CodeQL action.
Collaborator
|
Thank you for the PR! Since it doesn't build I cannot merge, unfortunately. I can't work out exactly what the problem is. |
added 2 commits
March 24, 2025 11:17
Upgraded the source and target compatibility in build.gradle from Java 11 to Java 19.
Upgraded sourceCompatibility and targetCompatibility in build.gradle from version 19 to 21.
Contributor
Author
Hi! i updated the dependencies and some are no more compatible with java 11. So also bumped the target JVM version to latest LTS (21 - which was released already 1.5 years ago) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Updated Gradle plugins, dependencies, and wrapper to newer versions. Refactored
PlaygroundServerto use latest Jetty. Adjusted build scripts to align with dependency updates.