I need to find out which versions of an arbitrary Debian package have ever existed for a certain Debian major version.
On a fresh Debian install, apt-cache policy only shows me the latest package version available.
Let's take libssl1.0.0, for example. Debian Wheezy 7.0 came with a libssl1.0.0 which was vulnerable to the heartbleed bug. Later, the bug was fixed, and a new version (1.0.1e-2+deb7u5) was released.
I need a list of all of these patches, from the first released Debian major version up to the current date. I would prefer to do that with existing tools (apt-cache for example).
I could imagine that this is solvable using additional sources.list entries, but I was searching the web for over two hours without success.
Does anyone have an idea on how to do that?
Background: I am currently running an investigation about the occurrence of CVE-fixes in Debian packages. It's a quite cumbersome job, so I would like to avoid walking through every changelog to check release dates, version numbers and so on (this is necessary later on anyway, however, I would like to postpone this task).