Skip to content

Commit bc3030d

Browse files
committed
Added TlsChannelStreamFactoryFactory type alias
1 parent 960b6db commit bc3030d

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

docs/reference/content/changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Changes between released versions
1414
* Updated MongoDB Driver Async to 3.10.0
1515
* Support Skipping in GridFS [SCALA-477](https://jira.mongodb.org/browse/SCALA-477)
1616
* Support running commands as aggregation [SCALA-481](https://jira.mongodb.org/browse/SCALA-481)
17+
* The driver now natively supports TLS/SSL without netty [JAVA-3100](https://jira.mongodb.org/browse/JAVA-3100)
1718

1819
### 2.5.0
1920
* Updated MongoDB Driver Async to 3.9.0

driver/src/main/scala/org/mongodb/scala/connection/package.scala

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,4 +82,11 @@ package object connection {
8282
* @since 2.2
8383
*/
8484
type NettyStreamFactoryFactoryBuilder = com.mongodb.connection.netty.NettyStreamFactoryFactory.Builder
85+
86+
/**
87+
* A `StreamFactoryFactory` that supports TLS/SSL.
88+
*
89+
* @since 2.6
90+
*/
91+
type TlsChannelStreamFactoryFactory = com.mongodb.connection.TlsChannelStreamFactoryFactory
8592
}

0 commit comments

Comments
 (0)