Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: tag 1.59 #296

Merged
merged 2 commits into from
Feb 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 24 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
<a name="1.59.0"></a>
## 1.59.0 (2022-02-25)


#### Chore

* cleanup cargo audit invocation (#290) ([23818662](https://github.com/mozilla-services/autopush-rs/commit/23818662e17cf246fe96f17c2cfb41671b1e0015))
* tag 1.58.0 (#289) ([e47f697b](https://github.com/mozilla-services/autopush-rs/commit/e47f697b29516acc7db53ecee708e41d4d26891b))
* Q3 dependency update (#286) ([627456d9](https://github.com/mozilla-services/autopush-rs/commit/627456d9472971419bc4a8189b53d5b85e48ab30), closes [#285](https://github.com/mozilla-services/autopush-rs/issues/285))
* Dep update for Jul 2021 (#283) ([230fb191](https://github.com/mozilla-services/autopush-rs/commit/230fb191d39bae2838b819362566fe5892394a4e))
* library update for Jun 2021 (#280) ([5e9aabfe](https://github.com/mozilla-services/autopush-rs/commit/5e9aabfe54e4b2b0d0e0c8fa5d45f4e735f6e84f))
* tag 1.57.8 (#277) ([35f0b406](https://github.com/mozilla-services/autopush-rs/commit/35f0b4066ef7873cf1a5c5d3c7f55bd4fb8d6387))

#### Bug Fixes

* remove dbg!() (#292) ([1eca808f](https://github.com/mozilla-services/autopush-rs/commit/1eca808fc3ad641227b46d9e1ed52c8bf988097b), closes [#287](https://github.com/mozilla-services/autopush-rs/issues/287))

#### Features

* Report bridge status via `__heartbeat__` (#295) ([4e85e401](https://github.com/mozilla-services/autopush-rs/commit/4e85e401df48c6c2057db2b82540f9009a90272a), closes [#294](https://github.com/mozilla-services/autopush-rs/issues/294))
* Standardize to `/__error__` for sentry error check (#278) ([3f0dc8f4](https://github.com/mozilla-services/autopush-rs/commit/3f0dc8f43b42f49cf3108d34c3f5b901e3075e54), closes [#274](https://github.com/mozilla-services/autopush-rs/issues/274))



<a name="1.58.0"></a>
## 1.58.0 (2021-10-13)

Expand Down Expand Up @@ -559,6 +583,3 @@ Includes autoendpoint
#### Doc

* update documentation ([1d244864](https://github.com/mozilla-services/autopush-rs/commit/1d24486497c5bad20d74c9d065b07a83b192523c))



6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion autoendpoint/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "autoendpoint"
# Should match version in ../autopush/Cargo.toml
version = "1.58.0"
version = "1.59.0"
authors = ["Mark Drobnak <[email protected]>", "jrconlin <[email protected]>"]
edition = "2018"

Expand Down
4 changes: 2 additions & 2 deletions autoendpoint/src/settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ impl Settings {

/// Initialize the fernet encryption instance
pub fn make_fernet(&self) -> MultiFernet {
let keys = &self.crypto_keys.replace('"', "").replace(" ", "");
let keys = &self.crypto_keys.replace('"', "").replace(' ', "");
let fernets = Self::read_list_from_str(keys, "Invalid AUTOEND_CRYPTO_KEYS")
.map(|key| Fernet::new(key).expect("Invalid AUTOEND_CRYPTO_KEYS"))
.collect();
Expand All @@ -119,7 +119,7 @@ impl Settings {

/// Get the list of auth hash keys
pub fn auth_keys(&self) -> Vec<String> {
let keys = &self.auth_keys.replace('"', "").replace(" ", "");
let keys = &self.auth_keys.replace('"', "").replace(' ', "");
Self::read_list_from_str(keys, "Invalid AUTOEND_AUTH_KEYS")
.map(|v| v.to_owned())
.collect()
Expand Down
2 changes: 1 addition & 1 deletion autopush-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "autopush_common"
# Should match version in ../autopush/Cargo.toml
version = "1.58.0"
version = "1.59.0"
authors = [
"Ben Bangert <[email protected]>",
"JR Conlin <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion autopush-common/src/db/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ pub fn all_channels(
.ok()
.and_then(|notif: DynamoDbNotification| notif.chids)
})
.unwrap_or_else(HashSet::new);
.unwrap_or_default();
future::ok(channels)
})
.or_else(|_err| future::ok(HashSet::new()))
Expand Down
2 changes: 1 addition & 1 deletion autopush/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "autopush"
version = "1.58.0"
version = "1.59.0"
authors = [
"Ben Bangert <[email protected]>",
"JR Conlin <[email protected]>",
Expand Down