From 0b96b0fe96b8930ef49222cd0f1387fff39dbcc2 Mon Sep 17 00:00:00 2001 From: tangowithfoxtrot <5676771+tangowithfoxtrot@users.noreply.github.com> Date: Tue, 12 Mar 2024 07:56:20 -0700 Subject: [PATCH 01/10] Update CHANGELOG.md --- crates/bws/CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/bws/CHANGELOG.md b/crates/bws/CHANGELOG.md index 2bb431485..7f7a4c4a2 100644 --- a/crates/bws/CHANGELOG.md +++ b/crates/bws/CHANGELOG.md @@ -11,6 +11,7 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). - Switched TLS backend to `rustls`, removing the dependency on `OpenSSL`. - Add a `BWS_CONFIG_FILE` environment variable to specify the location of the config file (#571) +- The `bws` CLI is now available as a Docker image (`docker run -it bitwarden/bws --help`) ## [0.4.0] - 2023-12-21 From 7757372f3c7574e50af7694ff5c7a28292f02157 Mon Sep 17 00:00:00 2001 From: tangowithfoxtrot <5676771+tangowithfoxtrot@users.noreply.github.com> Date: Tue, 12 Mar 2024 08:43:51 -0700 Subject: [PATCH 02/10] Update CHANGELOG.md --- crates/bws/CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/crates/bws/CHANGELOG.md b/crates/bws/CHANGELOG.md index 7f7a4c4a2..23a973957 100644 --- a/crates/bws/CHANGELOG.md +++ b/crates/bws/CHANGELOG.md @@ -10,6 +10,9 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ### Changed - Switched TLS backend to `rustls`, removing the dependency on `OpenSSL`. + +### Added + - Add a `BWS_CONFIG_FILE` environment variable to specify the location of the config file (#571) - The `bws` CLI is now available as a Docker image (`docker run -it bitwarden/bws --help`) From cc463a552ae55adbf9cd99f680eade684db85ac0 Mon Sep 17 00:00:00 2001 From: tangowithfoxtrot <5676771+tangowithfoxtrot@users.noreply.github.com> Date: Tue, 12 Mar 2024 08:49:26 -0700 Subject: [PATCH 03/10] Update CHANGELOG.md --- crates/bws/CHANGELOG.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/bws/CHANGELOG.md b/crates/bws/CHANGELOG.md index 23a973957..dd7fd6005 100644 --- a/crates/bws/CHANGELOG.md +++ b/crates/bws/CHANGELOG.md @@ -7,15 +7,15 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] -### Changed - -- Switched TLS backend to `rustls`, removing the dependency on `OpenSSL`. - ### Added - Add a `BWS_CONFIG_FILE` environment variable to specify the location of the config file (#571) - The `bws` CLI is now available as a Docker image (`docker run -it bitwarden/bws --help`) +### Changed + +- Switched TLS backend to `rustls`, removing the dependency on `OpenSSL`. + ## [0.4.0] - 2023-12-21 ### Added From 4c2da21c0199c18c339b7bbca34fb2a8967df782 Mon Sep 17 00:00:00 2001 From: tangowithfoxtrot <5676771+tangowithfoxtrot@users.noreply.github.com> Date: Tue, 12 Mar 2024 14:28:17 -0700 Subject: [PATCH 04/10] Update CHANGELOG.md --- crates/bws/CHANGELOG.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/crates/bws/CHANGELOG.md b/crates/bws/CHANGELOG.md index dd7fd6005..420a8d9fb 100644 --- a/crates/bws/CHANGELOG.md +++ b/crates/bws/CHANGELOG.md @@ -10,11 +10,15 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ### Added - Add a `BWS_CONFIG_FILE` environment variable to specify the location of the config file (#571) -- The `bws` CLI is now available as a Docker image (`docker run -it bitwarden/bws --help`) +- The `bws` CLI is now available as a Docker image (`docker run -it bitwarden/bws --help`) (#305) +- `bws` mac signing support: (#535) +- The output option added back in the help menu: (#477) +- We now use rustls on non-wasm platforms: (#374) ### Changed -- Switched TLS backend to `rustls`, removing the dependency on `OpenSSL`. +- Switched TLS backend to `rusttls`, removing the dependency on `OpenSSL`. (#374) +- MSRV for `bws` was updated to `1.71.0`: (#589) ## [0.4.0] - 2023-12-21 From fe0e7de6154008345309912f2252c6799ddc9570 Mon Sep 17 00:00:00 2001 From: tangowithfoxtrot <5676771+tangowithfoxtrot@users.noreply.github.com> Date: Mon, 18 Mar 2024 08:55:28 -0700 Subject: [PATCH 05/10] Update crates/bws/CHANGELOG.md Co-authored-by: Oscar Hinton --- crates/bws/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bws/CHANGELOG.md b/crates/bws/CHANGELOG.md index 420a8d9fb..1da3c1193 100644 --- a/crates/bws/CHANGELOG.md +++ b/crates/bws/CHANGELOG.md @@ -11,7 +11,7 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). - Add a `BWS_CONFIG_FILE` environment variable to specify the location of the config file (#571) - The `bws` CLI is now available as a Docker image (`docker run -it bitwarden/bws --help`) (#305) -- `bws` mac signing support: (#535) +- The `bws` CLI releases are now code signed on Windows and Mac (#534, #535) - The output option added back in the help menu: (#477) - We now use rustls on non-wasm platforms: (#374) From 88ab37fda0d84be4819493cc9b0f8b721f972266 Mon Sep 17 00:00:00 2001 From: tangowithfoxtrot <5676771+tangowithfoxtrot@users.noreply.github.com> Date: Mon, 18 Mar 2024 08:56:13 -0700 Subject: [PATCH 06/10] Update crates/bws/CHANGELOG.md Co-authored-by: Oscar Hinton --- crates/bws/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bws/CHANGELOG.md b/crates/bws/CHANGELOG.md index 1da3c1193..5b3884bf1 100644 --- a/crates/bws/CHANGELOG.md +++ b/crates/bws/CHANGELOG.md @@ -12,7 +12,7 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). - Add a `BWS_CONFIG_FILE` environment variable to specify the location of the config file (#571) - The `bws` CLI is now available as a Docker image (`docker run -it bitwarden/bws --help`) (#305) - The `bws` CLI releases are now code signed on Windows and Mac (#534, #535) -- The output option added back in the help menu: (#477) +- Re-add output options to the help menu after they were accidentally removed (#477) - We now use rustls on non-wasm platforms: (#374) ### Changed From 331abc78476d8163ff1334914c6411ad1a08f9a8 Mon Sep 17 00:00:00 2001 From: tangowithfoxtrot <5676771+tangowithfoxtrot@users.noreply.github.com> Date: Mon, 18 Mar 2024 09:15:23 -0700 Subject: [PATCH 07/10] Update crates/bws/CHANGELOG.md Co-authored-by: Oscar Hinton --- crates/bws/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bws/CHANGELOG.md b/crates/bws/CHANGELOG.md index 5b3884bf1..14e401d22 100644 --- a/crates/bws/CHANGELOG.md +++ b/crates/bws/CHANGELOG.md @@ -17,7 +17,7 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ### Changed -- Switched TLS backend to `rusttls`, removing the dependency on `OpenSSL`. (#374) +- Switched TLS backend to `rusttls`, removing the dependency on `OpenSSL` (#374) - MSRV for `bws` was updated to `1.71.0`: (#589) ## [0.4.0] - 2023-12-21 From bcad068cb8f1fa6987745e992d3e24edac726bd1 Mon Sep 17 00:00:00 2001 From: tangowithfoxtrot <5676771+tangowithfoxtrot@users.noreply.github.com> Date: Mon, 18 Mar 2024 09:15:41 -0700 Subject: [PATCH 08/10] Update crates/bws/CHANGELOG.md Co-authored-by: Oscar Hinton --- crates/bws/CHANGELOG.md | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/bws/CHANGELOG.md b/crates/bws/CHANGELOG.md index 14e401d22..148bc54dd 100644 --- a/crates/bws/CHANGELOG.md +++ b/crates/bws/CHANGELOG.md @@ -13,7 +13,6 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). - The `bws` CLI is now available as a Docker image (`docker run -it bitwarden/bws --help`) (#305) - The `bws` CLI releases are now code signed on Windows and Mac (#534, #535) - Re-add output options to the help menu after they were accidentally removed (#477) -- We now use rustls on non-wasm platforms: (#374) ### Changed From 165f51099e64beb20e0514242de0ceb770e56589 Mon Sep 17 00:00:00 2001 From: tangowithfoxtrot <5676771+tangowithfoxtrot@users.noreply.github.com> Date: Mon, 18 Mar 2024 09:17:09 -0700 Subject: [PATCH 09/10] Update CHANGELOG.md --- crates/bws/CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/crates/bws/CHANGELOG.md b/crates/bws/CHANGELOG.md index 148bc54dd..a7d96efb3 100644 --- a/crates/bws/CHANGELOG.md +++ b/crates/bws/CHANGELOG.md @@ -12,6 +12,9 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). - Add a `BWS_CONFIG_FILE` environment variable to specify the location of the config file (#571) - The `bws` CLI is now available as a Docker image (`docker run -it bitwarden/bws --help`) (#305) - The `bws` CLI releases are now code signed on Windows and Mac (#534, #535) + +### Fixed + - Re-add output options to the help menu after they were accidentally removed (#477) ### Changed From 8add30ca6b9d305cade49bf9c669ba7e62cdaab1 Mon Sep 17 00:00:00 2001 From: tangowithfoxtrot <5676771+tangowithfoxtrot@users.noreply.github.com> Date: Mon, 18 Mar 2024 09:22:44 -0700 Subject: [PATCH 10/10] Update crates/bws/CHANGELOG.md Co-authored-by: Oscar Hinton --- crates/bws/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bws/CHANGELOG.md b/crates/bws/CHANGELOG.md index a7d96efb3..642266c70 100644 --- a/crates/bws/CHANGELOG.md +++ b/crates/bws/CHANGELOG.md @@ -20,7 +20,7 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ### Changed - Switched TLS backend to `rusttls`, removing the dependency on `OpenSSL` (#374) -- MSRV for `bws` was updated to `1.71.0`: (#589) +- Updated MSRV for `bws` to `1.71.0` (#589) ## [0.4.0] - 2023-12-21