Skip to content

Remove "Public Technical Preview" from Queryable Encryption Equality … #1132

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

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from 2 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
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ ext {
zstdVersion = '1.5.5-2'
awsSdkV2Version = '2.18.9'
awsSdkV1Version = '1.12.337'
mongoCryptVersion = '1.8.0-alpha1'
mongoCryptVersion = '1.8.0'
projectReactorVersion = '2022.0.0'
junitBomVersion = '5.8.2'
gitVersion = getGitVersion()
Expand Down
6 changes: 2 additions & 4 deletions driver-core/src/main/com/mongodb/AutoEncryptionSettings.java
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,6 @@ public Builder bypassAutoEncryption(final boolean bypassAutoEncryption) {
* @since 4.7
* @mongodb.server.release 7.0
*/
@Beta(Beta.Reason.SERVER)
public Builder encryptedFieldsMap(final Map<String, BsonDocument> encryptedFieldsMap) {
this.encryptedFieldsMap = notNull("encryptedFieldsMap", encryptedFieldsMap);
return this;
Expand All @@ -231,8 +230,8 @@ public Builder encryptedFieldsMap(final Map<String, BsonDocument> encryptedField
* @param bypassQueryAnalysis whether query analysis should be bypassed
* @return this
* @since 4.7
* @mongodb.server.release 7.0
*/
@Beta(Beta.Reason.SERVER)
public Builder bypassQueryAnalysis(final boolean bypassQueryAnalysis) {
this.bypassQueryAnalysis = bypassQueryAnalysis;
return this;
Expand Down Expand Up @@ -465,7 +464,6 @@ public boolean isBypassAutoEncryption() {
* @since 4.7
* @mongodb.server.release 7.0
*/
@Beta(Beta.Reason.SERVER)
@Nullable
public Map<String, BsonDocument> getEncryptedFieldsMap() {
return encryptedFieldsMap;
Expand All @@ -479,8 +477,8 @@ public Map<String, BsonDocument> getEncryptedFieldsMap() {
*
* @return true if query analysis should be bypassed
* @since 4.7
* @mongodb.server.release 7.0
*/
@Beta(Beta.Reason.SERVER)
public boolean isBypassQueryAnalysis() {
return bypassQueryAnalysis;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ public EncryptOptions keyAltName(final String keyAltName) {
* @param contentionFactor the contention factor, which must be {@code >= 0} or null.
* @return this
* @since 4.7
* @mongodb.server.release 7.0
*/
@Beta(Beta.Reason.SERVER)
public EncryptOptions contentionFactor(@Nullable final Long contentionFactor) {
this.contentionFactor = contentionFactor;
return this;
Expand All @@ -133,9 +133,9 @@ public EncryptOptions contentionFactor(@Nullable final Long contentionFactor) {
* @see #contentionFactor(Long)
* @return the contention factor
* @since 4.7
* @mongodb.server.release 7.0
*/
@Nullable
@Beta(Beta.Reason.SERVER)
public Long getContentionFactor() {
return contentionFactor;
}
Expand All @@ -149,8 +149,8 @@ public Long getContentionFactor() {
* @param queryType the query type
* @return this
* @since 4.7
* @mongodb.server.release 7.0
*/
@Beta(Beta.Reason.SERVER)
public EncryptOptions queryType(@Nullable final String queryType) {
this.queryType = queryType;
return this;
Expand All @@ -163,9 +163,9 @@ public EncryptOptions queryType(@Nullable final String queryType) {
* @see #queryType(String)
* @return the queryType or null
* @since 4.7
* @mongodb.server.release 7.0
*/
@Nullable
@Beta(Beta.Reason.SERVER)
public String getQueryType() {
return queryType;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,6 @@ public interface ClientEncryption extends Closeable {
* @mongodb.server.release 7.0
* @mongodb.driver.manual reference/command/create Create Command
*/
@Beta(Beta.Reason.SERVER)
Publisher<BsonDocument> createEncryptedCollection(MongoDatabase database, String collectionName,
CreateCollectionOptions createCollectionOptions, CreateEncryptedCollectionParams createEncryptedCollectionParams);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,6 @@ public interface ClientEncryption extends Closeable {
* @mongodb.server.release 7.0
* @mongodb.driver.manual reference/command/create Create Command
*/
@Beta(Beta.Reason.SERVER)
BsonDocument createEncryptedCollection(MongoDatabase database, String collectionName, CreateCollectionOptions createCollectionOptions,
CreateEncryptedCollectionParams createEncryptedCollectionParams);

Expand Down