libcryfs/ChangeLog.txt

52 lines
3.2 KiB
Plaintext
Raw Normal View History

2016-02-09 09:48:26 +01:00
Version 0.9.0 (unreleased)
---------------
(warning) file systems created with earlier CryFS versions are incompatible with this release
2016-02-09 09:48:26 +01:00
* Fully support file access times
* (for developers) New repository layout. All subrepositories have been merged to one directory
* (for developers) Using CMake instead of biicode as build system
2016-02-09 09:48:26 +01:00
Version 0.8.6
2016-02-06 13:21:18 +01:00
---------------
2016-02-09 01:19:18 +01:00
* Fix a deadlock that was caused when a very high load of parallel resize operations was issued, see https://github.com/cryfs/cryfs/issues/3
2016-02-09 09:48:26 +01:00
* Fix a bug that prevented deleting symlinks, see https://github.com/cryfs/cryfs/issues/2
* Gracefully accept modifications to the file access times instead of failing, although they're not stored yet (they will be stored in 0.9.0). This should fix https://github.com/cryfs/cryfs/issues/4
2016-02-06 13:21:18 +01:00
Version 0.8.5
---------------
* Fix package manager warning when installing the .deb package
* Offer a default configuration when creating new filesystems
* If the given base or mount directory doesn't exist, offer to create them
2015-11-25 15:46:44 +01:00
Version 0.8.4
---------------
2015-12-17 19:50:22 +01:00
* Offering .deb packages for Debian and Ubuntu
2015-11-25 15:46:44 +01:00
* Compatibility with 32bit systems
* Support files larger than 4GB
2015-11-25 15:46:44 +01:00
2015-11-19 10:09:00 +01:00
Version 0.8.3
---------------
* Ask for password confirmation when creating new filesystem
2015-11-23 17:44:54 +01:00
* Check for new CryFS versions and ask the user to update if a new version is available
* Implemented a mechanism that can show warnings about security bugs to users of a certain CryFS version. Let's hope this won't be necessary ;)
2015-11-24 14:43:20 +01:00
* Compatibility with GCC 4.8 (that allows compiling on Ubuntu 14.04 for example)
2015-11-19 10:09:00 +01:00
Version 0.8.2
---------------
* Mount directory, base directory, logfile and config file can be specified as relative paths
* Improved error messages
2015-10-24 19:56:19 +02:00
Version 0.8.1
---------------
2015-11-11 10:23:45 +01:00
* Config File Encryption: Configuration files are encrypted with two ciphers. The user specifies a password, which is then used with the scrypt KDF to generate the two encryption keys.
- Inner level: Encrypts the config data using the user specified cipher.
- Outer level: Encrypts the name of the inner cipher and the inner level ciphertext using aes-256-gcm.
The config file is padded to hide the size of the configuration data (including the name of the cipher used).
2015-11-11 20:02:10 +01:00
* No external config file needed: If the configuration file is not specified as command line parameter, it will be put into the base directory. This way, the filesystem can be mounted with the password only, without specifying a config file on command line.
2015-10-28 11:29:36 +01:00
* Logfiles: Added a --logfile option to specify where logs should be written to. If the option is not specified, CryFs logs to syslog.
* Running in Background: Fixed daemonization. When CryFs is run without "-f" flag, it will run in background.
* Better error messages when base directory is not existing, not readable or not writeable.
* Allow --cipher=xxx to specify cipher on command line. If cryfs is creating a new filesystem, it will use this cipher. If it is opening an existing filesystem, it will check whether this is the cipher used by it.
* --show-ciphers shows a list of all supported ciphers
2015-11-11 10:23:45 +01:00
* --extpass allows using an external program for password input
* --unmount-idle x automatically unmounts the filesystem after x minutes without a filesystem operation.