Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Release the entire workspace#1273

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
paolobarbolini merged 7 commits intomasterfrompaolobarbolini/release
Sep 25, 2025
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
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
15 changes: 15 additions & 0 deletionspostgres-derive/CHANGELOG.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
# Change Log

## v0.4.7 - 2025-09-25

### Added

* Added support for nested domains containing composite types to `FromSql`

### Fixed

* Added `dyn` keyword to boxed trait objects.

### Changed

* Updated repository links to use `rust-postgres` organization.
* Upgraded to Rust 2021 edition.

## v0.4.6 - 2024-09-15

### Changed
Expand Down
2 changes: 1 addition & 1 deletionpostgres-derive/Cargo.toml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
[package]
name = "postgres-derive"
version = "0.4.6"
version = "0.4.7"
authors = ["Steven Fackler <sfackler@palantir.com>"]
license = "MIT OR Apache-2.0"
edition = "2021"
Expand Down
7 changes: 7 additions & 0 deletionspostgres-native-tls/CHANGELOG.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
# Change Log

## v0.5.2 - 2025-09-25

### Changed

* Updated repository links to use `rust-postgres` organization.
* Upgraded to Rust 2021 edition.

## v0.5.1 - 2025-02-02

### Added
Expand Down
4 changes: 2 additions & 2 deletionspostgres-native-tls/Cargo.toml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
[package]
name = "postgres-native-tls"
version = "0.5.1"
version = "0.5.2"
authors = ["Steven Fackler <sfackler@gmail.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand All@@ -17,7 +17,7 @@ runtime = ["tokio-postgres/runtime"]
native-tls = { version = "0.2", features = ["alpn"] }
tokio = "1.0"
tokio-native-tls = "0.3"
tokio-postgres = { version = "0.7.11", path = "../tokio-postgres", default-features = false }
tokio-postgres = { version = "0.7.14", path = "../tokio-postgres", default-features = false }

[dev-dependencies]
futures-util = { version = "0.3", default-features = false }
Expand Down
7 changes: 7 additions & 0 deletionspostgres-openssl/CHANGELOG.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
#Change Log

##v0.5.2 - 2025-09-25

###Changed

* Updated repository links to use`rust-postgres` organization.
* Upgraded to Rust 2021 edition.

##v0.5.1 - 2025-02-02

###Added
Expand Down
4 changes: 2 additions & 2 deletionspostgres-openssl/Cargo.toml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
[package]
name = "postgres-openssl"
version = "0.5.1"
version = "0.5.2"
authors = ["Steven Fackler <sfackler@gmail.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand All@@ -17,7 +17,7 @@ runtime = ["tokio-postgres/runtime"]
openssl = "0.10"
tokio = "1.0"
tokio-openssl = "0.6"
tokio-postgres = { version = "0.7.11", path = "../tokio-postgres", default-features = false }
tokio-postgres = { version = "0.7.14", path = "../tokio-postgres", default-features = false }

[dev-dependencies]
futures-util = { version = "0.3", default-features = false }
Expand Down
7 changes: 7 additions & 0 deletionspostgres-protocol/CHANGELOG.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
# Change Log

## v0.6.9 - 2025-09-25

### Changed

* Updated repository links to use `rust-postgres` organization.
* Upgraded to Rust 2021 edition.

## v0.6.8 - 2025-02-02

### Changed
Expand Down
2 changes: 1 addition & 1 deletionpostgres-protocol/Cargo.toml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
[package]
name = "postgres-protocol"
version = "0.6.8"
version = "0.6.9"
authors = ["Steven Fackler <sfackler@gmail.com>"]
edition = "2021"
description = "Low level Postgres protocol APIs"
Expand Down
15 changes: 14 additions & 1 deletionpostgres-types/CHANGELOG.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
# Change Log

## Unreleased
## v0.2.10 - 2025-09-25

### Added

* Added support for `jiff` v0.2.
* Added support for `bit-vec` versions v0.7 and v0.8.
* Added `Serialize` and `Deserialize` impls for `Json` type.

### Changed

* Updated GitHub repository links to `rust-postgres` organization.
* Switched from `serde` to `serde_core` dependency.
* Upgraded to Rust 2021 edition.
* Improved `-Zminimal-versions` support.

## v0.2.9 - 2025-02-02

Expand Down
6 changes: 3 additions & 3 deletionspostgres-types/Cargo.toml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
[package]
name = "postgres-types"
version = "0.2.9"
version = "0.2.10"
authors = ["Steven Fackler <sfackler@gmail.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand DownExpand Up@@ -37,8 +37,8 @@ with-time-0_3 = ["time-03"]
[dependencies]
bytes = "1.0"
fallible-iterator = "0.2"
postgres-protocol = { version = "0.6.8", path = "../postgres-protocol" }
postgres-derive = { version = "0.4.6", optional = true, path = "../postgres-derive" }
postgres-protocol = { version = "0.6.9", path = "../postgres-protocol" }
postgres-derive = { version = "0.4.7", optional = true, path = "../postgres-derive" }

array-init = { version = "2", optional = true }
bit-vec-06 = { version = "0.6", package = "bit-vec", optional = true }
Expand Down
12 changes: 11 additions & 1 deletionpostgres/CHANGELOG.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
# Change Log

## Unreleased
## v0.19.11 - 2025-09-25

### Added

* Added support for `jiff` v0.2.
* Added support for `bit-vec` versions v0.7 and v0.8.

### Changed

* Updated repository links to use `rust-postgres` organization.
* Upgraded to Rust 2021 edition.

## v0.19.10 - 2025-02-02

Expand Down
4 changes: 2 additions & 2 deletionspostgres/Cargo.toml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
[package]
name = "postgres"
version = "0.19.10"
version = "0.19.11"
authors = ["Steven Fackler <sfackler@gmail.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand DownExpand Up@@ -44,7 +44,7 @@ bytes = "1.0"
fallible-iterator = "0.2"
futures-util = { version = "0.3.14", features = ["sink"] }
log = "0.4"
tokio-postgres = { version = "0.7.13", path = "../tokio-postgres" }
tokio-postgres = { version = "0.7.14", path = "../tokio-postgres" }
tokio = { version = "1.0", features = ["rt", "time"] }

[dev-dependencies]
Expand Down
21 changes: 20 additions & 1 deletiontokio-postgres/CHANGELOG.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,25 @@
# Change Log

## Unreleased
## v0.7.14 - 2025-09-25

### Added

* Added support for `jiff` v0.2.
* Added support for `bit-vec` versions v0.7 and v0.8.
* Re-exported `fallible-iterator`
* Expose sync rollback as a private API method

### Fixes

* Changed `set_tcp_user_timeout` to only be called when enabled

### Changed

* Updated repository links to use `rust-postgres` organization.
* Upgraded to Rust 2021 edition.
* Upgraded `phf` to v0.13
* Upgraded `socket2` to v0.6
* Disabled default features of `futures-util`

## v0.7.13 - 2025-02-02

Expand Down
6 changes: 3 additions & 3 deletionstokio-postgres/Cargo.toml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
[package]
name = "tokio-postgres"
version = "0.7.13"
version = "0.7.14"
authors = ["Steven Fackler <sfackler@gmail.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand DownExpand Up@@ -58,8 +58,8 @@ parking_lot = "0.12"
percent-encoding = "2.0"
pin-project-lite = "0.2.11"
phf = "0.13"
postgres-protocol = { version = "0.6.8", path = "../postgres-protocol" }
postgres-types = { version = "0.2.9", path = "../postgres-types" }
postgres-protocol = { version = "0.6.9", path = "../postgres-protocol" }
postgres-types = { version = "0.2.10", path = "../postgres-types" }
tokio = { version = "1.27", features = ["io-util"] }
tokio-util = { version = "0.7", features = ["codec"] }
rand = "0.9.0"
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp