Skip to content

Commit 34653fa

Browse files
release v3.2.3 (#1338)
* RUST-2179 Ignore whether nodes are data-bearing when directConnection is true (#1334) * RUST-2180 Update version numbers for 3.2.3 (#1337)
1 parent 6d8cf54 commit 34653fa

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
lines changed

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ homepage = "https://www.mongodb.com/docs/drivers/rust/"
1616
license = "Apache-2.0"
1717
readme = "README.md"
1818
name = "mongodb"
19-
version = "3.2.2"
19+
version = "3.2.3"
2020

2121
exclude = [
2222
"etc/**",
@@ -72,7 +72,7 @@ tracing-unstable = ["dep:tracing", "dep:log"]
7272
async-trait = "0.1.42"
7373
base64 = "0.13.0"
7474
bitflags = "1.1.0"
75-
bson = { git = "https://github.com/mongodb/bson-rust", branch = "main", version = "2.13.0" }
75+
bson = { git = "https://github.com/mongodb/bson-rust", branch = "main", version = "2.14.0" }
7676
chrono = { version = "0.4.7", default-features = false, features = [
7777
"clock",
7878
"std",
@@ -92,7 +92,7 @@ once_cell = "1.19.0"
9292
log = { version = "0.4.17", optional = true }
9393
md-5 = "0.10.1"
9494
mongocrypt = { git = "https://github.com/mongodb/libmongocrypt-rust.git", branch = "main", optional = true, version = "0.2.1" }
95-
mongodb-internal-macros = { path = "macros", version = "3.2.2" }
95+
mongodb-internal-macros = { path = "macros", version = "3.2.3" }
9696
num_cpus = { version = "1.13.1", optional = true }
9797
openssl = { version = "0.10.38", optional = true }
9898
openssl-probe = { version = "0.1.5", optional = true }

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The driver tests against Linux, MacOS, and Windows in CI.
1818
The driver is available on [crates.io](https://crates.io/crates/mongodb). To use the driver in your application, simply add it to your project's `Cargo.toml`.
1919
```toml
2020
[dependencies]
21-
mongodb = "3.2.2"
21+
mongodb = "3.2.3"
2222
```
2323

2424
Version 1 of this crate has reached end of life and will no longer be receiving any updates or bug fixes, so all users are recommended to always depend on the latest 2.x release. See the [2.0.0 release notes](https://github.com/mongodb/mongo-rust-driver/releases/tag/v2.0.0) for migration information if upgrading from a 1.x version.
@@ -27,7 +27,7 @@ Version 1 of this crate has reached end of life and will no longer be receiving
2727
The driver also provides a blocking sync API. To enable this, add the `"sync"` feature to your `Cargo.toml`:
2828
```toml
2929
[dependencies.mongodb]
30-
version = "3.2.2"
30+
version = "3.2.3"
3131
features = ["sync"]
3232
```
3333
**Note:** The sync-specific types can be imported from `mongodb::sync` (e.g. `mongodb::sync::Client`).

macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mongodb-internal-macros"
3-
version = "3.2.2"
3+
version = "3.2.3"
44
description = "Internal macros for the mongodb crate"
55
edition = "2021"
66
license = "Apache-2.0"

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
)]
1313
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
1414
#![cfg_attr(test, type_length_limit = "80000000")]
15-
#![doc(html_root_url = "https://docs.rs/mongodb/3.2.2")]
15+
#![doc(html_root_url = "https://docs.rs/mongodb/3.2.3")]
1616

1717
#[macro_use]
1818
pub mod options;

src/sdam/description/topology/server_selection.rs

+6-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,12 @@ impl TopologyDescription {
124124
SelectionCriteria::Predicate(ref filter) => self
125125
.servers
126126
.values()
127-
.filter(|s| s.server_type.is_data_bearing() && filter(&ServerInfo::new_borrowed(s)))
127+
.filter(|s| {
128+
// If we're direct-connected or connected to a standalone, ignore whether the
129+
// single server in the topology is data-bearing.
130+
(self.topology_type == TopologyType::Single || s.server_type.is_data_bearing())
131+
&& filter(&ServerInfo::new_borrowed(s))
132+
})
128133
.collect(),
129134
};
130135

0 commit comments

Comments
 (0)