unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
* [PATCH 1/4] NEWS: move test suite news down
@ 2018-01-05  1:13 David Bremner
  2018-01-05  1:13 ` [PATCH 2/4] NEWS: minimalist notes for Jani's changes David Bremner
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: David Bremner @ 2018-01-05  1:13 UTC (permalink / raw)
  To: notmuch

---
 NEWS | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/NEWS b/NEWS
index 47b62d73..4b3d3f8f 100644
--- a/NEWS
+++ b/NEWS
@@ -1,16 +1,6 @@
 Notmuch 0.26 (UNRELEASED)
 =========================
 
-Test Suite
-----------
-
-Out-of-tree builds
-
-  The test suite now works properly with out-of-tree builds, i.e. with
-  separate source and build directories. The --root option to tests
-  has been dropped. The same can now be achieved more reliably using
-  out-of-tree builds.
-
 Command Line Interface
 ----------------------
 
@@ -102,6 +92,16 @@ Transition `notmuch_database_add_message` to `notmuch_database_index_file`
    allows passing a set of options to the indexing engine, which the
    operator may decide to change from message to message.
 
+Test Suite
+----------
+
+Out-of-tree builds
+
+  The test suite now works properly with out-of-tree builds, i.e. with
+  separate source and build directories. The --root option to tests
+  has been dropped. The same can now be achieved more reliably using
+  out-of-tree builds.
+
 Python Bindings
 ---------------
 
-- 
2.15.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 2/4] NEWS: minimalist notes for Jani's changes
  2018-01-05  1:13 [PATCH 1/4] NEWS: move test suite news down David Bremner
@ 2018-01-05  1:13 ` David Bremner
  2018-01-05  1:13 ` [PATCH 3/4] NEWS: minimalist notes for Yuri's changes David Bremner
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: David Bremner @ 2018-01-05  1:13 UTC (permalink / raw)
  To: notmuch

---
 NEWS | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/NEWS b/NEWS
index 4b3d3f8f..f7235a00 100644
--- a/NEWS
+++ b/NEWS
@@ -25,12 +25,24 @@ Support maildir synced tags in `new.tags`
   maildir syncing, and will be added for files in `new/` regardless of
   the setting of `new.tags`.
 
+Support /regex/ in new.ignore
+
+  Files and directories may be ignored based on regular expressions.
+
+Allow `notmuch insert --folder=""`
+
+  This inserts into the top level folder.
+
+New option --output=address for notmuch address.
+
 --decrypt now takes an explicit argument
 
   The --decrypt option to `notmuch show` and `notmuch reply` now takes
   an explicit argument.  If you were used to invoking `notmuch show
   --decrypt`, you should switch to `notmuch show --decrypt=true`.
 
+--no-<arg> may be used to negate boolean and keyword arguments
+
 Encrypted Mail
 --------------
 
-- 
2.15.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 3/4] NEWS: minimalist notes for Yuri's changes
  2018-01-05  1:13 [PATCH 1/4] NEWS: move test suite news down David Bremner
  2018-01-05  1:13 ` [PATCH 2/4] NEWS: minimalist notes for Jani's changes David Bremner
@ 2018-01-05  1:13 ` David Bremner
  2018-01-05 10:24   ` Tomi Ollila
  2018-01-05  1:13 ` [PATCH 4/4] NEWS: minimalist notes for Vladimir's changes David Bremner
  2018-01-06 14:24 ` [PATCH 1/4] NEWS: move test suite news down David Bremner
  3 siblings, 1 reply; 6+ messages in thread
From: David Bremner @ 2018-01-05  1:13 UTC (permalink / raw)
  To: notmuch

---
 NEWS | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/NEWS b/NEWS
index f7235a00..53896de7 100644
--- a/NEWS
+++ b/NEWS
@@ -33,8 +33,14 @@ Allow `notmuch insert --folder=""`
 
   This inserts into the top level folder.
 
+Strip trailing '/' from folder path for notmuch insert
+
+  This prevents a potential problem with duplicated database records.
+
 New option --output=address for notmuch address.
 
