Update dependency dani-garcia/bitwarden_rs to v1.17.0- autoclosed #7

Closed
renovator wants to merge 1 commits from renovate/dani-garcia-bitwarden_rs-1.x into master
Member

This PR contains the following updates:

Package Update Change
dani-garcia/bitwarden_rs minor 1.16.1 -> 1.17.0

Release Notes

dani-garcia/bitwarden_rs

v1.17.0

Compare Source

New docker multi database support and MySQL/PostgreSQL support for ARM 🎉

Only one image: bitwardenrs/server

It contains support for SQLite, MySQL and PostgreSQL all in one! Supports AMD64, ARMv6, ARMv7 and ARMv8 (Aarch64), and all architectures support all database backends!.

Note, the old separate images for MySQL and PostgreSQL will be kept updated for the time being, but it's recommended to migrate when possible.

Which tag to use:
  • bitwardenrs/server:latest: Tracks the latest released version (i.e., tagged with a version number). Recommended for most users, and generally the most stable.
  • bitwardenrs/server:testing: Tracks the latest commits to the source repository. Recommended for users who want early access to the newest features or enhancements. Generally pretty stable, but occasional issues are unavoidable.
  • bitwardenrs/server:x.y.z: Represents a specific released version. Prefer to use latest to keep up-to-date.
Note about ARMv6
  • Docker seems to have some issues with architecture detection on ARMv6, so if you have trouble in that case, use these tags instead: bitwardenrs/server:arm32v6, bitwardenrs/server:testing-arm32v6, bitwardenrs/server:x.y.z-arm32v6
Alpine base
  • bitwardenrs/server:alpine, bitwardenrs/server:testing-alpine, bitwardenrs/server:x.y.z-alpine: Functionally the same as the above images, but based on Alpine instead of Debian, which results in a smaller image. Only supported for SQLite and the AMD64 and ARMv7 architectures.

Changelog

  • Docker alpine image now also works for armv7.
  • Docker MySQL and PostgreSQL images now also work on armv6, armv7 and armv8-64.
  • Multiple database support, now you can compile with cargo build --features sqlite,mysql,postgresql or any combination of them.
  • Now the initial database connection doesn't fail instantly when there's an error, but retries for up to 15 times by default, adjustable with the DB_CONNECTION_RETRIES option.
  • Sessions are properly invalidated now when changing email, password or kdf parameters.
  • Items are not shown to organization admins in their user view when they don't have their collection selected. Note that they still appear in the organization view.
  • Allow multiple SMTP auth mechanisms.
  • Favorite status in organization items is now tracked at the user level.
  • Fix admin page when DOMAIN is not configured, or configured incorrectly.
  • Update web vault to 2.16.1
  • Add vendored_openssl feature, to statically link OpenSSL, disabled by default.
  • Updated dependencies and synced global domains file with upstream.

v1.16.3

Compare Source

  • Fixed mysql and postgresql releases not building correctly
  • Added support for restricting org creation to certain users: Examples
  • Syncronized global_domains.json with upstream

v1.16.2

Compare Source

  • Fixed issue unlocking vault in the desktop client.
  • Added back arm32v6 tag, because docker fails to select that image in ARMv6 devices.
  • Fixed websocket notifications when sending an item to the trash.

Renovate configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

♻️ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Update | Change | |---|---|---| | [dani-garcia/bitwarden_rs](https://github.com/dani-garcia/bitwarden_rs) | minor | `1.16.1` -> `1.17.0` | --- ### Release Notes <details> <summary>dani-garcia/bitwarden_rs</summary> ### [`v1.17.0`](https://github.com/dani-garcia/bitwarden_rs/releases/1.17.0) [Compare Source](https://github.com/dani-garcia/bitwarden_rs/compare/1.16.3...1.17.0) ### New docker multi database support and MySQL/PostgreSQL support for ARM 🎉 ##### Only one image: `bitwardenrs/server` It contains support for SQLite, MySQL and PostgreSQL all in one! Supports AMD64, ARMv6, ARMv7 and ARMv8 (Aarch64), and all architectures support all database backends!. Note, the old separate images for MySQL and PostgreSQL will be kept updated for the time being, but it's recommended to migrate when possible. ##### Which tag to use: - `bitwardenrs/server:latest`: Tracks the latest released version (i.e., tagged with a version number). Recommended for most users, and generally the most stable. - `bitwardenrs/server:testing`: Tracks the latest commits to the source repository. Recommended for users who want early access to the newest features or enhancements. Generally pretty stable, but occasional issues are unavoidable. - `bitwardenrs/server:x.y.z`: Represents a specific released version. Prefer to use latest to keep up-to-date. ##### Note about ARMv6 - Docker seems to have some issues with architecture detection on ARMv6, so if you have trouble in that case, use these tags instead: `bitwardenrs/server:arm32v6`, `bitwardenrs/server:testing-arm32v6`, `bitwardenrs/server:x.y.z-arm32v6` ##### Alpine base - `bitwardenrs/server:alpine`, `bitwardenrs/server:testing-alpine`, `bitwardenrs/server:x.y.z-alpine`: Functionally the same as the above images, but based on Alpine instead of Debian, which results in a smaller image. **Only supported for SQLite and the AMD64 and ARMv7 architectures.** #### Changelog - Docker alpine image now also works for armv7. - Docker MySQL and PostgreSQL images now also work on armv6, armv7 and armv8-64. - Multiple database support, now you can compile with `cargo build --features sqlite,mysql,postgresql` or any combination of them. - Now the initial database connection doesn't fail instantly when there's an error, but retries for up to 15 times by default, adjustable with the `DB_CONNECTION_RETRIES` option. - Sessions are properly invalidated now when changing email, password or kdf parameters. - Items are not shown to organization admins in their user view when they don't have their collection selected. Note that they still appear in the organization view. - Allow multiple SMTP auth mechanisms. - Favorite status in organization items is now tracked at the user level. - Fix admin page when `DOMAIN` is not configured, or configured incorrectly. - Update web vault to 2.16.1 - Add `vendored_openssl` feature, to statically link OpenSSL, disabled by default. - Updated dependencies and synced global domains file with upstream. ### [`v1.16.3`](https://github.com/dani-garcia/bitwarden_rs/releases/1.16.3) [Compare Source](https://github.com/dani-garcia/bitwarden_rs/compare/1.16.2...1.16.3) - Fixed mysql and postgresql releases not building correctly - Added support for restricting org creation to certain users: [Examples](https://github.com/dani-garcia/bitwarden_rs/blob/570d6c8bf97d6c554a9f5265c9cc9aa4e8482f24/.env.template#L121-L127) - Syncronized global_domains.json with upstream ### [`v1.16.2`](https://github.com/dani-garcia/bitwarden_rs/releases/1.16.2) [Compare Source](https://github.com/dani-garcia/bitwarden_rs/compare/1.16.1...1.16.2) - Fixed issue unlocking vault in the desktop client. - Added back `arm32v6` tag, because docker fails to select that image in ARMv6 devices. - Fixed websocket notifications when sending an item to the trash. </details> --- ### Renovate configuration 📅 **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻️ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
renovator changed title from Update dependency dani-garcia/bitwarden_rs to v1.17.0 to Update dependency dani-garcia/bitwarden_rs to v1.17.0- autoclosed 2020-10-17 22:39:22 +02:00
renovator closed this pull request 2020-10-17 22:39:23 +02:00
Some checks reported errors
continuous-integration/drone/pr Build was killed

Pull request closed

Sign in to join this conversation.
No reviewers
No Label
No Milestone
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: container/vaultwarden#7
No description provided.