GroupDocs.Comparison Cloud 26.5 Release Notes
This page contains release notes for GroupDocs.Comparison Cloud 26.5
Major Features
- Added
PUT /comparison/changesendpoint for comparing documents directly from the request body without storage upload - Bug fixes and improvements
List of issues covering changes in this release
| Key | Summary | Category |
|---|---|---|
| COMPARISONCLOUD-232 | Implement API endpoint that allows to compare files in a single request without storage upload | Feature |
| GROUPDOCSCLOUD-93 | API Error: No space left on device | Bug |
Public API and Backward Incompatible Changes
New PutChanges API Method
A new PUT /comparison/changes endpoint has been added that allows comparing documents supplied directly in the request body as multipart/form-data, without uploading files to storage first.
Key Features
- No storage required: Upload source and target files directly in the request — no prior storage upload needed.
- Multi-target comparison: Supply one or more target files in a single request.
- Flexible settings: Pass comparison settings as a JSON string in the form data.
- Change type filtering: Optionally filter results to a specific change type (e.g.
Inserted).
Request
PUT /comparison/changes — content type multipart/form-data
| Parameter | Type | Required | Description |
|---|---|---|---|
| sourceFile | file | Yes | Source document file |
| targetFiles | file | Yes | One or more target document files |
| settings | string | No | Comparison settings serialized as JSON |
| changeType | string | No | Change type filter, e.g. Inserted (defaults to all changes) |
Response
Returns an array of ChangeInfo objects describing the detected changes — the same structure returned by the existing POST /comparison/changes endpoint.