From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: pukkamustard Newsgroups: gmane.lisp.guile.user Subject: [ANN] Guile-ERIS 1.1.0 released Date: Sun, 11 Jun 2023 09:09:16 +0000 Message-ID: <86v8fuuzaz.fsf@posteo.net> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="14508"; mail-complaints-to="usenet@ciao.gmane.io" To: Guile User Original-X-From: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Sun Jun 11 11:25:12 2023 Return-path: Envelope-to: guile-user@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1q8HJw-0003XQ-C9 for guile-user@m.gmane-mx.org; Sun, 11 Jun 2023 11:25:12 +0200 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1q8HJI-0008N5-TP; Sun, 11 Jun 2023 05:24:32 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1q8HJG-0008Mh-JE for guile-user@gnu.org; Sun, 11 Jun 2023 05:24:30 -0400 Original-Received: from mout02.posteo.de ([185.67.36.66]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1q8HJD-0000bF-V6 for guile-user@gnu.org; Sun, 11 Jun 2023 05:24:30 -0400 Original-Received: from submission (posteo.de [185.67.36.169]) by mout02.posteo.de (Postfix) with ESMTPS id 81E23240104 for ; Sun, 11 Jun 2023 11:24:22 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1686475462; bh=vnZo6KTG7dgjPG0XYYOBLXpRczTu9vC3QwouGF65Mng=; h=From:To:Subject:Date:Message-ID:MIME-Version:From; b=d0zPXc+kJV55Wjnx7WOli8l4K6GixeZA38yT1sjT4dFHOSSvd+KjPLFPQKjjTwSoS 6FSbNYlT2ozDj1O4VKhAbikGfGKMEytA3z08uzovgSqWhpq2WHaR6yxiwAW8xHt7P4 xYEvvAyho4fa84JDTkHggJrCRvkENxJd/8xeYr1LoorQzXieHHP2IgawiNuuaz08kv EJY+e9h1xD0zuKv4+wsSASVQ3pH0OcmYdQ/g5Uj88sITRV4AkDCyytqCfHenOLSXVE Tl/qPI7xC6if/N3QuvKopcDRoyzBP4NdA8+Py7KTVF8wlkxviVIhDyGCFMmGgg8gYz ZWRBoQczZmXUg== Original-Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4Qf8XP6FXCz9rxK; Sun, 11 Jun 2023 11:24:21 +0200 (CEST) Received-SPF: pass client-ip=185.67.36.66; envelope-from=pukkamustard@posteo.net; helo=mout02.posteo.de X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_MED=-2.3, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Original-Sender: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.lisp.guile.user:19031 Archived-At: Hello Guilers, I'm happy to announce the release of Guile-ERIS 1.1.0. Guile-ERIS is an implementation of the Encoding for Robust Immutable Storage (ERIS). ERIS is a specification of how some content can be encoded into uniformly sized, encrypted and content-addressed blocks as well as a short read capability. The content can be reassembled from the encrypted blocks only with this read capability. ERIS allows a form of network-optimized content-addressing. See the specification document for more details on ERIS (http://purl.org/eris). The source code is available on Codeberg: https://codeberg.org/eris/guile-eris See also the documentation available at https://eris.codeberg.page/guile-eris/ (or in your Info browser). Notable changes from 1.0.0 include: - Implementation of `eris-decode` does not use custom ports anymore. This makes it work with delimited continuations and libraries such as Fibers or Goblins. Thanks to garbados for the report. - Add an implementation of the CoAP block transfer protocol (https://eris.codeberg.page/eer/coap.xml) using Guile-CoAP. - Add a lookahead decoder that can be used to improve decoding performance by asynchronously fetching blocks before they are needed. This includes some Fibers fun! The development of Guile-ERIS has been supported by the NLnet Foundation through the NGI Assure fund. Happy Hacking, pukkamustard