diff options
author | Richard Hughes <richard@hughsie.com> | 2009-06-01 10:53:37 +0100 |
---|---|---|
committer | Richard Hughes <richard@hughsie.com> | 2009-06-01 10:53:37 +0100 |
commit | 64f1ad84797d88b1cbc4cad42c3aafaee9dfdc0e (patch) | |
tree | d761e21dc2f10359c9433878f71f63ed360d7602 | |
parent | e6cef02784ac9c47451d2613bec2f1074cb43c33 (diff) |
Release version 0.4.8PACKAGEKIT_0_4_8
-rw-r--r-- | NEWS | 61 | ||||
-rw-r--r-- | RELEASE | 2 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | contrib/PackageKit.spec.in | 14 | ||||
-rw-r--r-- | docs/html/pk-download.html | 1 |
5 files changed, 71 insertions, 9 deletions
@@ -1,3 +1,64 @@ +Version 0.4.8 +~~~~~~~~~~~~~ +Released: 2009-06-01 + +Notes: + - The start of a portage backend has been added by Mounir Lamouri. + - Numerous daemon speedups and bugfixes, so an upgrade is recommended. + +Translations: + - Updated translation for Bulgarian (Alexander Shopov) + - Updated translation for Punjabi (aalam) + - Updated translation for Malayalam (anipeter) + - Updated translation for Greek (charnik) + - Updated translation for Oriya (mgiri) + - Updated translation for Hindi (mgiri) + - Updated translation for Polish (raven) + - Updated translation for Bengali (runab) + - Updated translation for Thai (willwill) + - Updated translation for Marathi (sandeeps) + - Updated translation for Finnish (vpv) + +New Features: + - Add a PK_CHECK_VERSION macro (Richard Hughes) + - Add three properties on the main interface with the runtime daemon versions (Richard Hughes) + - Export version-* properties in PkControl (Richard Hughes) + - Add a prototype backend interface definition as a tech-preview (Richard Hughes) + - Don't use --enable-developer, instead use DeveloperMode set in the config file (Richard Hughes) + - Create a shared pk_backend_bool_to_text() helper to reduce copy&paste (Richard Hughes) + +Bugfixes: + - Make PkNetworkUnix watch /proc/net/route and check for network state changes (Richard Hughes) + - Ensure we send ::Finished() even when the dispatcher closed normally (Richard Hughes) + - Ensure we disconnect ::Finished() when we unref a transaction in the PkTransactionList (Richard Hughes) + - Emit ::Destroy() in the dispose phase to ensure it is proxied to the bus (Richard Hughes) + - Fix SuggestDaemonQuit to exit using the mainloop (Richard Hughes) + - Fix the logic of when ::RestartSchedule is used (Richard Hughes) + - Don't cache the update detail anymore, we can't ensure cache-consistency (Richard Hughes) + - Don't try to clear the cancel timeout if it fires again on PkClient finalise (Richard Hughes) + - Only return the newest available package for the command-not-found tool (Richard Hughes) + - Check earlier if we don't have libarchive when creating a service pack (Richard Hughes) + - Be more paranoid when parsing ISO8601 dates from the backend to avoid a critical error (Richard Hughes) + - Fix a small memory leak when we check for session restarts (Richard Hughes) + - When we search for the file list after an install or upgrade, use the local package (Richard Hughes) + - Don't crash the session program if we are connecting to an old packagekitd with a new libpackagekit (Richard Hughes) + - Protect a few function in pk-package-ids.c from NULL input (Richard Hughes) + +Backends: + - dummy: Make the depends return both types of packages (Richard Hughes) + - portage: Working search-name, get-details and download-packages (Mounir Lamouri) + - portage: Add get-files function (Mounir Lamouri) + - portage: Add search-file function (Mounir Lamouri) + - portage: Beginning of resolve function (Mounir Lamouri) + - portage: Add get_depends function (Mounir Lamouri) + - portage: Add get_packages function (Mounir Lamouri) + - yum: Add some more error handing when updating packages (Richard Hughes) + - yum: Clear previous data so a test transaction do not break actual one (Richard Hughes) + - yum: Setup the locale using yum.misc. Fixes rh#487614 (Richard Hughes) + - yum: Protect when the presto plugin doesn't send a name for the rebuild callback. Fixes rh#500428 (Richard Hughes) + - yum: Disable the rpm-warm-cache yum plugin, it's so broken (Richard Hughes) + - yum: Blacklist remove-with-leaves as well. Fixes rh#502399 (Richard Hughes) + Version 0.4.7 ~~~~~~~~~~~~~ Released: 2009-05-05 @@ -2,7 +2,7 @@ PackageKit Release Notes 1. Write NEWS entries for PackageKit in the same format as usual. -git shortlog PACKAGEKIT_0_4_7.. | grep -v trivial | grep -v Merge > NEWS.new +git shortlog PACKAGEKIT_0_4_7.. | grep -i -v trivial | grep -v Merge > NEWS.new 2. Add download date to docs/html/pk-download.html, save file. diff --git a/configure.ac b/configure.ac index 2593215ee..8e5642e23 100644 --- a/configure.ac +++ b/configure.ac @@ -32,7 +32,7 @@ AC_SUBST(PK_VERSION) # AGE If libpackagekit can be linked into executables which can be # built with previous versions of this library. Don't use. LT_CURRENT=11 -LT_REVISION=6 +LT_REVISION=7 LT_AGE=0 AC_SUBST(LT_CURRENT) AC_SUBST(LT_REVISION) diff --git a/contrib/PackageKit.spec.in b/contrib/PackageKit.spec.in index 66a9d6614..c8eec5265 100644 --- a/contrib/PackageKit.spec.in +++ b/contrib/PackageKit.spec.in @@ -1,8 +1,9 @@ -%define glib2_version 2.16.1 -%define dbus_version 0.90 -%define dbus_glib_version 0.70 -%define policykit_version 0.8 -%define alphatag #ALPHATAG# +%define glib2_version 2.16.1 +%define dbus_version 0.90 +%define dbus_glib_version 0.70 +%define policykit_version 0.8 +%define libnm_glib_version 0.6.4 +%define alphatag #ALPHATAG# %{!?python_sitelib: %define python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} @@ -31,10 +32,9 @@ BuildRequires: dbus-devel >= %{dbus_version} BuildRequires: dbus-glib-devel >= %{dbus_glib_version} BuildRequires: pam-devel BuildRequires: libX11-devel -BuildRequires: libsexy-devel BuildRequires: xmlto BuildRequires: sqlite-devel -BuildRequires: NetworkManager-glib-devel +BuildRequires: NetworkManager-glib-devel >= %{libnm_glib_version} BuildRequires: PolicyKit-devel >= %{policykit_version} BuildRequires: libtool BuildRequires: docbook-utils diff --git a/docs/html/pk-download.html b/docs/html/pk-download.html index aff8449fb..46e42c3c7 100644 --- a/docs/html/pk-download.html +++ b/docs/html/pk-download.html @@ -68,6 +68,7 @@ Releases are normally once every 2-3 weeks. </p> <table> <tr><td><b>Version</b></td><td> </td><td><b>Date</b></td></tr> +<tr><td>0.4.8</td><td></td><td>2009-06-01</td></tr> <tr><td>0.4.7</td><td></td><td>2009-05-05</td></tr> <tr><td>0.4.6</td><td></td><td>2009-03-30</td></tr> <tr><td>0.4.5</td><td></td><td>2009-03-09</td></tr> |