From 37ab849a4cb75db0a2492cad078efa73b495c594 Mon Sep 17 00:00:00 2001 From: dormando Date: Sun, 6 Jan 2013 19:22:15 -0800 Subject: [PATCH] Checking in changes prior to tagging of version 2.66. Changelog diff is: diff --git a/CHANGES b/CHANGES index 64455f4..bd7e38a 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,29 @@ +2013-01-06: Release version 2.66 + + * add a hook to cmd_updateclass (Daniel Frett ) + + * support updating the class to the default class which has an id of 0 (Daniel Frett ) + + * reaper: validate DB connection before reaping (Eric Wong ) + Fixes occasional crash in reaper process. + + * improve handling of classes which change hash algorithm (Eric Wong ) + + * fsck: skip non-existent FIDs properly (Eric Wong ) + + * fsck: use replicate lock when fixing FID (Eric Wong ) + + * query: allow "0" key on all commands which take keys (Eric Wong ) + + * prevent reqid mismatches (and queryworker death) (Eric Wong ) + Fixes crash case with specific error types. + + * fix use_dest_devs for rebalance (Pyry Hakulinen ) + Fixes "use_dest_devs" argument during rebalance. + + * Fix "skip_devcount" during rebalance (Pyry Hakulinen ) + Now actually skips updating devcount column during rebalance. + 2012-08-13: Release version 2.65 * Postgres advisory lock instead of table-based lock (Robin H. Johnson ) --- CHANGES | 26 ++++++++++++++++++++++++++ lib/MogileFS/Server.pm | 2 +- 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 64455f4..bd7e38a 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,29 @@ +2013-01-06: Release version 2.66 + + * add a hook to cmd_updateclass (Daniel Frett ) + + * support updating the class to the default class which has an id of 0 (Daniel Frett ) + + * reaper: validate DB connection before reaping (Eric Wong ) + Fixes occasional crash in reaper process. + + * improve handling of classes which change hash algorithm (Eric Wong ) + + * fsck: skip non-existent FIDs properly (Eric Wong ) + + * fsck: use replicate lock when fixing FID (Eric Wong ) + + * query: allow "0" key on all commands which take keys (Eric Wong ) + + * prevent reqid mismatches (and queryworker death) (Eric Wong ) + Fixes crash case with specific error types. + + * fix use_dest_devs for rebalance (Pyry Hakulinen ) + Fixes "use_dest_devs" argument during rebalance. + + * Fix "skip_devcount" during rebalance (Pyry Hakulinen ) + Now actually skips updating devcount column during rebalance. + 2012-08-13: Release version 2.65 * Postgres advisory lock instead of table-based lock (Robin H. Johnson ) diff --git a/lib/MogileFS/Server.pm b/lib/MogileFS/Server.pm index 6d0d4c8..044119c 100644 --- a/lib/MogileFS/Server.pm +++ b/lib/MogileFS/Server.pm @@ -2,7 +2,7 @@ package MogileFS::Server; use strict; use warnings; use vars qw($VERSION); -$VERSION = "2.65"; +$VERSION = "2.66"; =head1 NAME -- 2.11.4.GIT