We are running a compute deployment that we recently upgraded from Rhino 7 to Rhino 8.
To be precise, /version now returns:
{"rhino":"8.32.26160.13001","compute":"8.0.0.0","git_sha":"84490b0e"}
We noticed that some API endpoints are no longer there. For example /rhino/geometry/mesh/getnakededges is missing, only the version with explicitly listed parameters is there: /rhino/geometry/mesh/getnakededges-mesh. This happened for a few other functions (maybe only in MeshCompute, that’s where we noticed it).
We are running a Rhino plugin providing a custom endpoint. This endpoint also changed to include the parameters in the path.
We can work with the schema change for the custom endpoint, but the mesh thing seems to be an error, as the shipped C# client still relies on ApiAddress() which only includes the function name and not the parameters.
Is this a known issue? Or should we continue looking for an error on our end? Thanks!