The issue is, I use cURL Endevor REST API calls for endevor functions, but one of its function (PUT) seem to fail now which was working fine before the upgrade.
Release :18.0.8
Component : CA Endevor Software Change Manager
Client is using cURL to create package with fromDSN and fromMember parameters in a way like this:
curl -X PUT 'http://host:port/xxx/
This doesn't work currently because of recent enhancement in the code. The correct way to do the same thing in cURL is something like this:
curl -F fromDSN=xxx -F fromMember=YYY -X PUT 'http://host:port/xxx/
reference the current RESTful API syntax. https://docops.ca.com/ca-endevor-SCM/18-0/en/using/using-the-rest-api/package-actions-for-restful-api#PackageActionsforRESTfulAPI-CreatePackage