GroupDocs.Comparison Cloud 26.5 Release Notes

Major Features

  • Added PUT /comparison/changes endpoint for comparing documents directly from the request body without storage upload
  • Bug fixes and improvements

List of issues covering changes in this release

KeySummaryCategory
COMPARISONCLOUD-232Implement API endpoint that allows to compare files in a single request without storage uploadFeature
GROUPDOCSCLOUD-93API Error: No space left on deviceBug

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

ParameterTypeRequiredDescription
sourceFilefileYesSource document file
targetFilesfileYesOne or more target document files
settingsstringNoComparison settings serialized as JSON
changeTypestringNoChange 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.