Skip to content

Commit

Permalink
chore: tag 1.68.3 (#456)
Browse files Browse the repository at this point in the history
* chore: tag 1.68.3
  • Loading branch information
jrconlin authored Oct 2, 2023
1 parent 68e447d commit 2a97e67
Show file tree
Hide file tree
Showing 3 changed files with 106 additions and 44 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
<a name="1.68.3"></a>
## 1.68.3 (2023-10-02)

#### Breaking Changes

* Run GCM through FCMv1 HTTP API (#455) ([b2282277](https://github.com/mozilla-services/autopush-rs/commit/b2282277e7e751f5e513d65dda1ab2d2635e7299), breaks [#](https://github.com/mozilla-services/autopush-rs/issues/))

#### Features

* Run GCM through FCMv1 HTTP API (#455) ([b2282277](https://github.com/mozilla-services/autopush-rs/commit/b2282277e7e751f5e513d65dda1ab2d2635e7299), breaks [#](https://github.com/mozilla-services/autopush-rs/issues/))

#### Bug Fixes

* re-enable slog's envlogger (#452) ([e76b1198](https://github.com/mozilla-services/autopush-rs/commit/e76b11987400888bae17fdf61e7dff3edaa7743d))
* AutopushUser fails with WebSocketConnectionClosedException ([5f8efb2d](https://github.com/mozilla-services/autopush-rs/commit/5f8efb2db9550b8960c6052c69e1103ab8681041))

#### Test

* calibrate load tests ([1b5c5f99](https://github.com/mozilla-services/autopush-rs/commit/1b5c5f99a503ff5a70f009651ad4c47d39c6468e))
* add subscribe and unsubscribe tasks to AutopushUser ([07d988dd](https://github.com/mozilla-services/autopush-rs/commit/07d988dd11a79d053eb93237f8de977490c5c510))


<a name="1.68.2"></a>
## 1.68.2 (2023-09-27)

Expand Down
62 changes: 42 additions & 20 deletions Cargo.lock

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

66 changes: 42 additions & 24 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
[workspace]
members = [
"autopush-common",
"autopush",
"autoendpoint",
"autoconnect",
"autoconnect/autoconnect-common",
"autoconnect/autoconnect-settings",
"autoconnect/autoconnect-web",
"autoconnect/autoconnect-ws",
"autoconnect/autoconnect-ws/autoconnect-ws-sm",
"autopush-common",
"autopush",
"autoendpoint",
"autoconnect",
"autoconnect/autoconnect-common",
"autoconnect/autoconnect-settings",
"autoconnect/autoconnect-web",
"autoconnect/autoconnect-ws",
"autoconnect/autoconnect-ws/autoconnect-ws-sm",
]
resolver = "2"

[workspace.package]
version = "1.68.2"
version = "1.68.3"
authors = [
"Ben Bangert <[email protected]>",
"JR Conlin <[email protected]>",
Expand Down Expand Up @@ -45,32 +45,50 @@ ctor = "0.2"
docopt = "1.1"
env_logger = "0.10"
fernet = "0.2.0"
futures = {version="0.3", features=["compat"]}
futures-util = {version="0.3", features=["async-await", "compat", "sink", "io"]}
futures = { version = "0.3", features = ["compat"] }
futures-util = { version = "0.3", features = [
"async-await",
"compat",
"sink",
"io",
] }
futures-locks = "0.7"
hex = "0.4.2"
httparse = "1.3"
hyper = "0.14"
lazy_static = "1.4"
log = { version = "0.4", features = ["max_level_debug", "release_max_level_info"] }
log = { version = "0.4", features = [
"max_level_debug",
"release_max_level_info",
] }
mockall = "0.11"
mozsvc-common = "0.2"
openssl = {version="0.10" }
openssl = { version = "0.10" }
rand = "0.8"
regex = "1.4"
reqwest = {version="0.11", features = ["json"] }
rusoto_core = { version="0.47", default-features=false, features=["rustls"] } # locked by serde_dynamodb 0.9
rusoto_credential = { version="0.47"} # locked by serde_dynamodb 0.9
rusoto_dynamodb = { version="0.47", default-features=false, features=["rustls"]} # locked by serde_dynamodb 0.9
sentry = { version = "0.31", features = ["debug-logs"] } # Using debug-logs avoids https://github.com/getsentry/sentry-rust/issues/237
sentry-core = {version = "0.31"}
reqwest = { version = "0.11", features = ["json"] }
rusoto_core = { version = "0.47", default-features = false, features = [
"rustls",
] } # locked by serde_dynamodb 0.9
rusoto_credential = { version = "0.47" } # locked by serde_dynamodb 0.9
rusoto_dynamodb = { version = "0.47", default-features = false, features = [
"rustls",
] } # locked by serde_dynamodb 0.9
sentry = { version = "0.31", features = [
"debug-logs",
] } # Using debug-logs avoids https://github.com/getsentry/sentry-rust/issues/237
sentry-core = { version = "0.31" }
sentry-actix = "0.31"
sentry-backtrace = "0.31"
serde = "1.0"
serde_derive = "1.0"
serde_dynamodb = "0.9"
serde_json = "1.0"
slog = { version = "2.7", features = ["dynamic-keys", "max_level_trace", "release_max_level_info"] }
slog = { version = "2.7", features = [
"dynamic-keys",
"max_level_trace",
"release_max_level_info",
] }
slog-async = "2.6"
slog-envlogger = "2.2.0"
slog-mozlog-json = "0.1"
Expand All @@ -84,7 +102,7 @@ tokio-core = "0.1"
tokio-io = "0.1"
tokio-openssl = "0.6"
# Use older version of tungstenite to support legacy connection server.
tungstenite = { version = "0.9.2", default-features = false } # 0.10+ requires tokio 0.3+
tungstenite = { version = "0.9.2", default-features = false } # 0.10+ requires tokio 0.3+
uuid = { version = "1.1", features = ["serde", "v4"] }
url = "2.2"

Expand All @@ -93,8 +111,8 @@ autoconnect_common = { path = "./autoconnect/autoconnect-common" }
autoconnect_settings = { path = "./autoconnect/autoconnect-settings" }
autoconnect_web = { path = "./autoconnect/autoconnect-web" }
autoconnect_ws = { path = "./autoconnect/autoconnect-ws" }
autoconnect_ws_clientsm = { path ="./autoconnect/autoconnect-ws/autoconnect-ws-clientsm" }
autopush_common = { path = "./autopush-common", features=["bigtable"]}
autoconnect_ws_clientsm = { path = "./autoconnect/autoconnect-ws/autoconnect-ws-clientsm" }
autopush_common = { path = "./autopush-common", features = ["bigtable"] }

[profile.release]
debug = 1

0 comments on commit 2a97e67

Please sign in to comment.