+Make `notmuch show` more robust against deleting duplicate files.
+
 --decrypt now takes an explicit argument
 
   The --decrypt option to `notmuch show` and `notmuch reply` now takes
-- 
2.15.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 4/4] NEWS: minimalist notes for Vladimir's changes
  2018-01-05  1:13 [PATCH 1/4] NEWS: move test suite news down David Bremner
  2018-01-05  1:13 ` [PATCH 2/4] NEWS: minimalist notes for Jani's changes David Bremner
  2018-01-05  1:13 ` [PATCH 3/4] NEWS: minimalist notes for Yuri's changes David Bremner
@ 2018-01-05  1:13 ` David Bremner
  2018-01-06 14:24 ` [PATCH 1/4] NEWS: move test suite news down David Bremner
  3 siblings, 0 replies; 6+ messages in thread
From: David Bremner @ 2018-01-05  1:13 UTC (permalink / raw)
  To: notmuch

---
 NEWS | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/NEWS b/NEWS
index 53896de7..78159cb2 100644
--- a/NEWS
+++ b/NEWS
@@ -75,6 +75,15 @@ Indexing cleartext of encrypted e-mails
   index are roughly equivalent to the cleartext as well.  DO NOT USE
   this feature without considering the security of your index.
 
+Emacs
+-----
+
+Guard against concurrent searches in notmuch-tree
+
+Use make-process when available
+
+  This allows newer Emacs to avoid temporary files to seperated stderr and stdout.
+
 Library Changes
 ---------------
 
-- 
2.15.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH 3/4] NEWS: minimalist notes for Yuri's changes
  2018-01-05  1:13 ` [PATCH 3/4] NEWS: minimalist notes for Yuri's changes David Bremner
@ 2018-01-05 10:24   ` Tomi Ollila
  0 siblings, 0 replies; 6+ messages in thread
From: Tomi Ollila @ 2018-01-05 10:24 UTC (permalink / raw)
  To: David Bremner, notmuch

On Thu, Jan 04 2018, David Bremner wrote:

> ---
>  NEWS | 6 ++++++
>  1 file changed, 6 insertions(+)
>
> diff --git a/NEWS b/NEWS
> index f7235a00..53896de7 100644
> --- a/NEWS
> +++ b/NEWS
> @@ -33,8 +33,14 @@ Allow `notmuch insert --folder=""`
>  
>    This inserts into the top level folder.
>  
> +Strip trailing '/' from folder path for notmuch insert
> +
> +  This prevents a potential problem with duplicated database records.
> +
>  New option --output=address for notmuch address.
>  
> +Make `notmuch show` more robust against deleting duplicate files.
> +

Trailing periods in above 2 lines (one coming from previous email)

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 1/4] NEWS: move test suite news down
  2018-01-05  1:13 [PATCH 1/4] NEWS: move test suite news down David Bremner
                   ` (2 preceding siblings ...)
  2018-01-05  1:13 ` [PATCH 4/4] NEWS: minimalist notes for Vladimir's changes David Bremner
@ 2018-01-06 14:24 ` David Bremner
  3 siblings, 0 replies; 6+ messages in thread
From: David Bremner @ 2018-01-06 14:24 UTC (permalink / raw)
  To: notmuch


Series pushed, after a bit of cleanup

d

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2018-01-06 14:36 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-05  1:13 [PATCH 1/4] NEWS: move test suite news down David Bremner
2018-01-05  1:13 ` [PATCH 2/4] NEWS: minimalist notes for Jani's changes David Bremner
2018-01-05  1:13 ` [PATCH 3/4] NEWS: minimalist notes for Yuri's changes David Bremner
2018-01-05 10:24   ` Tomi Ollila
2018-01-05  1:13 ` [PATCH 4/4] NEWS: minimalist notes for Vladimir's changes David Bremner
2018-01-06 14:24 ` [PATCH 1/4] NEWS: move test suite news down David Bremner

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

	https://yhetil.org/notmuch.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).