From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 835FF1F87F for ; Mon, 3 Jun 2019 01:52:07 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 2/6] ds: add a note about planned future changes Date: Mon, 3 Jun 2019 01:52:02 +0000 Message-Id: <20190603015206.7871-3-e@80x24.org> In-Reply-To: <20190603015206.7871-1-e@80x24.org> References: <20190603015206.7871-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Sometimes I get bored with the email part of this project and need a distraction :P --- lib/PublicInbox/DS.pm | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/lib/PublicInbox/DS.pm b/lib/PublicInbox/DS.pm index 89042cf..3b0cbe6 100644 --- a/lib/PublicInbox/DS.pm +++ b/lib/PublicInbox/DS.pm @@ -5,8 +5,14 @@ # # This is a fork of the (for now) unmaintained Danga::Socket 1.61. # Unused features will be removed, and updates will be made to take -# advantage of newer kernels - +# advantage of newer kernels. +# +# API changes to diverge from Danga::Socket will happen to better +# accomodate new features and improve scalability. Do not expect +# this to be a stable API like Danga::Socket. +# Bugs encountered (and likely fixed) are reported to +# bug-Danga-Socket@rt.cpan.org and visible at: +# https://rt.cpan.org/Public/Dist/Display.html?Name=Danga-Socket package PublicInbox::DS; use strict; use bytes; -- EW