diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c3a4c48..c78e2456 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,46 @@ + +## 1.72.2 (2024-12-17) + + +#### Features + +* Call out the "RESOURCE_EXHAUSTED" error metric (#808) ([ebc5704b](https://github.com/mozilla-services/autopush-rs/commit/ebc5704b39d8c20b81199a6e5da49b45b5eac3dd)) +* Containerize integration tests. (#809) ([f8763040](https://github.com/mozilla-services/autopush-rs/commit/f8763040772c9b55e95e3bea8b3a5284df50bdaa)) +* Move BT chunk processing into retry (#806) ([7edbcc76](https://github.com/mozilla-services/autopush-rs/commit/7edbcc76a2d46a9aea401de5abd4bebcba4fdd28)) +* Containerize integration tests. ([11710e11](https://github.com/mozilla-services/autopush-rs/commit/11710e11a359d3b1ba015073c9f1bad433586282)) + +#### Doc + +* **test:** update test strategy to include links to metrics (#810) ([8cda9ac1](https://github.com/mozilla-services/autopush-rs/commit/8cda9ac19cadf43764ae392b3450f865ea8444ed)) + + + + +## 1.72.1 (2024-11-21) + + +#### Bug Fixes + +* Address insecure sub header fetch. (#803) ([53d90aa9](https://github.com/mozilla-services/autopush-rs/commit/53d90aa9c15a58b6878be854622e058c98c56b21)) +* Do not return status 200 for router messages (#801) ([a3d23013](https://github.com/mozilla-services/autopush-rs/commit/a3d230131a02a29c1a91a5125192540361b7593d), closes [#800](https://github.com/mozilla-services/autopush-rs/issues/800)) + +#### Chore + +* update actix-ws to 0.3 (#799) ([6141a905](https://github.com/mozilla-services/autopush-rs/commit/6141a9052a5b6e8054d5bcd9acbb2152b82ee081)) +* **deps-dev:** bump werkzeug from 3.0.3 to 3.0.6 in /tests (#790) ([50ab4a01](https://github.com/mozilla-services/autopush-rs/commit/50ab4a01ee9980208a8f3b856146ca1747998906)) +* **load:** update scripts to use artifact registry (#792) ([d64178f4](https://github.com/mozilla-services/autopush-rs/commit/d64178f478d2b333c6c785448c94bb30004d153d)) +* **notification-tests:** specify platform linux/amd64 in docker-compose.yml so that Docker knows to use an emulation layer when running on an arm based machine ([ae303044](https://github.com/mozilla-services/autopush-rs/commit/ae303044ba8d3ee77493a0541f318aac56c122b5)) + +#### Refactor + +* **integration:** replace pytest.skip with pytest markers (#798) ([84f1fe8e](https://github.com/mozilla-services/autopush-rs/commit/84f1fe8eb863d802d20ae9ff321d78b4aabaf303)) + +#### Features + +* Add database tracking and report for Push Reliability (#769) ([e95063cc](https://github.com/mozilla-services/autopush-rs/commit/e95063cc0fba45bc961cac8a665cdc0fa4008546)) + + + ## 1.72.0 (2024-10-11) diff --git a/Cargo.lock b/Cargo.lock index a84b468c..a934c02e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -569,7 +569,7 @@ checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" [[package]] name = "autoconnect" -version = "1.72.0" +version = "1.72.2" dependencies = [ "actix", "actix-cors", @@ -616,7 +616,7 @@ dependencies = [ [[package]] name = "autoconnect_common" -version = "1.72.0" +version = "1.72.2" dependencies = [ "actix-web", "autopush_common", @@ -637,7 +637,7 @@ dependencies = [ [[package]] name = "autoconnect_settings" -version = "1.72.0" +version = "1.72.2" dependencies = [ "autoconnect_common", "autopush_common", @@ -657,7 +657,7 @@ dependencies = [ [[package]] name = "autoconnect_web" -version = "1.72.0" +version = "1.72.2" dependencies = [ "actix-codec", "actix-http", @@ -685,7 +685,7 @@ dependencies = [ [[package]] name = "autoconnect_ws" -version = "1.72.0" +version = "1.72.2" dependencies = [ "actix-http", "actix-rt", @@ -711,7 +711,7 @@ dependencies = [ [[package]] name = "autoconnect_ws_sm" -version = "1.72.0" +version = "1.72.2" dependencies = [ "actix-rt", "actix-web", @@ -735,7 +735,7 @@ dependencies = [ [[package]] name = "autoendpoint" -version = "1.72.0" +version = "1.72.2" dependencies = [ "a2", "actix-cors", @@ -789,7 +789,7 @@ dependencies = [ [[package]] name = "autopush_common" -version = "1.72.0" +version = "1.72.2" dependencies = [ "actix-rt", "actix-web", diff --git a/Cargo.toml b/Cargo.toml index a6639462..c6f5c184 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ members = [ resolver = "2" [workspace.package] -version = "1.72.0" +version = "1.72.2" authors = [ "Ben Bangert ", "JR Conlin ",