Skip to content

v1.0.0.633

Pre-release
Pre-release

Choose a tag to compare

@shabtaisharon shabtaisharon released this 14 Feb 19:47
· 165 commits to master since this release
d01770e

This release includes the following changes:

  • Remove retain file attributes from archive & restore calls
  • Implement DELETE /api/brokers/{brokerName}
  • Implement GET /api/brokers/{brokerName}/relationships
  • Implement PUT /api/brokers/{brokerName}/objects/{objectName}
  • Update the ValidationException to include the ValidationErrors
    • This change gives the user the ability to access the ValidationErrors directly from the ValidationException object. For example:
      try
      {
          // code
      }
      catch (ValidationException ex)
      {
          IEnumerable<ValidationError> validationErrors = ex.ValidationErrors;
          ...
      }
  • Added new README to the root of the project
  • Added new API documentation