SDK regeneration#3
Merged
Merged
Conversation
Generated by Fern CLI Version: unknown Generators: - fernapi/fern-java-sdk: 4.9.1
|
|
||
| if (logger.isDebug()) { | ||
| StringBuilder sb = new StringBuilder(); | ||
| sb.append("HTTP Request: ").append(request.method()).append(" ").append(request.url()); |
There was a problem hiding this comment.
🔒 Agentic Security Review
Severity: MEDIUM
The new logging interceptor records full request and response URLs (request.url() / response.request().url()) without redacting query parameters. If API consumers pass credentials or signed tokens via query strings (for example, access tokens or presigned URL signatures), those secrets will be emitted into application logs when SDK logging is enabled.
Impact: Sensitive authentication material can be exposed to log sinks and operators, increasing credential leakage risk.
Reviewed by Cursor Security Reviewer for commit da4a623. Configure here.
VictorLeach96
approved these changes
Jun 5, 2026
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.


Automated SDK generation by Fern
Note
High Risk
Large generated diff with breaking consumer changes (list return types, exception/type renames, new required builder fields) across most API clients.
Overview
Regenerates the IcePanel Java SDK to v0.1.5 via Fern (CLI 5.44.7, Java generator 4.9.1), with dependency bumps (Jackson 2.18.6) and Fern Replay metadata (
.fern/replay.lock, expanded.fernignore, new CONTRIBUTING.md).API surface changes: Many list operations now return
SyncPagingIterablewithcursor/limitquery params instead of one-shot list response types. Addslandscapes.import_()(create/get import jobs) andmodel.objects().dependenciesList(). Several request models gain explicit nullable fields (e.g.parentId,modelHandleId) andVersionPartialis renamed toVersionUpdate.Client behavior: Builders accept optional
logging(LogConfig). HTTP clients map more status codes to typed errors (BadRequestError,ForbiddenError,ServiceUnavailableError). Docs/README call outIcePanelClientApiException, pagination usage, and retry policy options.Reviewed by Cursor Bugbot for commit da4a623. Bugbot is set up for automated code reviews on this repo. Configure here.