Skip to content

Commit 2d2da49

Browse files
CSHARP-2853: Remove [Beta] flags.
1 parent 2f936cf commit 2d2da49

File tree

19 files changed

+61
-63
lines changed

19 files changed

+61
-63
lines changed

Docs/reference/content/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ type = "index"
99

1010
The [Getting Started]({{< relref "getting_started\index.md" >}}) guide contains information about system requirements, installation, and a simple tutorial to get up and running quickly.
1111

12-
## What's new in 2.10.0-beta1
12+
## What's new in 2.10.0
1313

1414
The [What's New]({{< relref "what_is_new.md" >}}) section contains the major new features of the driver.
1515

Docs/reference/content/reference/driver/crud/client_side_encryption.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@ unauthorized parties, including server administrators, cannot read the encrypted
2222
data.
2323

2424
{{% note class="important" %}}
25-
Support for client-side field level encryption is in beta, and the beta only
26-
supports Windows. Backwards-breaking changes may be made before the
27-
final release (which will support MacOS and Linux).
25+
Client-side field level encryption is supported only on Windows.
2826
{{% /note %}}
2927

3028
## mongocryptd configuration

Docs/reference/content/upgrading.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ title = "Upgrading"
1111

1212
## Breaking Changes
1313

14-
There should be no breaking changes in version 2.10.0-beta1 of the driver.
14+
There should be no breaking changes in version 2.10.0 of the driver.

Docs/reference/content/what_is_new.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ title = "What's New"
88
pre = "<i class='fa fa-star'></i>"
99
+++
1010

11-
## What's New in 2.10.0-beta1
11+
## What's New in 2.10.0
1212

13-
Some of the changes in 2.10.0-beta1 include:
13+
Some of the changes in 2.10.0 include:
1414

1515
* [Client-side field level encryption support]({{< relref "reference\driver\crud\client_side_encryption.md" >}}) for Windows
1616

src/MongoDB.Bson/ObjectModel/BsonBinarySubType.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public enum BsonBinarySubType
5151
/// </summary>
5252
MD5 = 0x05,
5353
/// <summary>
54-
/// [Beta] Encrypted binary data.
54+
/// Encrypted binary data.
5555
/// </summary>
5656
Encrypted = 0x06,
5757
/// <summary>

src/MongoDB.Driver.Core/Core/Clusters/CryptClientCreator.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@
2424
namespace MongoDB.Driver.Core.Clusters
2525
{
2626
/// <summary>
27-
/// [Beta] Represents a creator for CryptClient.
27+
/// Represents a creator for CryptClient.
2828
/// </summary>
2929
public sealed class CryptClientCreator
3030
{
3131
#region static
3232
#pragma warning disable 3002
3333
/// <summary>
34-
/// [Beta] Create a CryptClient instance.
34+
/// Create a CryptClient instance.
3535
/// </summary>
3636
/// <param name="kmsProviders">The kms providers.</param>
3737
/// <param name="schemaMap">The schema map.</param>

src/MongoDB.Driver.Core/Core/Clusters/ICluster.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public interface ICluster : IDisposable
6868
ICoreServerSession AcquireServerSession();
6969

7070
/// <summary>
71-
/// [Beta] Gets the crypt client.
71+
/// Gets the crypt client.
7272
/// </summary>
7373
/// <returns>A crypt client.</returns>
7474
#pragma warning disable CS3003

src/MongoDB.Driver.Core/Core/Configuration/ClusterSettings.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,13 @@ public class ClusterSettings
5252
/// </summary>
5353
/// <param name="connectionMode">The connection mode.</param>
5454
/// <param name="endPoints">The end points.</param>
55-
/// <param name="kmsProviders">[Beta] The kms providers.</param>
55+
/// <param name="kmsProviders">The kms providers.</param>
5656
/// <param name="maxServerSelectionWaitQueueSize">Maximum size of the server selection wait queue.</param>
5757
/// <param name="replicaSetName">Name of the replica set.</param>
5858
/// <param name="serverSelectionTimeout">The server selection timeout.</param>
5959
/// <param name="preServerSelector">The pre server selector.</param>
6060
/// <param name="postServerSelector">The post server selector.</param>
61-
/// <param name="schemaMap">[Beta] The schema map.</param>
61+
/// <param name="schemaMap">The schema map.</param>
6262
/// <param name="scheme">The connection string scheme.</param>
6363
public ClusterSettings(
6464
Optional<ClusterConnectionMode> connectionMode = default(Optional<ClusterConnectionMode>),
@@ -108,7 +108,7 @@ public IReadOnlyList<EndPoint> EndPoints
108108
}
109109

110110
/// <summary>
111-
/// [Beta] Gets the kms providers.
111+
/// Gets the kms providers.
112112
/// </summary>
113113
/// <value>
114114
/// The kms providers.
@@ -141,7 +141,7 @@ public string ReplicaSetName
141141
}
142142

143143
/// <summary>
144-
/// [Beta] Gets the schema map.
144+
/// Gets the schema map.
145145
/// </summary>
146146
/// <value>
147147
/// The schema map.
@@ -201,13 +201,13 @@ public IServerSelector PostServerSelector
201201
/// </summary>
202202
/// <param name="connectionMode">The connection mode.</param>
203203
/// <param name="endPoints">The end points.</param>
204-
/// <param name="kmsProviders">[Beta] The kms providers.</param>
204+
/// <param name="kmsProviders">The kms providers.</param>
205205
/// <param name="maxServerSelectionWaitQueueSize">Maximum size of the server selection wait queue.</param>
206206
/// <param name="replicaSetName">Name of the replica set.</param>
207207
/// <param name="serverSelectionTimeout">The server selection timeout.</param>
208208
/// <param name="preServerSelector">The pre server selector.</param>
209209
/// <param name="postServerSelector">The post server selector.</param>
210-
/// <param name="schemaMap">[Beta] The schema map.</param>
210+
/// <param name="schemaMap">The schema map.</param>
211211
/// <param name="scheme">The connection string scheme.</param>
212212
/// <returns>A new ClusterSettings instance.</returns>
213213
public ClusterSettings With(

src/MongoDB.Driver.Core/Core/WireProtocol/IBinaryCommandFieldEncryptor.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
namespace MongoDB.Driver.Core.WireProtocol
2020
{
2121
/// <summary>
22-
/// [Beta] Interface for decrypting fields in a binary document.
22+
/// Interface for decrypting fields in a binary document.
2323
/// </summary>
2424
public interface IBinaryCommandFieldEncryptor
2525
{
2626
/// <summary>
27-
/// [Beta] Encrypts the fields.
27+
/// Encrypts the fields.
2828
/// </summary>
2929
/// <param name="databaseName">The database name.</param>
3030
/// <param name="unencryptedCommandBytes">The unencrypted command bytes.</param>
@@ -33,7 +33,7 @@ public interface IBinaryCommandFieldEncryptor
3333
byte[] EncryptFields(string databaseName, byte[] unencryptedCommandBytes, CancellationToken cancellationToken);
3434

3535
/// <summary>
36-
/// [Beta] Encrypts the fields asynchronously.
36+
/// Encrypts the fields asynchronously.
3737
/// </summary>
3838
/// <param name="databaseName">The database name.</param>
3939
/// <param name="unencryptedCommandBytes">The unencrypted command bytes.</param>

src/MongoDB.Driver.Core/Core/WireProtocol/IBinaryDocumentFieldDecryptor.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,20 @@
1919
namespace MongoDB.Driver.Core.WireProtocol
2020
{
2121
/// <summary>
22-
/// [Beta] Interface for decrypting fields in a binary document.
22+
/// Interface for decrypting fields in a binary document.
2323
/// </summary>
2424
public interface IBinaryDocumentFieldDecryptor
2525
{
2626
/// <summary>
27-
/// [Beta] Decrypts the fields.
27+
/// Decrypts the fields.
2828
/// </summary>
2929
/// <param name="encryptedDocumentBytes">The encrypted document bytes.</param>
3030
/// <param name="cancellationToken">The cancellation token.</param>
3131
/// <returns>An unencrypted document.</returns>
3232
byte[] DecryptFields(byte[] encryptedDocumentBytes, CancellationToken cancellationToken);
3333

3434
/// <summary>
35-
/// [Beta] Decrypts the fields asynchronously.
35+
/// Decrypts the fields asynchronously.
3636
/// </summary>
3737
/// <param name="encryptedDocumentBytes">The encrypted document bytes.</param>
3838
/// <param name="cancellationToken">The cancellation token.</param>

0 commit comments

Comments
 (0)