chore: tag 0.12.1 (#1386)

This commit is contained in:
Ethan Donowitz 2022-08-25 17:48:01 -04:00 committed by GitHub
parent 90f1017341
commit db037d0322
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 32 additions and 8 deletions

View File

@ -1,3 +1,27 @@
<a name="0.12.1"></a>
## 0.12.1 (2022-08-25)
#### Performance
* remove unnecessary database calls for Tokenserver (#1360) ([5ed9a10c](https://github.com/mozilla-services/syncstorage-rs/commit/5ed9a10c2e854889a12de4f92deff106ec49d7d4))
#### Bug Fixes
* fix Tokenserver Spanner node query (#1383) ([edef90ca](https://github.com/mozilla-services/syncstorage-rs/commit/edef90ca4795a6bbdd1b1dcaae684671097cc335))
* fix Tokenserver node assignment query (#1382) ([9e977c71](https://github.com/mozilla-services/syncstorage-rs/commit/9e977c710ede17b3a8922b1c4a877a9dc8e93fdf))
* fix JWT library for Tokenserver load tests (#1373) ([ebf425fe](https://github.com/mozilla-services/syncstorage-rs/commit/ebf425fe268e714c03b2e64347d71d05cc938a8b), closes [#1372](https://github.com/mozilla-services/syncstorage-rs/issues/1372))
* rework Tokenserver load tests for local OAuth verification (#1357) ([8c59bb4f](https://github.com/mozilla-services/syncstorage-rs/commit/8c59bb4f80643d69a07c8656777a84ed9343e8e1))
#### Features
* improve Tokenserver errors and metrics (#1385) ([90f10173](https://github.com/mozilla-services/syncstorage-rs/commit/90f101734187e159eff686dff8f89992d12b5315))
* add `__error__` endpoint to Tokenserver (#1375) ([75231c8f](https://github.com/mozilla-services/syncstorage-rs/commit/75231c8feb996c7aa8746aeb88c9c3d428245e25), closes [#1364](https://github.com/mozilla-services/syncstorage-rs/issues/1364))
* use Actix to spawn blocking threads (#1370) ([1b1261f2](https://github.com/mozilla-services/syncstorage-rs/commit/1b1261f23eb734b52c29862c32b3441ad70e2d5f))
* tag Tokenserver's `token_verification` metric with the token type (#1359) ([dc00a8ea](https://github.com/mozilla-services/syncstorage-rs/commit/dc00a8ea20b3328c452880cea451789e7ab1f027), closes [#1358](https://github.com/mozilla-services/syncstorage-rs/issues/1358))
<a name="0.12.0"></a>
## 0.12.0 (2022-06-23)

8
Cargo.lock generated
View File

@ -3001,7 +3001,7 @@ dependencies = [
[[package]]
name = "syncstorage"
version = "0.12.0"
version = "0.12.1"
dependencies = [
"actix-cors",
"actix-http",
@ -3071,11 +3071,11 @@ dependencies = [
[[package]]
name = "syncstorage-common"
version = "0.12.0"
version = "0.12.1"
[[package]]
name = "syncstorage-db-common"
version = "0.12.0"
version = "0.12.1"
dependencies = [
"async-trait",
"backtrace",
@ -3267,7 +3267,7 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
[[package]]
name = "tokenserver-common"
version = "0.12.0"
version = "0.12.1"
dependencies = [
"actix-web",
"backtrace",

View File

@ -1,6 +1,6 @@
[package]
name = "syncstorage-common"
version = "0.12.0"
version = "0.12.1"
edition = "2021"
[dependencies]

View File

@ -1,6 +1,6 @@
[package]
name = "syncstorage-db-common"
version = "0.12.0"
version = "0.12.1"
edition = "2021"
[dependencies]

View File

@ -1,6 +1,6 @@
[package]
name = "syncstorage"
version = "0.12.0"
version = "0.12.1"
license = "MPL-2.0"
authors = [
"Ben Bangert <ben@groovie.org>",

View File

@ -1,6 +1,6 @@
[package]
name = "tokenserver-common"
version = "0.12.0"
version = "0.12.1"
edition = "2021"
[dependencies]