Link to home
Start Free TrialLog in
Avatar of killdurst
killdurst

asked on

How to list the fixes in the new software update packages when compared to the current version?

The current version of the Apache HTTP Server package on my server is "2.2.15-28.el6_4". There is a new version; "2.2.15-29.el6_4"

How do I find out and list the fixes that will be implemented in the new version when compared to the current version?

Another package to be updated is mysql, from "5.1.66-1.el6_3" to "5.1.69-1.el6_4". I need to list down the fixes as well.

Thanks.
Avatar of Member_2_6582184
Member_2_6582184
Flag of Germany image

Use yum-changelog -you might need to install this:
yum changelog 2013-Sep httpd\*

Open in new window

Or, if already installed, use rpm:
rpm -q --changelog httpd | less

Open in new window

I found these changelogs often relatively meaningless, since they are maintained by the packager. Often you will find changes like this: 'Updated to apache version X.XX'. Then you will have to go to upstream's website and look for yourself.

As for RedHat, do not expect changes or even new features. These are implemented only when upgrading to the next minor/major version.
The updates are most often back ported to fix some security issues. Normally it is perfectly safe to install them, no questions asked.
Avatar of killdurst
killdurst

ASKER

I downloaded "httpd-2.2.15-28.el6.centos.x86_64.rpm" and "httpd-2.2.15-29.el6.centos.x86_64.rpm" from "http://rpm.pbone.net", extracted them and compared the folders using WinMerge.

Both have an identical file called "CHANGES" under "usr\share\doc\httpd-2.2.15", which list out the changes. It only lists changes when the version goes through a major change, for example, from "2.2.14" to "2.2.15".

So I guess there is no way for us to know what are the changes from "2.2.15-28" to "2.2.15-29" huh...

I didn't find any file called "CHANGES" when I downloaded the "mysql" rpms.
ASKER CERTIFIED SOLUTION
Avatar of Member_2_6582184
Member_2_6582184
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial