File tree 2 files changed +14
-8
lines changed
2 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## v0.19.6 - 2023-08-19
4
+
5
+ ### Added
6
+
7
+ * Added support for the ` hostaddr ` config option to bypass DNS lookups.
8
+ * Added support for the ` load_balance_hosts ` config option to randomize connection ordering.
9
+ * The ` user ` config option now defaults to the executing process's user.
10
+
3
11
## v0.19.5 - 2023-03-27
4
12
5
- ## Added
13
+ ### Added
6
14
7
15
* Added ` keepalives_interval ` and ` keepalives_retries ` config options.
8
16
* Added the ` tcp_user_timeout ` config option.
9
17
* Added ` RowIter::rows_affected ` .
10
18
11
- ## Changed
19
+ ### Changed
12
20
13
21
* Passing an incorrect number of parameters to a query method now returns an error instead of panicking.
14
22
15
23
## v0.19.4 - 2022-08-21
16
24
17
- ## Added
25
+ ### Added
18
26
19
27
* Added ` ToSql ` and ` FromSql ` implementations for ` [u8; N] ` via the ` array-impls ` feature.
20
28
* Added support for ` smol_str ` 0.1 via the ` with-smol_str-01 ` feature.
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " postgres"
3
- version = " 0.19.5 "
3
+ version = " 0.19.6 "
4
4
authors = [
" Steven Fackler <[email protected] >" ]
5
5
edition = " 2018"
6
6
license = " MIT/Apache-2.0"
@@ -39,11 +39,9 @@ with-time-0_3 = ["tokio-postgres/with-time-0_3"]
39
39
bytes = " 1.0"
40
40
fallible-iterator = " 0.2"
41
41
futures-util = { version = " 0.3.14" , features = [" sink" ] }
42
- tokio-postgres = { version = " 0.7.8" , path = " ../tokio-postgres" }
43
-
44
- tokio = { version = " 1.0" , features = [" rt" , " time" ] }
45
42
log = " 0.4"
43
+ tokio-postgres = { version = " 0.7.9" , path = " ../tokio-postgres" }
44
+ tokio = { version = " 1.0" , features = [" rt" , " time" ] }
46
45
47
46
[dev-dependencies ]
48
47
criterion = " 0.5"
49
- tokio = { version = " 1.0" , features = [" rt-multi-thread" ] }
You can’t perform that action at this time.
0 commit comments