Skip to content

Releases: dani-garcia/vaultwarden

1.7.0

08 Feb 18:34
8fac72d
Compare
Choose a tag to compare
  • Added configuration menu, accessible from the admin panel. This saves the user settings to a JSON file, by default in data/config.json, but configurable with the CONFIG_FILE environment variable.
  • Added templating support for emails, can be added to $DATA_FOLDER/templates/email, or $TEMPLATES_FOLDER/email, if configured. Check here for examples.
    • Added reload templates option, useful during development. Set RELOAD_TEMPLATES to true to enable.
    • The templates use the Handlebars format.
  • Improved icon downloader, now we don't use the upstream server anymore.
  • Added option to disable icon download, set DISABLE_ICON_DOWNLOAD to true.
    • Note that icons already in the cache will still be served. With this, if ICON_CACHE_TTL is set to 0, the cached icons will not expire.
  • Admin panel improvements:
    • Organization, 2FA status and disabled user badges
    • Deauthorize user sessions button
    • Now using templates
  • Added Feature-Policy header.
  • Created recovery code when registering a YubiKey
  • Now the .env file is only read from the current directory.
  • Other fixes and dependency updates

1.6.1

12 Jan 19:45
f571df7
Compare
Choose a tag to compare

This is minor fix release

  • Enabled Yubikey support on AArch64
  • Fixed error when editing cipher with attachment
  • Fixed error incorrectly hiding cipher when deleting attachment
  • Added unofficial server warning

1.6.0

10 Jan 23:39
1d03474
Compare
Choose a tag to compare
  • Implemented new admin panel, available at /admin
    • To use it, you need to set the ADMIN_TOKEN variable to authenticate
    • Note: The old admin_email functionality has been removed
  • Added email invite functionality
  • Web vault updated to v2.8.0
  • Fixed AArch64 build, disables Yubikey support
  • Implemented TTLs for the icon cache
  • Improved error handling
  • Bug fixes

We have started a Wiki! All info that used to be in the Readme should now be there. The wiki is open to everyone, so if you think something is missing or wrong, we'd appreciate your contribution.

1.5.0

17 Dec 17:36
371017b
Compare
Choose a tag to compare
  • Revamped logging
    • Logging to file is now supported, set LOG_FILE=/path/to/log
    • Logging to syslog is now supported, for this you need to compile the project with cargo build --features=enable_syslog
    • Important: If you are using fail2ban or similar, you may need to update the filters to the new style.
    • You can also disable it, by setting EXTENDED_LOGGING=false, but this disables logging to file or syslog
  • Updated web vault to 2.7.1
  • Implemented key rotation and individual attachment keys
  • Added yubico support
  • Updated rocket web server to 0.4
  • Fixed some logout issues
  • Fixed some crashed in mobile apps when using 2FA

1.4.0

14 Nov 15:11
dd00591
Compare
Choose a tag to compare
  • Disabled websockets by default, can be enabled by setting WEBSOCKET_ENABLED=true. Note that websockets require some additional setup. More info about that in the README.
  • Updated web vault to 2.4.0
  • Upgraded sync method to not send equivalent domains when not necessary.
  • Bug fixes and documentation changes

1.3.0

13 Oct 15:19
e061462
Compare
Choose a tag to compare
  • Implemented simple admin panel (invite/delete users) as an organization. Read the Configure server administrator section of the README for more info.
  • Add WEBSOCKET_ADDRESS config option
  • Updated docker web vault to 2.4.0
  • Add dockerfile for aarch64
  • Updated dependencies
  • Bug fixes

1.2.0

23 Sep 15:47
2bb6482
Compare
Choose a tag to compare
  • Partial support for websockets notifications (Go to README for instructions)
  • Fixed compilation error with OpenSSL 1.1.1
  • Return default prelogin values when the user doesn't exist
  • Updated docker web vault to 2.3.0
  • Implemented client KDF iterations change
  • Updated dependencies

1.1.0

13 Sep 13:55
924e4a1
Compare
Choose a tag to compare

Well, this is a big one. Here are all the changes:

  • Display password hints directly on the web, as long as SMTP is not in use. Can be disabled setting INVITATIONS_ALLOWED to false
  • SMTP integration, for now only for sending password hints
  • Musl docker image
  • ARMv7 docker image
  • Travis CI integration
  • Basic support for KDF prelogin and notification negotiation
  • Add IP and username to failed login attempts
  • Support passsword history
  • Updated web-vault to 2.2
  • Cipher import in organizations

1.0.0

21 Aug 20:42
1c57c9d
Compare
Choose a tag to compare
  • Updated included web vault to version 2.1.1
  • Updated dependencies
  • Implemented share selected ciphers
  • Updated user revision date on changes, to make sync work

0.13.0

21 Aug 20:34
bd20d87
Compare
Choose a tag to compare
  • Implemented password hint
  • Fixed user revision date
  • Improved documentation