Skip to content

Merge tokio-postgres 0.7.13 #7

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 45 commits into from
Apr 29, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
6ae17e0
Release postgres v0.19.9
sfackler Sep 16, 2024
60c1182
feat: add ssl_negotiation option
sunng87 Jul 5, 2024
6a6fdb9
test: updte tests for direct tls
sunng87 Jul 6, 2024
9441ce1
feat: provide built-in functions for setting ALPN
sunng87 Jul 6, 2024
cfdc66f
refactor: pub use sslnegotiation
sunng87 Jul 6, 2024
db308ef
refactor: apply review comments
sunng87 Jul 7, 2024
331e968
chore: update postgres for ci
sunng87 Sep 27, 2024
eea7f13
Add support for cidr 0.3 under separate feature
rs-sac Oct 25, 2024
7eb6f8e
add `load_balance_hosts` to `Debug` impl for `Config`
Dec 18, 2024
d7ccc7e
Merge pull request #1195 from kamulos/master
sfackler Dec 18, 2024
76a1637
Fix time 0.3 infinity panics
allan2 Jan 20, 2025
24d3234
Fix clippy needless_lifetimes
allan2 Jan 20, 2025
7046518
Fix clippy extra_unused_lifetimes
allan2 Jan 20, 2025
b13052a
Fix for Rust 2024 match ergonomics
allan2 Jan 20, 2025
4d03ed8
Fix another needless_lifetimes
allan2 Jan 20, 2025
7490e51
Fix clippy needless_borrowed_reference
allan2 Jan 20, 2025
852ae49
Bump CI Rust version to 1.75.0
allan2 Jan 20, 2025
66622f3
Bump actions/checkout
allan2 Jan 20, 2025
07b6878
Merge pull request #1199 from allan2/ci-update-rust-version
sfackler Jan 20, 2025
0a25fd1
Empty commit (re-run CI)
allan2 Jan 20, 2025
e00ceb1
Update rand requirement from 0.8 to 0.9
dependabot[bot] Jan 28, 2025
96f2347
refactor: address review comments
sunng87 Jan 30, 2025
02463b1
chore: addressed rand 0.9's deprecations
kristof-mattei Feb 1, 2025
14a1216
fix build
sfackler Feb 2, 2025
720ffe8
fix clippy
sfackler Feb 2, 2025
c104b23
Merge pull request #1151 from sunng87/feature/ssl-negotiation
sfackler Feb 2, 2025
778611c
Merge remote-tracking branch 'origin/master' into fix-rand-0.9-deprec…
sfackler Feb 2, 2025
acd17ed
fix wasm build
sfackler Feb 2, 2025
0d18b95
bump getrandom
sfackler Feb 2, 2025
f1c5c4f
Merge pull request #1205 from kristof-mattei/fix-rand-0.9-deprecations
sfackler Feb 2, 2025
1a9abac
Merge remote-tracking branch 'origin/master' into time-overflow
sfackler Feb 2, 2025
9754f13
Revert time 0.2 change
sfackler Feb 2, 2025
924d0e5
Merge pull request #1197 from allan2/time-overflow
sfackler Feb 2, 2025
263fb90
Merge pull request #1198 from allan2/clippy
sfackler Feb 2, 2025
0785381
Merge pull request #1183 from rs-sac/upstream
sfackler Feb 2, 2025
89b91b4
Propagate features
sfackler Feb 2, 2025
bfb35b2
add docs
sfackler Feb 2, 2025
a5eaea1
fix ci
sfackler Feb 2, 2025
7ee61f3
Merge pull request #1207 from sfackler/cidr-fixes
sfackler Feb 2, 2025
14f3b9e
Release postgres-native-tls v0.5.1
sfackler Feb 2, 2025
1ed6365
Release postgres-openssl v0.5.1
sfackler Feb 2, 2025
966724c
Release postgres-protocol v0.6.8
sfackler Feb 2, 2025
43c7049
Release postgres-types v0.2.9
sfackler Feb 2, 2025
ad68abf
Release tokio-postgres v0.7.13
sfackler Feb 2, 2025
432d2ea
Merge tokio-postgres 0.7.13
aqrln Apr 25, 2025
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
Next Next commit
Release postgres v0.19.9
  • Loading branch information
sfackler committed Sep 16, 2024
commit 6ae17e0f2d174fc4d5592ac7869909d7bdd346d9
2 changes: 2 additions & 0 deletions postgres/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## v0.19.9 - 2024-09-15

### Added

* Added support for `jiff` 0.1 via the `with-jiff-01` feature.
Expand Down
4 changes: 2 additions & 2 deletions postgres/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "postgres"
version = "0.19.8"
version = "0.19.9"
authors = ["Steven Fackler <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -41,7 +41,7 @@ bytes = "1.0"
fallible-iterator = "0.2"
futures-util = { version = "0.3.14", features = ["sink"] }
log = "0.4"
tokio-postgres = { version = "0.7.11", path = "../tokio-postgres" }
tokio-postgres = { version = "0.7.12", path = "../tokio-postgres" }
tokio = { version = "1.0", features = ["rt", "time"] }

[dev-dependencies]
Expand Down