Updated the docs of the "allowed" parameter. The list must not contain
[pwmd.git] / NEWS
blob17f0d4f4c3267eaf687eaee9ea3fbba4c3e824c3
1 PWMD v2.4
2 ----------
3 Reworked the IMPORT command to let it create root elements. The syntax has
4 changed to have the content as the first argument and the element path, if
5 any, as the remaining arguments after the content which is now TAB, rather
6 than space, separated.
8 Changed how the "target" attribute value is stored in the document.  Rather
9 than storing the resolved destination argument, first check to see if the
10 element path (which may contain other target attributes) is valid then store
11 the specified path as the "target" attribute value.
13 A few bugfixes. See ChangeLog for details.
16 PWMD v2.3
17 ----------
18 The DISPLAY and TERM environment variables are unset just before entering the
19 server loop. Clients wanting to use pinentry must set these options manually
20 or configure ~/.pwmd/pinentry.conf. This fixes pwmd using these variables
21 which may no longer be valid.
23 Ported to libassuan 2.0. There is no longer a static libassuan included in the
24 archive since this version supports building a DSO.
26 Fixed the COPY command copying only the the first element of the tree. How'd
27 that happen?
30 PWMD v2.2
31 ----------
32 Bugfix for pushing non-encrypted files into the cache.
35 PWMD v2.1
36 ----------
37 A new GnuPG key is being used to sign releases and git tags. The new key-id is
38 0xB140DCE2. The old key-id 0xF2B33BEF should be considered revoked do to a
39 data loss (not pwmd's fault, though).
41 Added an "age" attribute to the document element. This attribute is updated to
42 the time of the last SAVE.
44 Added support for using different ciphers when saving a data file. This adds a
45 new configuration parameter "cipher" and also adds a new option "SET CIPHER".
46 See the manual page for supported ciphers.
48 Added a new configuration parameter "log_level".
50 Added the RENAME command to rename an element.
52 Added the COPY command to copy an element tree to an element path.
54 Always use the passphrase specified with the OPEN command, if any, even when
55 the (encrypted) file has been cached.
57 Fixed converting an unencrypted data file.
59 A few portability fixes for 64-bit machines.
61 Added configuration parameter "debug_file" to log all protocol IO to the
62 specified file.
65 PWMD v2.0
66 ----------
67 This version breaks data file compatibility with previous versions but has an
68 option to convert your existing data file to the new format. See the manual
69 page about the --convert command line switch. Future versions that have data
70 file changes shouldn't have this problem.
72 Requires a C99 compiler.
74 libassuan is included statically. There is no longer an external dependency.
76 Better handling of unexpected client disconnects and status messages.
78 Added new protocol command VERSION.
80 Added new protocol commands SET and UNSET. SET replaces the old OPTION
81 command. UNSET resets an option to its default value.
83 Pinentry is used when importing, converting and pushing files from the command
84 line. It can also be disabled to use regular terminal input.
86 The file cache is a GSList rather than a mmap()'ed page of memory. This allows
87 for an unlimited number of data files but changes the CACHE status message to
88 only show the number of cached files and not any total.
90 Removed EPWMD_MAX_SLOTS, EPWMD_ERROR and EPWMD_ELOOP.
92 Added new XFER status message. This is sent after every ASSUAN_LINELENGTH
93 bytes when tranferring data lines. This adds a new configurations parameter
94 "xfer_progress".
96 Option ACL (Access Control List) support. When --enable-acl is passed to
97 configure, data files with an ACL will be retained after a SAVE or inherited
98 from the data_directory if new.
100 The ISCACHED command now checks for file existance. Returns GPG_ERR_NOT_FOUND
101 if it exists but not found in the file cache or an errno from access(2).
103 Renamed a few SET (old OPTION command) parameters to match the rcfile
104 parameter names so GETCONFIG will work better:
105         PINENTRY -> ENABLE_PINENTRY
106         TIMEOUT  -> PINENTRY_TIMEOUT
107         PATH     -> PINENTRY_PATH
109 Removed the old CLIENT option. The old NAME sub-option can be set with SET
110 NAME=VALUE.
112 Changed how GETCONFIG handles per-session option changes for some options. If
113 no file is specified and the specified option was previouly SET, then the SET
114 value is returned. Else the option for the specified file is read from the
115 configuration file.
117 GETCONFIG <filename> ITERATIONS will read the file header of the specified
118 file. Useful if using a local pinentry and you need to determine if a filename
119 is encrypted or not.
121 SET ITERATIONS requires an open file.
123 The configuration parameters "pinentry_timeout" and "enable_pinentry" can now
124 be set per-file in the configuration file.
126 Can now use both short and long command line options.
128 The CACHETIMEOUT command has had its arguments flipped to keep consistancy
129 with other commands: CACHETIMEOUT <filename> <seconds>