unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
* [PATCH] NEWS: library changes for 0.26
@ 2017-12-30 14:05 David Bremner
  2017-12-30 15:40 ` [PATCH] NEWS: CLI " David Bremner
  2017-12-30 20:46 ` [PATCH] NEWS: library " Floris Bruynooghe
  0 siblings, 2 replies; 6+ messages in thread
From: David Bremner @ 2017-12-30 14:05 UTC (permalink / raw)
  To: notmuch

These are just "my" changes, as arbited by "git shortlog", which
sometimes lies.
---
 NEWS | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/NEWS b/NEWS
index 3b6404e7..1c5edf4c 100644
--- a/NEWS
+++ b/NEWS
@@ -41,6 +41,27 @@ Indexing cleartext of encrypted e-mails
   that the notmuch index itself is adequately protected.  DO NOT USE
   this feature without considering the security of your index.
 
+Library Changes
+---------------
+
+Indexing files with duplicate message-id
+
+  Files with message-id's are now indexed, and searchable via terms
+  and phrases. There are known issues related to presentation of
+  results and regular-expression search, but in principle no mail file
+  should be completely unsearchable now.
+
+New functions to count files
+
+  Two new functions in the libnotmuch API:
+  `notmuch_message_count_files`, and `notmuch_thread_get_total_files`.
+
+Change of return value of `notmuch_thread_get_authors`
+
+  In certain corner cases, `notmuch_thread_get_authors` previously
+  returned NULL.  This has been replaced by an empty string, since the
+  possibility of NULL was not documented.
+
 nmbug
 -----
 
-- 
2.15.1

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

* [PATCH] NEWS: CLI changes for 0.26
  2017-12-30 14:05 [PATCH] NEWS: library changes for 0.26 David Bremner
@ 2017-12-30 15:40 ` David Bremner
  2017-12-30 16:01   ` [PATCH] NEWS: Python bindings " David Bremner
  2017-12-30 20:46 ` [PATCH] NEWS: library " Floris Bruynooghe
  1 sibling, 1 reply; 6+ messages in thread
From: David Bremner @ 2017-12-30 15:40 UTC (permalink / raw)
  To: David Bremner, notmuch

As with the lib changes, these are based on the commits with me as author.
---
 NEWS | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/NEWS b/NEWS
index 1c5edf4c..3049fc78 100644
--- a/NEWS
+++ b/NEWS
@@ -24,6 +24,17 @@ Support for re-indexing existing messages
   archive, the recorded Subject: of may change upon reindexing,
   depending on the order in which the variants are indexed.
 
+Improved error reporting in notmuch new
+
+  Give more details when reporting certain Xapian exceptions.
+
+Support maildir synced tags in `new.tags`
+
+  Tags `draft`, `flagged`, `passed`, and `replied` are now supported
+  in `new.tags`. The tag `unread` is still special in the presence of
+  maildir syncing, and will be added for files in `new/` regardless of
+  the setting of `new.tags`.
+
 Encrypted Mail
 --------------
 
-- 
2.15.1

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

* [PATCH] NEWS: Python bindings changes for 0.26
  2017-12-30 15:40 ` [PATCH] NEWS: CLI " David Bremner
@ 2017-12-30 16:01   ` David Bremner
  2017-12-31 12:57     ` David Bremner
  0 siblings, 1 reply; 6+ messages in thread
From: David Bremner @ 2017-12-30 16:01 UTC (permalink / raw)
  To: David Bremner, notmuch

These are my own changes, plus those of Florian Klink and Lucas
Hoffmann. Gaute's change fixed a bug that was never in a released
version, so I left it out.
---
 NEWS | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/NEWS b/NEWS
index 3049fc78..fe426bad 100644
--- a/NEWS
+++ b/NEWS
@@ -73,6 +73,20 @@ Change of return value of `notmuch_thread_get_authors`
   returned NULL.  This has been replaced by an empty string, since the
   possibility of NULL was not documented.
 
+Python Bindings
+---------------
+
+Python bindings specific Debian packaging is removed
+
+  The bindings have been build by the top level Debian packaging for a
+  long time, and `bindings/python/debian` has bit-rotted.
+
+Open mail files in binary mode when using Python 3
+
+  This avoids certain encoding related crashes under Python 3.
+
+Add python bindings for notmuch_database_{get,set}_config*
+
 nmbug
 -----
 
-- 
2.15.1

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

* Re: [PATCH] NEWS: library changes for 0.26
  2017-12-30 14:05 [PATCH] NEWS: library changes for 0.26 David Bremner
  2017-12-30 15:40 ` [PATCH] NEWS: CLI " David Bremner
@ 2017-12-30 20:46 ` Floris Bruynooghe
  2017-12-30 20:51   ` David Bremner
  1 sibling, 1 reply; 6+ messages in thread
From: Floris Bruynooghe @ 2017-12-30 20:46 UTC (permalink / raw)
  To: David Bremner, notmuch

David Bremner <david@tethera.net> writes:

> These are just "my" changes, as arbited by "git shortlog", which
> sometimes lies.
> ---
>  NEWS | 21 +++++++++++++++++++++
>  1 file changed, 21 insertions(+)
>
> diff --git a/NEWS b/NEWS
> index 3b6404e7..1c5edf4c 100644
> --- a/NEWS
> +++ b/NEWS
> @@ -41,6 +41,27 @@ Indexing cleartext of encrypted e-mails
>    that the notmuch index itself is adequately protected.  DO NOT USE
>    this feature without considering the security of your index.
>  
> +Library Changes
> +---------------
> +
> +Indexing files with duplicate message-id
> +
> +  Files with message-id's are now indexed, and searchable via terms

"Files with duplicate message-IDs are now ..."?  

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

* Re: [PATCH] NEWS: library changes for 0.26
  2017-12-30 20:46 ` [PATCH] NEWS: library " Floris Bruynooghe
@ 2017-12-30 20:51   ` David Bremner
  0 siblings, 0 replies; 6+ messages in thread
From: David Bremner @ 2017-12-30 20:51 UTC (permalink / raw)
  To: Floris Bruynooghe, notmuch

Floris Bruynooghe <flub@devork.be> writes:


>> +Library Changes
>> +---------------
>> +
>> +Indexing files with duplicate message-id
>> +
>> +  Files with message-id's are now indexed, and searchable via terms
>
> "Files with duplicate message-IDs are now ..."?  

Thanks, fixed in git.

d

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

* Re: [PATCH] NEWS: Python bindings changes for 0.26
  2017-12-30 16:01   ` [PATCH] NEWS: Python bindings " David Bremner
@ 2017-12-31 12:57     ` David Bremner
  0 siblings, 0 replies; 6+ messages in thread
From: David Bremner @ 2017-12-31 12:57 UTC (permalink / raw)
  To: notmuch

David Bremner <david@tethera.net> writes:

> These are my own changes, plus those of Florian Klink and Lucas
> Hoffmann. Gaute's change fixed a bug that was never in a released
> version, so I left it out.

Pushed all three to branch release; this should help people avoid
conflicts in making their own NEWS entries.

d

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

end of thread, other threads:[~2017-12-31 12:57 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-12-30 14:05 [PATCH] NEWS: library changes for 0.26 David Bremner
2017-12-30 15:40 ` [PATCH] NEWS: CLI " David Bremner
2017-12-30 16:01   ` [PATCH] NEWS: Python bindings " David Bremner
2017-12-31 12:57     ` David Bremner
2017-12-30 20:46 ` [PATCH] NEWS: library " Floris Bruynooghe
2017-12-30 20:51   ` 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).