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