Prepare 0.5.10 release (#1603)

* fix(cli): change new `rustls` and `native-tls` features to use correct runtime feature

* chore: upgrade SQLx crates to 0.5.10, upgrade all dependencies to latest versions

chore(cli): upgraded `clap` to `3.0.0-rc.9`

* fix(tests/sqlite): ignore `issue_1467()` as spuriously failing

I'm well aware of the principle that a spuriously failing test is a failing test, but even though I have it outputting the seed used with a reproducible PRNG, I can't reproduce the failures locally, so 🤷.

* chore: add CHANGELOG entry for 0.5.10
This commit is contained in:
Austin Bonander
2021-12-29 17:25:49 -08:00
committed by GitHub
parent aa40f5fe5d
commit fdbfc5dfc3
11 changed files with 522 additions and 529 deletions

View File

@@ -599,7 +599,11 @@ async fn row_dropped_after_connection_doesnt_panic() {
}
// note: to repro issue #1467 this should be run in release mode
// May spuriously fail with UNIQUE constraint failures (which aren't relevant to the original issue)
// which I have tried to reproduce using the same seed as printed from CI but to no avail.
// It may be due to some nondeterminism in SQLite itself for all I know.
#[sqlx_macros::test]
#[ignore]
async fn issue_1467() -> anyhow::Result<()> {
let mut conn = SqliteConnectOptions::new()
.filename(":memory:")