Feature #5901
open
REST API to expose the Redmine version
Added by Eric Davis over 14 years ago.
Updated about 9 years ago.
Description
After reading Alexey Skor's forum post about the API versions, I think it would make 3rd party development easier if Redmine had a REST API method to find out what version of Redmine the server is running.
That way a client can check to see if the server supports the API requests it needs (e.g. 1.0+ has an issues API, 0.9 doesn't).
Thoughts?
Files
Agreed, it's a must-have.
- Assignee deleted (
Eric Davis)
I am stepping down from working on Redmine. If someone else is interesting in working on this issue, feel free to reassign it to them.
Eric Davis
this would be a very useful feature for my application. I could add a "ping" button to "Redmine server" dialog and show if the server is
1) up and running
2) has REST API enabled
3) the server version info
- Target version set to Candidate for next major release
Or even better, an API to request what API resources are supported by the server.
Calling it would return a list similar to the table on the page Rest_api, primarily the "resource" and "status" columns.
Perhaps a separate issue...
Displaying a version number was disabled because of security concerns since Redmine 0.8(#794). I think it should not be exposed through REST API for the same reason.
I think it should not be exposed through REST API for the same reason.
Even after authentication via API token?
Redmine 3.x broke backward compatibility again - the date format used by it is different from Redmine 2.6.2:
From redmine 2.6.0: "updated_on":"2015-01-23T00:15:24Z"
From redmine 3.0.0: "updated_on":"2015-01-29T10:06:19.000Z"
one of our users submitted this bug report: https://github.com/taskadapter/redmine-java-api/pull/175
if we could query Redmine to see its version, we could pick the right date format instead of guessing... now we will have to check "are there 3 more digits after this and before that?"..
another (actually better!) option would be querying Redmine to see what date format it uses for long dates and short dates - because this is what the library actually cares about. I will submit this as a separate feature request.
another example: I see 'spent_hours' default value for new issues created through REST API is NULL for Redmine 3.0.0 and is equal to "0.0" for Redmine 2.6.2.
there is no way for the java api library to detect the Redmine version (well, unless we start parsing 'redmine/admin/info' HTML page, which is definitely not what we want to do).
- Related to Feature #794: Restrict display of version number in footer added
- Has duplicate Feature #33612: Expose repository version via REST API added
Also available in: Atom
PDF