Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.13.2] - 2026-07-01
### Fixed
- Disabled OkHttp's default read timeout so long-running scans are bounded only by the overall call timeout, preventing premature failures on large payloads.

Comment on lines +10 to +13

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

Add missing version comparison link for [0.13.2].

The changelog entry content is accurate and matches the implementation in ScanApi.java (disabling readTimeout while keeping callTimeout). However, the [0.13.2] reference link is missing at the bottom of the file. Add it to maintain consistency with existing versions and ensure the reference resolves.

 [0.13.1]: https://github.com/scanoss/scanoss.java/compare/v0.13.0...v0.13.1
+[0.13.2]: https://github.com/scanoss/scanoss.java/compare/v0.13.1...v0.13.2
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
## [0.13.2] - 2026-07-01
### Fixed
- Disabled OkHttp's default read timeout so long-running scans are bounded only by the overall call timeout, preventing premature failures on large payloads.
[0.13.1]: https://github.com/scanoss/scanoss.java/compare/v0.13.0...v0.13.1
[0.13.2]: https://github.com/scanoss/scanoss.java/compare/v0.13.1...v0.13.2
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@CHANGELOG.md` around lines 10 - 13, The changelog entry for 0.13.2 is missing
its version comparison link reference, so add the corresponding [0.13.2] link in
the reference section at the bottom of CHANGELOG.md. Keep the existing entry
text unchanged, and mirror the format used by other version labels in the
changelog so the new reference resolves consistently.

## [0.13.1] - 2026-03-25
### Added
- Added support to load a SCANOSS API key from an environment variable (`SCANOSS_API_KEY`) if available.
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.scanoss</groupId>
<artifactId>scanoss</artifactId>
<version>0.13.1</version>
<version>0.13.2</version>
<packaging>jar</packaging>
<name>scanoss.java</name>
<url>https://github.com/scanoss/scanoss.java</url>
Expand Down
Loading