Version 2.1.
[pwmd.git] / NEWS
blobb1ae0301697a2b255c824154085034eb46ac9057
1 PWMD v2.1
2 ----------
3 A new GnuPG key is being used to sign releases and git tags. The new key-id is
4 0xB140DCE2. The old key-id 0xF2B33BEF should be considered revoked do to a
5 data loss (not pwmd's fault, though).
7 Added an "age" attribute to the document element. This attribute is updated to
8 the time of the last SAVE.
10 Added support for using different ciphers when saving a data file. This adds a
11 new configuration parameter "cipher" and also adds a new option "SET CIPHER".
12 See the manual page for supported ciphers.
14 Added a new configuration parameter "log_level".
16 Added the RENAME command to rename an element.
18 Added the COPY command to copy an element tree to an element path.
20 Always use the passphrase specified with the OPEN command, if any, even when
21 the (encrypted) file has been cached.
23 Fixed converting an unencrypted data file.
25 A few portability fixes for 64-bit machines.
27 Added configuration parameter "debug_file" to log all protocol IO to the
28 specified file.
31 PWMD v2.0
32 ----------
33 This version breaks data file compatibility with previous versions but has an
34 option to convert your existing data file to the new format. See the manual
35 page about the --convert command line switch. Future versions that have data
36 file changes shouldn't have this problem.
38 Requires a C99 compiler.
40 libassuan is included statically. There is no longer an external dependency.
42 Better handling of unexpected client disconnects and status messages.
44 Added new protocol command VERSION.
46 Added new protocol commands SET and UNSET. SET replaces the old OPTION
47 command. UNSET resets an option to its default value.
49 Pinentry is used when importing, converting and pushing files from the command
50 line. It can also be disabled to use regular terminal input.
52 The file cache is a GSList rather than a mmap()'ed page of memory. This allows
53 for an unlimited number of data files but changes the CACHE status message to
54 only show the number of cached files and not any total.
56 Removed EPWMD_MAX_SLOTS, EPWMD_ERROR and EPWMD_ELOOP.
58 Added new XFER status message. This is sent after every ASSUAN_LINELENGTH
59 bytes when tranferring data lines. This adds a new configurations parameter
60 "xfer_progress".
62 Option ACL (Access Control List) support. When --enable-acl is passed to
63 configure, data files with an ACL will be retained after a SAVE or inherited
64 from the data_directory if new.
66 The ISCACHED command now checks for file existance. Returns GPG_ERR_NOT_FOUND
67 if it exists but not found in the file cache or an errno from access(2).
69 Renamed a few SET (old OPTION command) parameters to match the rcfile
70 parameter names so GETCONFIG will work better:
71         PINENTRY -> ENABLE_PINENTRY
72         TIMEOUT  -> PINENTRY_TIMEOUT
73         PATH     -> PINENTRY_PATH
75 Removed the old CLIENT option. The old NAME sub-option can be set with SET
76 NAME=VALUE.
78 Changed how GETCONFIG handles per-session option changes for some options. If
79 no file is specified and the specified option was previouly SET, then the SET
80 value is returned. Else the option for the specified file is read from the
81 configuration file.
83 GETCONFIG <filename> ITERATIONS will read the file header of the specified
84 file. Useful if using a local pinentry and you need to determine if a filename
85 is encrypted or not.
87 SET ITERATIONS requires an open file.
89 The configuration parameters "pinentry_timeout" and "enable_pinentry" can now
90 be set per-file in the configuration file.
92 Can now use both short and long command line options.
94 The CACHETIMEOUT command has had its arguments flipped to keep consistancy
95 with other commands: CACHETIMEOUT <filename> <seconds>