user/dev discussion of public-inbox itself
 help / color / mirror / code / Atom feed
 Warning: Initial query:
 %22doc: release notes: set Date for 1.2.0, start 1.3.0%22
 returned no results, used:
 "doc: release notes: set Date for 1.2.0, start 1.3.0"
 instead

Search results ordered by [date|relevance]  view[summary|nested|Atom feed]
thread overview below | download mbox.gz: |
* [PATCH 3/6] doc: release notes: set Date for 1.2.0, start 1.3.0
  2020-01-01  9:57  7% [PATCH 0/6] doc updates and such Eric Wong
@ 2020-01-01  9:57  6% ` Eric Wong
  0 siblings, 0 replies; 2+ results
From: Eric Wong @ 2020-01-01  9:57 UTC (permalink / raw)
  To: meta

Seems like a lot's happened since 1.2, but it's mostly
internal stuff...
---
 Documentation/RelNotes/v1.2.0.eml |  9 ++++++
 Documentation/RelNotes/v1.3.0.eml | 50 +++++++++++++++++++++++++++++++
 MANIFEST                          |  1 +
 3 files changed, 60 insertions(+)
 create mode 100644 Documentation/RelNotes/v1.3.0.eml

diff --git a/Documentation/RelNotes/v1.2.0.eml b/Documentation/RelNotes/v1.2.0.eml
index 2eeb0de0..d8b8d2b6 100644
--- a/Documentation/RelNotes/v1.2.0.eml
+++ b/Documentation/RelNotes/v1.2.0.eml
@@ -1,3 +1,5 @@
+From e@80x24.org Sun Nov  3 03:12:41 2019
+Date: Sun, 3 Nov 2019 03:12:41 +0000
 From: Eric Wong <e@80x24.org>
 To: meta@public-inbox.org
 Subject: [ANNOUNCE] public-inbox 1.2.0
@@ -73,5 +75,12 @@ for their sponsorship and support over the past two years.
 
 https://public-inbox.org/releases/public-inbox-1.2.0.tar.gz
 
+SHA256: dabc735a5cfe396f457ac721559de26ae38abbaaa74612eb786e9e2e1ca94269
+
+  Chances are: You don't know me and never will.  Everybody else
+  can verify the tarball and sign a reply saying they've
+  verified it, instead.  The more who do this, the better, but
+  don't trust the BOFH :P
+
 See archives at https://public-inbox.org/meta/ for all history.
 See https://public-inbox.org/TODO for what the future holds.
diff --git a/Documentation/RelNotes/v1.3.0.eml b/Documentation/RelNotes/v1.3.0.eml
new file mode 100644
index 00000000..11806ccd
--- /dev/null
+++ b/Documentation/RelNotes/v1.3.0.eml
@@ -0,0 +1,50 @@
+From: Eric Wong <e@80x24.org>
+To: meta@public-inbox.org
+Subject: [WIP] public-inbox 1.3.0
+Content-Type: text/plain; charset=utf-8
+
+Many internal improvements to improve the developer experience
+and long-term maintainability.
+
+Many of the internal improvements focused on being able to avoid
+Perl startup time in tests.  "make check" now runs about 50%
+faster than before, and the new "make check-run" can be around
+30% faster after being primed by "make check".
+
+Most closures (anonymous subroutines) are purged from the
+-nntpd, -httpd and WWW code paths to make checking for memory
+leaks easier.
+
+* documentation now builds on BSD make
+
+* Date::Parse (TimeDate CPAN distribution) is now optional, allowing
+  installation from OpenBSD systems via "pkg".
+
+* the work-in-progress Xapian.pm SWIG bindings are now supported
+  in addition to the traditional Search::Xapian XS bindings.
+  Only SWIG bindings are packaged for OpenBSD.
+
+* IPC::Run is no longer used in tests
+
+* improved internal error checking and reporting in numerous places
+  
+* PublicInbox::WWW
+  - "nested" search results page now shows relevancy percentages
+  - solver works on "-U0" patches using "git apply --unidiff-zero"
+  - raw HTML no longer shown inline in multipart/alternative messages
+    (v1.2.0 regression)
+
+* public-inbox-httpd / public-inbox-nntpd:
+  - MSG_MORE used consistently in long responses
+  - fixed IO::KQueue usage on *BSDs
+
+* public-inbox-watch
+  - avoid memory leak from cyclic reference on SIGHUP
+  - fix documentation of publicinboxwatch.watchspam
+
+Release tarballs will be available for download at
+
+	https://public-inbox.org/public-inbox.git
+
+See archives at https://public-inbox.org/meta/ for all history.
+See https://public-inbox.org/TODO for what the future holds.
diff --git a/MANIFEST b/MANIFEST
index f649bbef..59716adf 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -6,6 +6,7 @@ Documentation/.gitignore
 Documentation/RelNotes/v1.0.0.eml
 Documentation/RelNotes/v1.1.0-pre1.eml
 Documentation/RelNotes/v1.2.0.eml
+Documentation/RelNotes/v1.3.0.eml
 Documentation/dc-dlvr-spam-flow.txt
 Documentation/design_notes.txt
 Documentation/design_www.txt

^ permalink raw reply related	[relevance 6%]

* [PATCH 0/6] doc updates and such
@ 2020-01-01  9:57  7% Eric Wong
  2020-01-01  9:57  6% ` [PATCH 3/6] doc: release notes: set Date for 1.2.0, start 1.3.0 Eric Wong
  0 siblings, 1 reply; 2+ results
From: Eric Wong @ 2020-01-01  9:57 UTC (permalink / raw)
  To: meta

More frequent releases should be possible, now that we can just
let cgit serve our tar.gz.  Maybe Plack/PSGI can be totally
optional, even for WWW...  The closure purge certainly brought
us in that direction :>

Eric Wong (6):
  doc: allow NEWS file to be built without Plack::Util
  build: remove NEWS from dist-git target
  doc: release notes: set Date for 1.2.0, start 1.3.0
  doc/txt2pre: flush output before utime()
  build: fix xapian-* manpage generation
  doc: fix a few spelling errors in user-facing docs

 Documentation/RelNotes/v1.2.0.eml     |  9 +++++
 Documentation/RelNotes/v1.3.0.eml     | 50 +++++++++++++++++++++++++++
 Documentation/include.mk              | 23 ++++++------
 Documentation/mknews.perl             | 30 ++++++++++++----
 Documentation/public-inbox-config.pod |  2 +-
 Documentation/public-inbox-nntpd.pod  |  2 +-
 Documentation/txt2pre                 |  1 +
 MANIFEST                              |  1 +
 Makefile.PL                           |  3 +-
 lib/PublicInbox/Import.pm             |  2 +-
 10 files changed, 100 insertions(+), 23 deletions(-)
 create mode 100644 Documentation/RelNotes/v1.3.0.eml

^ permalink raw reply	[relevance 7%]

Results 1-2 of 2 | reverse | options above
-- pct% links below jump to the message on this page, permalinks otherwise --
2020-01-01  9:57  7% [PATCH 0/6] doc updates and such Eric Wong
2020-01-01  9:57  6% ` [PATCH 3/6] doc: release notes: set Date for 1.2.0, start 1.3.0 Eric Wong

Code repositories for project(s) associated with this public inbox

	https://80x24.org/public-inbox.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).