-
Notifications
You must be signed in to change notification settings - Fork 278
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
apache-tika-3.0/3.0.0-r2: cve remediation #38403
base: main
Are you sure you want to change the base?
apache-tika-3.0/3.0.0-r2: cve remediation #38403
Conversation
Signed-off-by: Dentrax <furkan.turkal@chainguard.dev>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this shouldn't be merged as it breaks application:
2024/12/29 21:41:59 WARN Exception in thread "main" java.lang.NoSuchMethodError: 'int org.eclipse.jetty.util.URIUtil.getDefaultPortForScheme(java.lang.String)' name="start server and verify endpoint"
Signed-off-by: Dentrax <furkan.turkal@chainguard.dev>
Gen AI suggestions to solve the build error: • Detected Error:
• Error Category: Build/Compilation • Failure Point: Maven test compilation phase in tika-grpc module • Root Cause Analysis: The test class PipesBiDirectionalStreamingIntegrationTest is trying to use a constructor for PathResource that either doesn't exist or isn't accessible. The PathResource class from Jetty expects a URI constructor but is being passed a Path object. • Suggested Fix:
// Change from:
new PathResource(path)
// To:
new PathResource(path.toUri()) • Explanation:
• Additional Notes:
• References:
|
apache-tika-3.0/3.0.0-r2: fix GHSA-qh8g-58pp-2wxh
Advisory data: https://github.com/wolfi-dev/advisories/blob/main/apache-tika-3.0.advisories.yaml