From 92b69140a6e96703d156bbf3901da2fef2e5aa82 Mon Sep 17 00:00:00 2001 From: dormando Date: Fri, 19 Jan 2018 13:42:46 -0800 Subject: [PATCH] Checking in changes prior to tagging of version 2.73. Changelog diff is: diff --git a/CHANGES b/CHANGES index 441b328..e053851 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,29 @@ +2018-01-18: Release version 2.73 + + * fsck: avoid infinite wait on dead devices (Eric Wong ) + + * client: always disable watch_read after a command (Eric Wong ) + + * client: use single write for admin commands (Eric Wong ) + + * tracker: client fairness, backpressure, and expiry (Eric Wong ) + + * client connection should always be nonblocking (Eric Wong ) + + * ConnectionPool: avoid undefined behavior for hash iteration (Eric Wong ) + + * replicate: avoid buffered IO on reads (Eric Wong ) + + * enable DB upgrade for host readonly state (Eric Wong ) + + * replicate: reduce backoff for too_happy FIDs (Eric Wong ) + + * fsck: this avoid redundant fsck log entries (Eric Wong ) + + * fsck: do not log FOND if note_on_device croaks (Eric Wong ) + + * reaper: detect resurrection of "dead" devices (Eric Wong ) + 2014-12-15: Release version 2.72 * Work with DBD::SQLite's latest lock errors (dormando ) --- CHANGES | 26 ++++++++++++++++++++++++++ lib/MogileFS/Server.pm | 2 +- 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 441b328..e053851 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,29 @@ +2018-01-18: Release version 2.73 + + * fsck: avoid infinite wait on dead devices (Eric Wong ) + + * client: always disable watch_read after a command (Eric Wong ) + + * client: use single write for admin commands (Eric Wong ) + + * tracker: client fairness, backpressure, and expiry (Eric Wong ) + + * client connection should always be nonblocking (Eric Wong ) + + * ConnectionPool: avoid undefined behavior for hash iteration (Eric Wong ) + + * replicate: avoid buffered IO on reads (Eric Wong ) + + * enable DB upgrade for host readonly state (Eric Wong ) + + * replicate: reduce backoff for too_happy FIDs (Eric Wong ) + + * fsck: this avoid redundant fsck log entries (Eric Wong ) + + * fsck: do not log FOND if note_on_device croaks (Eric Wong ) + + * reaper: detect resurrection of "dead" devices (Eric Wong ) + 2014-12-15: Release version 2.72 * Work with DBD::SQLite's latest lock errors (dormando ) diff --git a/lib/MogileFS/Server.pm b/lib/MogileFS/Server.pm index e1afa04..7520e06 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.72"; +$VERSION = "2.73"; =head1 NAME -- 2.11.4.GIT