unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
* [PATCH] NEWS: mention message properties API, dump/restore
@ 2016-09-25  1:19 David Bremner
  2016-09-25 11:36 ` [PATCH 1/5] " David Bremner
  0 siblings, 1 reply; 7+ messages in thread
From: David Bremner @ 2016-09-25  1:19 UTC (permalink / raw)
  To: notmuch

---
 NEWS | 18 ++++++++++++++----
 1 file changed, 14 insertions(+), 4 deletions(-)

diff --git a/NEWS b/NEWS
index 0fd6d72..2f15ccd 100644
--- a/NEWS
+++ b/NEWS
@@ -21,6 +21,16 @@ Support for named queries
   `query:name` format. The expansion of these queries is stored in the
   database and they can be used from any notmuch client.
 
+Library
+-------
+
+Message property API
+
+  libnotmuch now supports the attachment of arbitrary key-value pairs
+  to messages. These can be used by various tools to manage their
+  private data without polluting the user tag space. They also support
+  iteration of values with the same key or same key prefix.
+
 CLI
 ---
 
@@ -30,12 +40,12 @@ Support for compile time options
   config. Initial keys in this group are `compact`, `field_processor`,
   and `retry_lock`.
 
-Dump/Restore support for configuration information
+Dump/Restore support for configuration information and properties
 
   Any configuration information stored in the database (initially just
-  named queries) is dumped and restored. Any new information in the
-  dump format is prefixed by '#' to allow existing scripts to ignore
-  it.
+  named queries) is dumped and restored. Similarly any properties
+  attached to messages. Any new information in the dump format is
+  prefixed by '#' to allow existing scripts to ignore it.
 
 Emacs
 -----
-- 
2.9.3

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

* [PATCH 1/5] NEWS: mention message properties API, dump/restore
  2016-09-25  1:19 [PATCH] NEWS: mention message properties API, dump/restore David Bremner
@ 2016-09-25 11:36 ` David Bremner
  2016-09-25 11:36   ` [PATCH 2/5] NEWS: document mtime bugfix David Bremner
                     ` (4 more replies)
  0 siblings, 5 replies; 7+ messages in thread
From: David Bremner @ 2016-09-25 11:36 UTC (permalink / raw)
  To: David Bremner, notmuch

---
 NEWS | 19 +++++++++++++++----
 1 file changed, 15 insertions(+), 4 deletions(-)

diff --git a/NEWS b/NEWS
index 0fd6d72..a5d313d 100644
--- a/NEWS
+++ b/NEWS
@@ -21,6 +21,16 @@ Support for named queries
   `query:name` format. The expansion of these queries is stored in the
   database and they can be used from any notmuch client.
 
+Library
+-------
+
+Message property API
+
+  libnotmuch now supports the attachment of arbitrary key-value pairs
+  to messages. These can be used by various tools to manage their
+  private data without polluting the user tag space. They also support
+  iteration of values with the same key or same key prefix.
+
 CLI
 ---
 
@@ -30,12 +40,13 @@ Support for compile time options
   config. Initial keys in this group are `compact`, `field_processor`,
   and `retry_lock`.
 
-Dump/Restore support for configuration information
+Dump/Restore support for configuration information and properties
 
   Any configuration information stored in the database (initially just
-  named queries) is dumped and restored. Any new information in the
-  dump format is prefixed by '#' to allow existing scripts to ignore
-  it.
+  named queries) is dumped and restored. Similarly any properties
+  attached to messages are also dumped and restored. Any new
+  information in the dump format is prefixed by '#' to allow existing
+  scripts to ignore it.
 
 Emacs
 -----
-- 
2.9.3

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

