Austin Bonander
Austin Bonander
### Crate name sqlx-core ### Build failure link https://docs.rs/crate/sqlx-core/0.8.0/builds/1300456 ### Additional details The error message is misleading because we couldn't find a yanked crate in the dependencies. This is likely...
Motivated by #3177. cc @Tortoaster Instead of allowing multiple migrations sources, we could just support versioned _fixtures_, which would do exactly what you want: migrate to a specific version, run...
Reference `sqlx.toml`: https://github.com/launchbadge/sqlx/blob/sqlx-toml/sqlx-core/src/config/reference.toml Once this is implemented, I'm planning on starting an alpha release cycle for 0.9.0 so that we can test this. It's not expected to be a breaking...
Now that [macro invocations in attributes are eagerly expanded](https://doc.rust-lang.org/reference/attributes.html#meta-item-attribute-syntax), we can utilize this to replace `query_file!("")` and variants with `query!(include_str!(""))`, which also gives us the ability to resolve paths relative...
closes #3351 Breaking changes: * (low impact) renamed `PgDatabaseError::position()` to `::pg_error_position()` to not conflict with `DatabaseError::position()`. Blocked on #3364 because the `Arc`s everywhere can just be replaced with `SqlStr`.
This will allow owned `String`s (among other types) to be passed to `query()` and friends without lifetime issues. The existing requirement of a borrowed string is meant to discourage adding...
### Is there an existing issue already for your request/idea? - [X] I have searched for an existing issue, and could not find anything. I believe this is a new...
I just ran into this while working on https://github.com/launchbadge/sqlx/pull/3383 It'd be really nice to have syntax highlighting for TOML in crate docs, because I'm including a _lot_ of it. I...
I had a hell of a time figuring out how to actually filter events by target in Grafana, because it appears they're not provided as labels: https://github.com/hrxi/tracing-loki/blob/master/src/lib.rs#L241 Having dug into...