As a Roblox developer, it is currently difficult to get what version information about places without uploading a new copy of the place. This is because there exists no Open Cloud endpoint to get that information, so the only way to get it via Open Cloud is via the place uploading endpoint, which happens to return it.
The place version is very important for performing tasks with the Luau execution endpoints. While you can technically create tasks for the latest version of the place, it is safer to use a fixed version for CI tasks to avoid problems.
Right now, the only way to get a place version is either via the Place publishing API or a legacy cookie-based endpoint which I could not even find the documentation for (for posterity, it is https://develop.roblox.com/v1/assets/{asset_id}/versions
). Obviously using cookies is undesirable, and uploading a new place just to get a version number is silly.
If Roblox were to add a way to get the place version via open cloud endpoints, I’d be happy and I could stop using a cookie-authenticate endpoint for running open cloud execution tasks.