* [PATCH 2/5] NEWS: document mtime bugfix
  2016-09-25 11:36 ` [PATCH 1/5] " David Bremner
@ 2016-09-25 11:36   ` David Bremner
  2016-09-25 11:36   ` [PATCH 3/5] NEWS: note dropping of User-Agent header David Bremner
                     ` (3 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: David Bremner @ 2016-09-25 11:36 UTC (permalink / raw)
  To: David Bremner, notmuch

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

diff --git a/NEWS b/NEWS
index a5d313d..eb11d4b 100644
--- a/NEWS
+++ b/NEWS
@@ -31,6 +31,10 @@ Message property API
   private data without polluting the user tag space. They also support
   iteration of values with the same key or same key prefix.
 
+Bug fix for `notmuch_directory_set_mtime`
+
+  Update cached mtime to match on-disk mtime.
+
 CLI
 ---
 
-- 
2.9.3

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

* [PATCH 3/5] NEWS: note dropping of User-Agent header
  2016-09-25 11:36 ` [PATCH 1/5] " David Bremner
  2016-09-25 11:36   ` [PATCH 2/5] NEWS: document mtime bugfix David Bremner
@ 2016-09-25 11:36   ` David Bremner
  2016-09-25 11:36   ` [PATCH 4/5] NEWS: note notmuch-reply refactor David Bremner
                     ` (2 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: David Bremner @ 2016-09-25 11:36 UTC (permalink / raw)
  To: David Bremner, notmuch

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

diff --git a/NEWS b/NEWS
index eb11d4b..faa3033 100644
--- a/NEWS
+++ b/NEWS
@@ -62,6 +62,8 @@ Face customization is easier
   `notmuch-search-flagged-face` and `notmuch-search-unread-face` are
   now used by default. Customize `notmuch-faces` to modify them.
 
+Omit User-Agent header by default when sending mail
+
 Ruby Bindings
 -------------
 
-- 
2.9.3

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

* [PATCH 4/5] NEWS: note notmuch-reply refactor
  2016-09-25 11:36 ` [PATCH 1/5] " David Bremner
  2016-09-25 11:36   ` [PATCH 2/5] NEWS: document mtime bugfix David Bremner
  2016-09-25 11:36   ` [PATCH 3/5] NEWS: note dropping of User-Agent header David Bremner
@ 2016-09-25 11:36   ` David Bremner
  2016-09-25 11:36   ` [PATCH 5/5] NEWS: fix headline for go bindings NEWS David Bremner
  2016-09-27 12:24   ` [PATCH 1/5] NEWS: mention message properties API, dump/restore David Bremner
  4 siblings, 0 replies; 7+ messages in thread
From: David Bremner @ 2016-09-25 11:36 UTC (permalink / raw)
  To: David Bremner, notmuch

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

diff --git a/NEWS b/NEWS
index faa3033..e6ef945 100644
--- a/NEWS
+++ b/NEWS
@@ -52,6 +52,8 @@ Dump/Restore support for configuration information and properties
   information in the dump format is prefixed by '#' to allow existing
   scripts to ignore it.
 
+Refactor notmuch-reply, make handling of duplicate headers consistent
+
 Emacs
 -----
 
-- 
2.9.3

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

* [PATCH 5/5] NEWS: fix headline for go bindings NEWS
  2016-09-25 11:36 ` [PATCH 1/5] " David Bremner
                     ` (2 preceding siblings ...)
  2016-09-25 11:36   ` [PATCH 4/5] NEWS: note notmuch-reply refactor David Bremner
@ 2016-09-25 11:36   ` David Bremner
  2016-09-27 12:24   ` [PATCH 1/5] NEWS: mention message properties API, dump/restore David Bremner
  4 siblings, 0 replies; 7+ messages in thread
From: David Bremner @ 2016-09-25 11:36 UTC (permalink / raw)
  To: David Bremner, notmuch

---
 NEWS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/NEWS b/NEWS
index e6ef945..d337cbc 100644
--- a/NEWS
+++ b/NEWS
@@ -78,7 +78,7 @@ Go bindings moved to contrib
 
 Add support for `notmuch_threads_t` and `notmuch_thread_t`
 
-Fixed constant values so they are not all zero anymore.
+Fixed constant values so they are not all zero anymore
 
   Previously, it was impossible to open writable database handles,
   because `DATABASE_MODE_READ_ONLY` and `DATABASE_MODE_READ_WRITE` were
-- 
2.9.3

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

* Re: [PATCH 1/5] NEWS: mention message properties API, dump/restore
  2016-09-25 11:36 ` [PATCH 1/5] " David Bremner
                     ` (3 preceding siblings ...)
  2016-09-25 11:36   ` [PATCH 5/5] NEWS: fix headline for go bindings NEWS David Bremner
@ 2016-09-27 12:24   ` David Bremner
  4 siblings, 0 replies; 7+ messages in thread
From: David Bremner @ 2016-09-27 12:24 UTC (permalink / raw)
  To: notmuch

David Bremner <david@tethera.net> writes:

> ---
>  NEWS | 19 +++++++++++++++----
>  1 file changed, 15 insertions(+), 4 deletions(-)

pushed this series to release, master. Re-ordered because I didn't
notice the nmbug retag of patch 1 until the first 4 had been pushed.

d

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

end of thread, other threads:[~2016-09-27 12:24 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-09-25  1:19 [PATCH] NEWS: mention message properties API, dump/restore David Bremner
2016-09-25 11:36 ` [PATCH 1/5] " David Bremner
2016-09-25 11:36   ` [PATCH 2/5] NEWS: document mtime bugfix David Bremner
2016-09-25 11:36   ` [PATCH 3/5] NEWS: note dropping of User-Agent header David Bremner
2016-09-25 11:36   ` [PATCH 4/5] NEWS: note notmuch-reply refactor David Bremner
2016-09-25 11:36   ` [PATCH 5/5] NEWS: fix headline for go bindings NEWS David Bremner
2016-09-27 12:24   ` [PATCH 1/5] NEWS: mention message properties API, dump/restore 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).