Newer
Older
monkeysign (2.2.3) unstable; urgency=medium
[ Simon Fondrie-Teitler ]
* Don't escape percent signs that are actually required in default mua command
[ Antoine Beaupré ]
* some small improvements to the bug issue template
* create 2.2.x branch officially
* silence errors in test suite with GnuPG 2
-- Antoine Beaupré <anarcat@debian.org> Tue, 24 Jan 2017 15:40:35 -0500
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
monkeysign (2.2.2) unstable; urgency=medium
[ Antoine Beaupré ]
* explicitly depend on socks, seems like pybuild doesn't puck up the
depends (Closes: #847716)
* forgot some future tests failures (Closes: #841115)
* properly redirect version information
* mention --test in bug report guidelines
* clarify support schedule, fix typos
* abandon 2.1.x, tell people how to support more
* indicate that you need to request access to create merge requests
* document the new test skipping features
* give proper credits to documenters
* add credits section
* fix trove classifier
* output the parsed qrcode data when verbose
* do not load default config files in tests
* adopt covenant code of conduct
* patches merging guidelines
* refer to modernPGP manuals
* move code of conducts contacts to a special section
[ Simon Fondrie-Teitler ]
* Add right click menu with print/save to qr code
* Don't attempt to sign a user's own key
* Make message more friendly
* add test for signing one's own key
* lowercase k in OpenPGPkey __repr__
* Add Simon to authors file
[ Tobias Mueller ]
* gpg: Use os.path.expanduser instead of the environment variable
-- Antoine Beaupré <anarcat@debian.org> Thu, 15 Dec 2016 11:04:13 -0500
monkeysign (2.2.1) unstable; urgency=medium
* fix socks dependency specification: it is a runtime, not just
build-time, dependency
* mark as production-ready in python classification
* skip another test that requires network during build
-- Antoine Beaupré <anarcat@debian.org> Sat, 15 Oct 2016 09:18:21 -0400
* fix FTBS errors in reproducible builds due to test suite failing in
the future
* do not STARTTLS on already secure (TLS) connexions
* enable tor support with --tor flag
* handle SMTP conversations better
* add history section to documentation to publish this changelog more
widely
* document branches status and deprecate 2.1.x branch
* improve email usage documentation
-- Antoine Beaupré <anarcat@debian.org> Tue, 11 Oct 2016 11:29:10 -0400
* --local now implies --no-mail (Closes: #719242)
* ship tests with program, accessible with --test parameter
* stop hardcoding version numbers in code, use setuptools-scm instead
* enable tests at build time and Debian CI (autopkgtest)
* complete GnuPG 2.1 support: test suite now passes!
-- Antoine Beaupré <anarcat@debian.org> Mon, 03 Oct 2016 16:18:07 -0400
* add explicit build-dep on gnupg (Closes: #839355)
-- Antoine Beaupré <anarcat@debian.org> Sun, 02 Oct 2016 17:17:03 -0400
monkeysign (2.1.2) unstable; urgency=medium
* reroll release: forgot to bump version number in ode
* upload to pypi before debian, which will notice those errors in the future
-- Antoine Beaupré <anarcat@debian.org> Wed, 28 Sep 2016 09:17:20 -0400
monkeysign (2.1.1) unstable; urgency=medium
* properly transition monkeysign-doc packages to ensure upgrades work
(Closes: #839043)
* add monkeysign-doc to Suggests
* remove obsolete BUILD_TIMESTAMP, especially now that the manpage
generation was rewritten without timestamps
* improve release process and install documentation, remove presentation
* forgot to close a bunch of issues in 2.1.0 release:
* Monkeyscan fails at launch (Closes: #773970)
* expiry date in epoch time is not human readable (Closes: #760139)
* make builds reproducible (Closes: #784602)
-- Antoine Beaupré <anarcat@debian.org> Wed, 28 Sep 2016 08:18:24 -0400
* new minor release for new features and lots of bugfixes, outline:
* GnuPG 2.1 support
* better handling of corner cases (revoked or expired key material,
large webcams) and better error messages)
* better SMTP support (no cleartext, SSMTP)
* move everything to 0xACAB.org to ease collaboration
* expand and convert documentation to reStructured Text and ship it in
a -doc package
* command to sendmail customizable through --mta (message piped
through stdin) or --mua (encrypted key attached on the commandline)
* space-separated fingerprints allowed for -u, which means -u needs to
be separated from the signed fingerprint with -- now
* configuration file support, which is written with --save
* crude preferences window in GUI
* detailed changelog below - this is the result of 2 years of work!
[ Antoine Beaupré ]
* import my personal key renewal to unbreak tests
* import zack's key renewal
* forbid sending passphrase in cleartext
* better explain that STARTTLS is used
* SSMTP support
* port to argparse, which somewhat broke the manpages
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
* allow space-separated fingerprints for -u (Closes: #720050)
* MUA support
* make sendmail command customizable through --mta
* make copy-paste message encrypted (Closes: #833605)
* handle improperly encoded UIDs (Closes: #736629)
* copy public keys for all secret keys found (Closes: #721599)
* skip keys without uids (Closes: #723152)
* set a size for the webcam to avoid too large videos (Closes: #723154)
* add more tests for signing revoked uids
* add unit test for expired subkeys
* accommodate gitlab's naming conventions
* move to 0xacab.org for issues, removing bugs-everywhere
* convert markdown documents to RST
* merge the website in the main documentation
* expand documentation: support schedule, semantic versioning, PyPI, etc
* update urls for openkeychain, mark as compatible
* reshuffle test suite so we make sure it tests the local code
* style fixes
* fix a transient error in unit tests
* mention tests need a unicode locale
* fix monkeysign detection in source dir
* detect revoked keys and do not use them to sign keys
(Closes: #766129, #773896)
* fix lintian warning by specifying copyright version
* don't try to remove non-existent video device, and clarify error message
* output --version to stdout and don't make it an error
* properly raise exceptions when copying gpg.conf fails
* make sure ui calling sequence is correct in sign_key
* use ttyname instead of the tty command
* fix potential vulnerability in msgfmt parser
* review code for security issues with bandit
* handle missing MTA better, see 0xACAB #39
* use full path to sendmail, see 0xACAB #39
* clarify that without smtp, we use the default --mta
* fix whitespace issues in revoked patches
* add new trust state, `empty`
* properly fetch secret key material everywhere
* seek out secret keys first
* properly show output of runtime errors
* include standard debugging information on backtrace
* add hook to show detailed version information in reportbug (see 0xACAB #39)
* always enable --verbose when --debug is enabled
* configuration file support, which is written with --save
* crude preferences window in GUI
[ Kristian Fiskerstrand ]
* ui.py: Make sure to use smtplib namespace
[ Tobias Mueller ]
* Calculated whether a key has expired based on the parsed expiry
* gpg: Added a __repr__ for UIDs
* gpg: Added a __repr__ for OpenPGPKeys
* Added GnuPG 2.1 compatibility reg. its colon output
* gpg: Fixed up the key parsing for secret keys
* gpg: Make a full datetime, instead of epoch, for expiry
* msgfmt: Increase Python3 compatibility by removing "L" suffix
* translation: Use print() for increased python3 compatibility
* gpg: Implemented revoked for OpenPGP Keys
* gpg: Implemented revoked for OpenPGP UIDs
[ Daniel Kahn Gillmor ]
* use new-style gbp.conf
* make monkeysign build reproducibly
[ Michael R. Lawrence ]
* Translated using Weblate (Italian)
* Translated using Weblate (French)
[ Michal Čihař ]
* Translated using Weblate (Czech)
[ Ahmed El Azzabi ]
* Translated using Weblate (French)
[ Gonzalo Exequiel Pedone ]
* Translated using Weblate (Spanish)
[ Jerome Charaoui ]
* Remove bugseverwhere data and migrate issues to 0xacab.org
* Ignore irrelevant gpg errors (Closes: #736548)
[ Ramakrishnan Muthukrishnan ]
* Improve the error message when signing an already signed key.
* improve unit tests for already signed keys and keep previous check
[ emma peel ]
* various improvements to the documentation
-- Antoine Beaupré <anarcat@debian.org> Tue, 13 Sep 2016 13:37:50 -0400
monkeysign (2.0.2) unstable; urgency=medium
* this patch releases fixes critical issues...
* reported in the Debian BTS:
* encode prompt properly before prompting (closes: #771032)
* try to handle error when import actually works in GTK UI
(closes: #770900)
* improve debugging by wrapping all writes to gnupg in debug
* use the proper index when selecting key to sign
(closes: #771034)
* reported on the Monkeysphere mailing list:
* hotfix: properly verify the image signature file
* hotfix: disable scrolling in qrcode window
* don't try to remove non-existent video device, and clarify error
message
* output --version to stdout and don't make it an error
* those fix FTBS issues:
* fix tests after cd4e18c: guess encoding properly
* update zack's key so tests succeed again
* and this makes sure this package will be easier to support for the
lifetime of jessie
* improve error handling again: distinguish different failure cases
and clearly transmit GPG errors
-- Antoine Beaupré <anarcat@debian.org> Mon, 01 Dec 2014 21:03:56 -0500
monkeysign (2.0.1) unstable; urgency=medium
* hot patch release while we still can before jessie:
* fix tests under GnuPG 2.x
* improve usage to clarify -u, --cert-level and --to
* fix version number to include patch release
-- Antoine Beaupré <anarcat@debian.org> Mon, 20 Oct 2014 22:24:37 -0400
monkeysign (2.0.0) unstable; urgency=medium
* new features:
* implement qrcode image import, to allow people without webcams to
import pictures from a trusted camera - the images must be signed with
a detached signature on pain of a ugly warning with instructions.
* move to bugs-everywhere instead of that crazy TODO file
* udate french translation
* usability improvements:
* interface simplified: only the qrcode and webcam with instructions
* all options moved to menus, including the print/save buttons, the
video and identity dropdowns
* properly handle exceptions in gtk UI
* avoid duplicate camera listing and display nicer name (Closes: #718796)
* create a set of mockups for a UI redesign and API documentation
rendered at http://monkeysign.readthedocs.org/
* bug fixes:
* fix "Content-description" to be more useful (Closes: #723677)
* support monkeysign --version", thanks to Gabriel Fillion (Closes: #725113)
* add debugging info from smtp connection, thanks to Gabriel Filion
(Closes: #756540)
* some improvements were done in the GnuPG library to work around
certain GnuPG corner cases and describe problems better
* install monkeyscan command as a symlink properly (Closes: #743150)
* switch to long term support strategy for the 2.0.x release in
preparation for Debian Jessie
-- Antoine Beaupré <anarcat@debian.org> Sat, 18 Oct 2014 13:25:54 -0400
monkeysign (1.2) unstable; urgency=medium
* improve python 3 compatibility, partially (Closes: #725059)
* update translation strings
* spanish translation, thanks to lilbit
* partial french translation
* Czech translation, thanks to Michal Čihař
* Bug fix: "build_slides fails of two reasons", thanks to Felix Dreissig
(Closes: #738731).
* Bug fix: "build_manpage only works because of PyGTK encoding changes",
thanks to Felix Dreissig (Closes: #738730).
* Bug fix: "build_trans fails if called seperately", thanks to Felix
Dreissig (Closes: #738732).
-- Antoine Beaupré <anarcat@debian.org> Thu, 28 Aug 2014 20:23:57 -0700
monkeysign (1.1) unstable; urgency=low
[Antoine Beaupré]
* improved SMTP support:
* SMTP username and passwords can be passed as commandline arguments
* SMTP password is prompted if not specified
* use STARTTLS if available
* enable SMTP debugging only debugging is enabled
* show the unencrypted email with --no-mail (Closes: #720049)
* warn when gpg-agent is not running or failing (Closes: #723052)
* set GPG_TTY if it is missing (Closes: #719908)
* bail out on already signed keys (Closes: #720055)
* mention monkeyscan in the package description so it can be found more
easily
* fix python-pkg-resources dependency
* don't show backtrace on control-c
* add missing files to .gitignore (Closes: #724007)
* ship with a neat little slideshow to make presentations
[Philip Jägenstedt]
* fix some typos (Closes: #722964)
* add --cert-level option (Closes: #722740)
-- Antoine Beaupré <anarcat@debian.org> Tue, 01 Oct 2013 00:22:30 +0200
monkeysign (1.0) unstable; urgency=low
* stop copying secrets to the temporary keyring
* make sure we use the right signing key when specified
* signatures on multiple UIDs now get properly sent separately
(Closes: #719241)
* this includes "deluid" support on the gpg library
* significantly refactor email creation
* improve unit tests on commandline scripts, invalid (revoked) keys and
timeout handling
* provide manpages (Closes: #716674)
* avoid showing binary garbage on export when debugging
* properly fail if password confirmation fails
* user interfaces now translatable
* accept space-separated key fingerprints
* fix single UID key signing
* proper formatting of UIDs with comments (removed) and spaces (wrapped)
for emails
-- Antoine Beaupré <anarcat@debian.org> Wed, 14 Aug 2013 20:51:44 -0400
monkeysign (0.9) unstable; urgency=low
* refactor unit tests again to optimise UI tests and test mail generation
* fix error handling in encryption/decryption (Closes: #717622)
* rename msign-cli to monkeysign and msign to monkeyscan (Closes: #717623)
* handle interruptions cleanly when choosing user IDs (see: #716675)
-- Antoine Beaupré <anarcat@debian.org> Tue, 23 Jul 2013 10:56:50 -0400
monkeysign (0.8) unstable; urgency=low
* refactor unit test suite to allow testing the commandline tool
interactively
* don't fail on empty input when choosing uid (Closes: #716675)
* we also explain how to refuse signing a key better
* optimise network tests so they timeout (so fail) faster
-- Antoine Beaupré <anarcat@debian.org> Wed, 17 Jul 2013 22:52:02 -0400
monkeysign (0.7.1) unstable; urgency=low
* fix binary package dependency on python
* update to debhelper 9
* update to standards 3.9.4, no change
-- Antoine Beaupré <anarcat@debian.org> Sun, 07 Jul 2013 09:58:56 -0400
monkeysign (0.7) unstable; urgency=low
* fix crash when key not found on keyservers
* use a proper message in outgoing emails
* unit tests extended to cover user interface
* import keys from the local keyring before looking at the keyserver
* fix print/save exports (thanks Simon!)
* don't depend on a graphical interface
* update copyright dates and notices
* mark as priority: optional instead of extra
-- Antoine Beaupré <anarcat@debian.org> Sat, 06 Jul 2013 01:07:28 -0400
monkeysign (0.6) unstable; urgency=low
* fix warnings in the graphical interface
* make qr-code detection be case-insensitive
* fix syntax error
* follow executable renames properly
-- Antoine Beaupré <anarcat@debian.org> Sat, 06 Oct 2012 16:08:48 +0200
monkeysign (0.5) unstable; urgency=low
* non-exportable signatures (--local) support
* simplify the monkeysign-scan UI
* rename monkeysign-scan to msign and monkeysign-cli to msign-cli to
avoid tab-completion conflict with monkeysphere executables, at the
request of Monkeysphere developers
* usability: make sure arguments are case-insensitive
* fix email format so it's actually readable
-- Antoine Beaupré <anarcat@debian.org> Fri, 05 Oct 2012 11:14:37 +0200
monkeysign (0.4) unstable; urgency=low
* merge display and scanning of qrcodes
* really remove remaining pyme dependency
* list key indexes to allow choosing more clearly
* copy the gpg.conf in temporary keyring
* fix keyserver operation in GUI
* implement UID choosing in GUI
-- Antoine Beaupré <anarcat@debian.org> Wed, 01 Aug 2012 02:33:29 -0400
monkeysign (0.3) unstable; urgency=low
* allow keyserver to be enabled while not specified
* do not set an empty keyserver, fixing weird keyserver errors on -scan
* fix window reference in UI, spotted by dkg
* mark this as architecture-independent, spotted by dkg
* make setup executable
* reference new homepage
* API change: functions return false instead of raising exceptions
* fix multiple keys listing support
-- Antoine Beaupré <anarcat@debian.org> Thu, 26 Jul 2012 12:41:54 -0400
monkeysign (0.2) unstable; urgency=low
* only load information from private keys when doing key detection
* add debugging in key choosing algorithm
* import private keyring even in dry-run
* properly import re, fixing a crash
* add usage for monkeysign-scan
* fixup modules list so that the package actually works
* make this not crash completely if there's no video
* improve short description so that it matches 'key signing'
* fix dependencies
* fix typo, noticed by micah
-- Antoine Beaupré <anarcat@debian.org> Sun, 22 Jul 2012 13:38:00 -0400
monkeysign (0.1) unstable; urgency=low
* Initial Release.
-- Antoine Beaupré <anarcat@debian.org> Sat, 21 Jul 2012 12:05:59 -0400