From 3093a7ee4574e38196d1037d7483ff673bb95fdd Mon Sep 17 00:00:00 2001 From: Kali Kaneko Date: Mon, 18 Apr 2016 12:01:56 -0400 Subject: [pkg] Update changelog --- CHANGELOG | 71 ---------------------------------------------- CHANGELOG.rst | 17 +++++++++++ HISTORY | 71 ++++++++++++++++++++++++++++++++++++++++++++++ changes/next-changelog.txt | 9 +----- 4 files changed, 89 insertions(+), 79 deletions(-) delete mode 100644 CHANGELOG create mode 100644 CHANGELOG.rst create mode 100644 HISTORY diff --git a/CHANGELOG b/CHANGELOG deleted file mode 100644 index c2f3662..0000000 --- a/CHANGELOG +++ /dev/null @@ -1,71 +0,0 @@ -0.6.2 Apr 21, 2015: - o Add PGP key lookup on access check server and reject mail if no PGP key - was found for the user. Closes #6795. - o Fix bounce message recipient. Closes #6854. - o Implement bouncing as per RFCs 6522, 3834 and 3464. Closes #6858. - o Correctly return async bouncer deferred. - -0.6.1 Feb 11, 2015: - o Process unprocessed mail when MX starts (closes #2591). - o Log to syslog. Closes: #6307 - o MX log and retry when delivery directories don't exist. Closes #6687. - -0.6.0 Sept 26, 2014: - o Bounce mails when there's a problematic situation for an email, - such as no public key. Fixes #4803. - o Properly log tracebacks for exceptions occuring in the mail - processing loop. - o Add errdecr key defaulting to each mail Soledad Document. Closes - #6072. - o Any inconsistent user would make the mx stop decrypting mails for - all subsequent users. - -0.5.0 Apr 4, 2014: - o Use CouchDocument to comply with new Soledad couch backend. Fixes - #4475. - o Some emails are multipart and each part has its own encoding. - -0.3.5 Dec 10, 2013: - o Add X-Leap-Provenance header. Closes #4356. - o Add tester script to ease testing problematic emails offline. - -0.3.4 Nov 15, 2013: - o Some mail may be skipped at processing because of possible - problems (like connectivity issues to our couch nodes), MX now - looks for unprocessed mails every half hour and tries to process - them. Fixes #3628. - -0.3.3 Nov 1, 2013: - o Fix return codes for check recipient access. Fixes #3356. - o Improve logging in general and support possible unicode parameters - without breaking. - o Try to figure out the encoding of an email first by looking into - its header, if that fails then by using chardet. - o Support more than utf8 encodings for emails. - o Add support for receiving mailing list mails. - o Use the uuid that alias_resolver returned and postfix added to the - mail headers, which improves performance. - o Look for public keys based on uuid instead of mail address. - -0.3.2 Sep 6, 2013: - o Keep file watcher in memory to prevent losing file events. - o Properly save the incoming mail as a doc in couch. - o Properly parse mail address of the form "Name ". Fixes #3653. - -0.3.1 Aug 23, 2013: - o Migrate mx functions to work on the new couchdb structure and - views. Fixes #3502. - o Update to new soledad package scheme (common, client and - server). Closes #3487. - o Add versioneer. - -0.3.0 Aug 9, 2013: - o Give a return code for bare usernames too. Closes: #3405 - o Adapt to Soledad 0.2.1 API. - o Fix broken pip install - o Fix alias lookup return codes. Closes: #3356 - o Use the new API to import a new ascii armored public key. Fixes - #3352. - o Add "incoming" index for ease of listing new email. - o Add dependency for leap.keymanager. - o Adapt to the new keymanager API. Closes #3397. diff --git a/CHANGELOG.rst b/CHANGELOG.rst new file mode 100644 index 0000000..31fba49 --- /dev/null +++ b/CHANGELOG.rst @@ -0,0 +1,17 @@ +0.8.0 - 18 Apr, 2016 ++++++++++++++++++++++++++++++++ + +Features +~~~~~~~~ +- `#4285 `_: Add postfix lookup against couchdb for client smtp fingerprint +- `#5959 `_: Make alias resolver to return *uuid@deliver.local* +- `#7998 `_: Bounce stalled emails after a timeout. + +Bugfixes +~~~~~~~~ +- `#7253 `_: Use the original message for encryption. +- `#7961 `_: Check if the account is enabled. + +Misc +~~~~ +- `#7271 `_: Document the return codes of the TCP maps. diff --git a/HISTORY b/HISTORY new file mode 100644 index 0000000..c2f3662 --- /dev/null +++ b/HISTORY @@ -0,0 +1,71 @@ +0.6.2 Apr 21, 2015: + o Add PGP key lookup on access check server and reject mail if no PGP key + was found for the user. Closes #6795. + o Fix bounce message recipient. Closes #6854. + o Implement bouncing as per RFCs 6522, 3834 and 3464. Closes #6858. + o Correctly return async bouncer deferred. + +0.6.1 Feb 11, 2015: + o Process unprocessed mail when MX starts (closes #2591). + o Log to syslog. Closes: #6307 + o MX log and retry when delivery directories don't exist. Closes #6687. + +0.6.0 Sept 26, 2014: + o Bounce mails when there's a problematic situation for an email, + such as no public key. Fixes #4803. + o Properly log tracebacks for exceptions occuring in the mail + processing loop. + o Add errdecr key defaulting to each mail Soledad Document. Closes + #6072. + o Any inconsistent user would make the mx stop decrypting mails for + all subsequent users. + +0.5.0 Apr 4, 2014: + o Use CouchDocument to comply with new Soledad couch backend. Fixes + #4475. + o Some emails are multipart and each part has its own encoding. + +0.3.5 Dec 10, 2013: + o Add X-Leap-Provenance header. Closes #4356. + o Add tester script to ease testing problematic emails offline. + +0.3.4 Nov 15, 2013: + o Some mail may be skipped at processing because of possible + problems (like connectivity issues to our couch nodes), MX now + looks for unprocessed mails every half hour and tries to process + them. Fixes #3628. + +0.3.3 Nov 1, 2013: + o Fix return codes for check recipient access. Fixes #3356. + o Improve logging in general and support possible unicode parameters + without breaking. + o Try to figure out the encoding of an email first by looking into + its header, if that fails then by using chardet. + o Support more than utf8 encodings for emails. + o Add support for receiving mailing list mails. + o Use the uuid that alias_resolver returned and postfix added to the + mail headers, which improves performance. + o Look for public keys based on uuid instead of mail address. + +0.3.2 Sep 6, 2013: + o Keep file watcher in memory to prevent losing file events. + o Properly save the incoming mail as a doc in couch. + o Properly parse mail address of the form "Name ". Fixes #3653. + +0.3.1 Aug 23, 2013: + o Migrate mx functions to work on the new couchdb structure and + views. Fixes #3502. + o Update to new soledad package scheme (common, client and + server). Closes #3487. + o Add versioneer. + +0.3.0 Aug 9, 2013: + o Give a return code for bare usernames too. Closes: #3405 + o Adapt to Soledad 0.2.1 API. + o Fix broken pip install + o Fix alias lookup return codes. Closes: #3356 + o Use the new API to import a new ascii armored public key. Fixes + #3352. + o Add "incoming" index for ease of listing new email. + o Add dependency for leap.keymanager. + o Adapt to the new keymanager API. Closes #3397. diff --git a/changes/next-changelog.txt b/changes/next-changelog.txt index 65ed19c..2e13a84 100644 --- a/changes/next-changelog.txt +++ b/changes/next-changelog.txt @@ -1,4 +1,4 @@ -0.8.0 - xxx +0.8.1 - xxx +++++++++++++++++++++++++++++++ Please add lines to this file, they will be moved to the CHANGELOG.rst during @@ -10,23 +10,16 @@ I've added a new category `Misc` so we can track doc/style/packaging stuff. Features ~~~~~~~~ -- `#4285 `_: Add postfix lookup against couchdb for client smtp fingerprint -- `#5959 `_: Make alias resolver to return *uuid@deliver.local* -- `#7998 `_: Bounce stalled emails after a timeout. - - `#1234 `_: Description of the new feature corresponding with issue #1234. - New feature without related issue number. Bugfixes ~~~~~~~~ -- `#7253 `_: Use the original message for encryption. -- `#7961 `_: Check if the account is enabled. - `#1235 `_: Description for the fixed stuff corresponding with issue #1235. - Bugfix without related issue number. Misc ~~~~ -- `#7271 `_: Document the return codes of the TCP maps. - `#1236 `_: Description of the new feature corresponding with issue #1236. - Some change without issue number. -- cgit v1.2.3 From e2a19eaf0ceca35acaedafb3796c66b562e825da Mon Sep 17 00:00:00 2001 From: Kali Kaneko Date: Mon, 18 Apr 2016 12:02:47 -0400 Subject: [pkg] bump leap deps --- pkg/requirements-leap.pip | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/requirements-leap.pip b/pkg/requirements-leap.pip index 23ebb69..aab5fa5 100644 --- a/pkg/requirements-leap.pip +++ b/pkg/requirements-leap.pip @@ -1,3 +1,3 @@ -leap.common>=0.3.5 +leap.common>=0.5.1 leap.soledad.common>=0.8.0 -leap.keymanager>=0.3.4 +leap.keymanager>=0.5.0 -- cgit v1.2.3