Releases: coveooss/platform-sdk
v1.4.0
v1.3.0
- Added a new call to be able to resume an organization.
- Added a new call to be able to get the status of an organization.
- We now better handle empty files when we call SetBinaryContentFromFileAndCompress.
- AddOrUpdateDocument now encodes the DocumentId query parameter, so that we don't encounter any problems if we have a special character in the URL.
v1.2.0
- The platform SDK now supports the Australia platform and Push API endpoint.
- Fixed an inconsistency if you used "AddOrUpdateDocument" or "AddOrUpdateDocuments" without an ordering ID. If the request needed batching we were not generating an ordering ID. No consequence is expected since we generate the same as the Push API does when receiving no ordering ID.
v1.1.0
-
Added Request ID in CoveoPlatformException, if any.
-
Added DATA_MAX_SIZE_IN_BYTES in Constants.cs
-
Added SINGLE_ITEM_REQUEST_MAX_SIZE_IN_BYTES in Constants.cs
-
Added PushDocumentHelper.SetContentAndCompress method that compresses a string using Zlib and assigns the value to "CompressedBinaryData" property on the document.
-
Added PushDocumentHelper.SetBinaryContentFromFileAndCompress method that reads a file and compresses the binary data to
"CompressedBinaryData" property on the document. Works with text and binary files. -
Fixed corrupted document body when using PushDocumentHelper.SetContent or PushDocumenetHelper.SetCompressedEncodedContent
-
Fixed exception when pushing a single document that was bigger than Constants.SINGLE_ITEM_REQUEST_MAX_SIZE_IN_BYTES
-
Fixed corrupted document body when sending uncompressed data in a blob.