Frank Elsinga
fd4cb99fc7
chore(examples):Migrated the pg-chat example to ratatui ( #3385 )
...
* migrated the pg-chat example to ratatui
* fixed formatting mistake
2024-07-29 04:35:27 -07:00
Frank Elsinga
49d5dd7f42
bumped to libsqlite3-sys=0.30.1
( #3382 )
2024-07-27 17:59:00 -07:00
Frank Elsinga
e089d2fb55
bumped cargo_metadata to v0.18.1
( #3386 )
2024-07-27 16:19:26 -07:00
tottoto
4ce181f869
chore: replace structopt with clap in examples ( #3380 )
2024-07-27 02:51:20 -07:00
Yuta Kobayashi
f2fea27cba
Fix encoding and decoding of MySQL enums in sqlx::Type
( #3371 )
2024-07-25 02:47:36 -07:00
Austin Bonander
da0ffd7dcf
chore: bump version to 0.8.0
2024-07-22 18:36:35 -07:00
Frank Elsinga
b37b34bd04
chore:added a testcase for sqlx migrate add ...
( #3352 )
2024-07-19 18:50:18 -07:00
Austin Bonander
16e3f1025a
fix(postgres): add missing type resolution for arrays by name
2024-07-08 00:14:19 -07:00
Filip Gospodinov
5d6c33ed65
bump rustls to 0.21.11 ( #3216 )
...
This fixes security issue RUSTSEC-2024-0336 [1].
[1] https://rustsec.org/advisories/RUSTSEC-2024-0336
2024-04-26 16:26:52 -07:00
BlackSoulHub
6a4f61e3b3
Update time to 0.3.36 ( #3190 )
...
* update time to 0.3.35
* fmt fix
* update version to 0.3.36
2024-04-11 19:26:12 -07:00
Gnome!
3e7aa6bedf
Bump deps that do not need code changes ( #3165 )
2024-04-06 00:07:36 -07:00
Paolo Barbolini
e0a72cf8f2
Drop urlencoding dependency ( #3162 )
2024-03-30 16:17:04 -07:00
Jesse Wang
936744dfd6
Fix describe on PostgreSQL views with rules ( #2736 )
...
* fix postgres describe on multiple explains
* inline the first explain using smallvec
* fix: regenerate `Cargo.lock`
---------
Co-authored-by: Austin Bonander <austin.bonander@gmail.com>
2024-03-14 12:05:44 -07:00
Luiz Carvalho
8f926e590c
refac: rebase syn 2 changes
2024-03-14 12:03:40 -07:00
Austin Bonander
248d6170a7
chore: prepare 0.7.4 release
2024-03-11 22:01:04 -07:00
Rafael Guerreiro
e8fc35a5a4
Remove sha1 because it's not being used in postgres
2024-03-05 18:10:33 -08:00
Matt Fellenz
b615d2a826
Use create_new
instead of atomic-file-write
( #2914 )
...
* Use `create_new` instead of `atomic-file-write`
This provides the same functionality but without temporary files, platform-specific code, fragility of `O_TMPFILE` support, and an extra dependency.
* Properly handle acceptable failure cases
* Consider `PermissionDenied` as acceptable
Apparently this can occur on Windows.
---------
Co-authored-by: Austin Bonander <austin.bonander@gmail.com>
2024-02-24 01:49:51 -08:00
iamjpotts
235604fbce
chore(dev-deps): Upgrade env_logger from 0.9 to 0.11 ( #3009 )
...
Signed-off-by: Joshua Potts <8704475+iamjpotts@users.noreply.github.com>
2024-01-25 23:30:25 -08:00
iamjpotts
3946cc82db
chore(deps): Upgrade criterion to 0.5.1 ( #3010 )
...
Signed-off-by: Joshua Potts <8704475+iamjpotts@users.noreply.github.com>
2024-01-25 23:30:14 -08:00
iamjpotts
5890afe95b
chore(deps): Replace unmaintained tempdir crate with tempfile ( #3006 )
...
Signed-off-by: Joshua Potts <8704475+iamjpotts@users.noreply.github.com>
2024-01-22 20:16:06 -08:00
takenoko-gohan
609fcc33e3
Update ahash to 0.8.7 ( #2996 )
2024-01-17 19:15:51 -08:00
Josh Triplett
a5c1cd021c
sqlx-core: Remove dotenvy dependency
...
sqlx-core doesn't use dotenvy. Removing it means that users who only
depend on sqlx with sqlite and default-feature = false don't need it.
2024-01-14 21:56:54 -08:00
Vraj Shah
e214a08ede
Fixed docs
2023-11-25 10:11:00 -05:00
Austin Bonander
31d402b469
chore: prepare 0.7.3 release
2023-11-22 17:43:46 -08:00
Vraj Shah
fda415927a
Sqlx Cli: Added force flag to drop database for postgres ( #2873 )
...
* Updated ahash so it can compile on mac
* Updated MigrateDatabase Trait + related functions
* Postgres force drop database flag impl
* Update migrate.rs
* Reverted MigrateDatabase Trait
* Update migrate.rs
* Update migrate.rs
* Added force drop database fn impl
* Add Migrate Error
* Fixed changed function name
2023-11-21 11:11:08 -08:00
Dirkjan Ochtman
068ea14665
chore: bump some sqlx-core dependencies ( #2826 )
...
* chore: update Cargo.lock
* chore: avoid deprecated chrono API
* chore: avoid deprecated rustls API
* chore: bump webpki-roots to 0.25
* chore: remove unused generic-array dependency
2023-10-23 15:19:55 -07:00
Gregor Giesen
54c5d6bc3c
derive FromRow: sqlx(default) for all fields ( #2801 )
...
* derive FromRow: sqlx(default) for all fields
* error in test_struct_default fixed
* derive FromRow: struct level sqlx(default) requires and uses Default implementation
* Update sqlx-core/src/from_row.rs
Co-authored-by: Austin Bonander <austin.bonander@gmail.com>
* Update sqlx-core/src/from_row.rs
Co-authored-by: Austin Bonander <austin.bonander@gmail.com>
* satify cargo fmt
---------
Co-authored-by: Austin Bonander <austin.bonander@gmail.com>
2023-10-17 16:13:40 -07:00
Uttarayan Mondal
b85b72355e
[fix] Urlencode when passing filenames to sqlite3 ( #2655 )
2023-10-17 11:44:25 -07:00
Austin Bonander
58cb18a47a
fix: correct decoding of rust_decimal::Decimal
for high-precision values ( #2820 )
...
also fixes handling of feature flags
2023-10-16 14:03:28 -07:00
Adriano Di Luzio
6bec8574d4
Remove unused remove_dir_all
crate ( #2757 )
2023-09-25 18:01:56 -07:00
Adam Cigánek
c2c2b9a7ed
Bump flume to v0.11.0 ( #2384 ) ( #2750 )
2023-09-21 17:48:28 -07:00
Ameer Ghani
84f21e99ef
cli: add --target-version CLI flags for migrate run/revert ( #2538 )
...
* cli: add --target-version CLI flags for migrate run/revert
* cli: fix broken test
* cli: test harness for `sqlx migrate` along with --target-version tests
* cli: Fail if version supplied to run/revert is too old/new
After some discussion with my coworkers, we thought about the behavior a bit more:
The behavior is now that for a run, if the provided version is too old, the CLI
will return with failure rather than being a no-op. This gives feedback to the
operator instead of being quiet.
It is still valid to up/downgrade to the latest version, this will still be a no-op
to allow for idempotency.
2023-07-31 12:49:53 -07:00
Joakim Malmberg
8cad54cc9f
Add postgres chat exmaple ( #2577 )
...
Co-authored-by: Stephen <webmaster@scd31.com>
2023-07-24 16:09:06 -07:00
Austin Bonander
c70cfaf035
prepare 0.7.1 release ( #2621 )
2023-07-14 17:24:52 -07:00
Jon Heinritz
8b223e24d3
Update clap to v4.3.10 ( #2576 )
2023-07-09 13:13:43 -07:00
Paolo Barbolini
a87a871913
Bump webpki-roots to v0.24 ( #2597 )
2023-07-08 12:42:32 -07:00
Austin Bonander
dcb58b0e2c
0.7.0 release ( #2575 )
...
* WIP preparing 0.7.0 release
* fix: re-enable examples
* fix doctests in `sqlx-core`
* cherry-pick CHANGELOG entry for 0.6.3
* add actions workflow for examples
* fix(cli): close connection after running migrations
* fix examples
* fix(sqlite): fix parsing of URLs via `Any`
* fix(example): don't let Postgres `listen` example run forever
* fix Postgres `transaction` example
2023-07-03 14:37:37 -07:00
Jon Heinritz
1b7631eddc
Add CLI autocompletion using clap_complete ( #2559 )
2023-06-30 14:59:35 -07:00
Paolo Barbolini
8c7f541324
Update rsa to 0.9 ( #2563 )
2023-06-30 14:10:02 -07:00
Paolo Barbolini
37fdc2043b
Update bitflags to v2 ( #2564 )
2023-06-30 12:34:33 -07:00
Paolo Barbolini
713da5b7b0
Bump indexmap and ahash ( #2565 )
2023-06-30 12:32:46 -07:00
Wesley Norris
d750f28ef0
Bump mac_address to 1.1.5 ( #2515 )
2023-06-12 12:44:55 -07:00
Austin Bonander
253d8c9f69
0.7.0-alpha.3 release
2023-05-11 16:49:24 -07:00
Mauro D
af0f04a108
Bump to libsqlite3-sys 0.26 ( #2496 )
2023-05-11 15:43:52 -07:00
tyrelr
0dfebb202f
Add and improve sqlite describe performance benchmarks ( #2467 )
...
* add basic describe benchmarks
* separate memory from query state
* move branch tracking & deduplication logic into a dedicated BranchList class
* Convert to using IntMap
* move intmap to a separate module, drop dead code, clean up function names
* Update Cargo.lock
* skip branches to check foreign keys, as they generally shouldn't impact query result type
2023-05-08 12:44:28 -07:00
Utkarsh Gupta
003878698e
chore(sqlx-postgres): replace dirs
with home
& etcetera
( #2485 )
2023-05-04 13:12:54 -07:00
Austin Bonander
aa6c6d9752
fix(docs): update README for 0.7.0, note alpha cycle
2023-03-16 17:03:14 -07:00
Coda Hale
bce16a5c1d
fix: drop old time 0.1.44 dep
...
chrono 0.4's default features include the `oldtime` feature which pulls in time 0.1.44.
This is an unmaintained version with soundness issues (time-rs/time#293 ) and is rarely needed.
If downstream users require this dependency, they can enable the feature themselves.
2023-03-14 18:07:52 -07:00
Sergei Ivankov
21c2660062
Disable rustls crate logging feature by default
2023-03-01 19:17:35 -08:00
Craig Bester
96c8b12485
feat(prepare): move to one-file-per-query for offline mode
...
Co-authored-by: Jonas Platte <jonas@lumeo.com>
2023-03-01 19:17:21 -08:00