Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
4ba3043
Bump flume to 0.12.0 (#4189)
opoplawski Mar 26, 2026
b3df1e5
fix(postgres): make advisory lock cancel safe (#4199)
joeydewaal Mar 26, 2026
543d751
Fix panic in JSONB decoder on invalid version byte (#4158)
jrey8343 Mar 28, 2026
0e7defa
Add SQLite extension entrypoint config to `sqlx.toml`, update SQLite …
supleed2 Mar 28, 2026
9d6bf66
sqlx-postgres: fix correct operator precedence in byte length check …
cuiweixie Mar 28, 2026
6984316
fix: use sqlite3_value_text for REGEXP to match SQLite coercion (#4203)
joaquinhuigomez Mar 30, 2026
4dc32ec
fix: replace from_utf8_unchecked with from_utf8_lossy in SqliteError …
joaquinhuigomez Apr 6, 2026
69ee0df
(Fix) Handle nullability of SQLite rowid alias columns (#4088)
Lege19 Apr 7, 2026
e72f822
Lossily coerce invalid UTF-8 in sqlite collation callback (#4219)
joaquinhuigomez Apr 7, 2026
dc12a3d
add sqlite serialize/deserialize example (#4167)
mattrighetti Apr 8, 2026
18ffed2
Fix SCRAM password `SASLprep` (#4201)
var4yn Apr 8, 2026
acd2284
fix(mysql): Work around for Issue #2206 (ColumnNotFound error when qu…
duelafn Apr 8, 2026
b6cb1e3
feat(mysql): add mysql-rsa feature for non-TLS RSA auth (#4142)
dertin Apr 8, 2026
4249cb4
fix: replace `from_utf8_unchecked` with `from_utf8` in SQLite column …
barry3406 Apr 9, 2026
b27b49d
sqlx-postgres: Make `PgNotification` struct clone (#4228)
michaelvanstraten Apr 10, 2026
9dcf2e3
chore: Update to cargo_metadata 0.23 (#4230)
tottoto Apr 13, 2026
05d4974
Change reference to dotenvy (#4233)
graemer957 Apr 13, 2026
d3a8244
fix(macros-core): update unstable proc_macro APIs for recent nightly …
barry3406 Apr 14, 2026
3945a1a
chore: Update to validator 0.20 (#4235)
tottoto Apr 14, 2026
b180eba
fix: Use correct tmp_dir in sqlx prepare error message (#4234)
Miesvanderlippe Apr 14, 2026
99af6eb
[postgres] Display line number in error message (#4118)
mousetail Apr 23, 2026
bfb8ff6
fix(postgres): use non-prepared statements for metadata queries (#4226)
abonander Apr 27, 2026
5bd5531
fix(mysql): repair caching_sha2_password fast-auth path (#4245)
altmannmarcelo Apr 28, 2026
322021f
fix(postgres): update pgpass path on windows (#4100)
joeydewaal Apr 28, 2026
c0ec9c0
fix(tls): potential deadlock in `StdSocket::poll_ready()` (#4251)
abonander Apr 28, 2026
b77ba16
chore: update to axum 0.8 (#4253)
tottoto Apr 29, 2026
d82b781
test(sqlite): add regression test for ORDER BY + LIMIT nullability (#…
barry3406 May 1, 2026
c0a3218
breaking(any+mysql): correctly convert text and blob types to `AnyTyp…
abonander May 1, 2026
9ecb76d
Unescape PostgreSQL passfile password (#3993)
V02460 May 1, 2026
db47fe3
ci: check direct minimal versions (#4173)
ricochet May 2, 2026
66533fa
Ensure Deterministic Migration Order (#4136)
aoengin May 2, 2026
45ba990
Add the possibility to skip migrations (#3846)
Dosenpfand May 2, 2026
6956cef
Prefer to give real data to `.bind()` in `README.md` (#4257)
sobolevn May 4, 2026
5a32951
Merge branch 'launchbadge/main' into sync/upstream-2026-05
pabl-o-ce May 17, 2026
be3a8e9
feat(mssql): implement Migrate::skip for skip-migrations parity
pabl-o-ce May 17, 2026
6899056
test(mssql): add integration test for Migrate::skip
pabl-o-ce May 17, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
-p sqlx-cli
--release
--no-default-features
--features mysql,postgres,sqlite,sqlx-toml
--features mysql,postgres,sqlite,sqlx-toml,mysql-rsa

- uses: actions/upload-artifact@v4
with:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/sqlx-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
timeout-minutes: 30

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup Rust
run: |
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
timeout-minutes: 30

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup Rust
run: rustup show active-toolchain || rustup toolchain install
Expand All @@ -76,7 +76,7 @@ jobs:
timeout-minutes: 30

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup Rust
run: rustup show active-toolchain || rustup toolchain install
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:
timeout-minutes: 30

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup Rust
run: rustup show active-toolchain || rustup toolchain install
Expand Down Expand Up @@ -228,7 +228,7 @@ jobs:
timeout-minutes: 30

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup Rust
run: rustup show active-toolchain || rustup toolchain install
Expand Down Expand Up @@ -322,7 +322,7 @@ jobs:
timeout-minutes: 30

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup Rust
run: |
Expand Down
Loading
Loading