mongo 2.19.3 → 2.20.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +37 -1
- data/Rakefile +81 -172
- data/lib/mongo/cluster/topology/base.rb +16 -0
- data/lib/mongo/cluster.rb +27 -1
- data/lib/mongo/collection/view/iterable.rb +1 -0
- data/lib/mongo/collection.rb +4 -2
- data/lib/mongo/config.rb +2 -2
- data/lib/mongo/error/transactions_not_supported.rb +34 -0
- data/lib/mongo/error.rb +1 -0
- data/lib/mongo/grid/fs_bucket.rb +6 -0
- data/lib/mongo/monitoring/event/secure.rb +1 -1
- data/lib/mongo/operation/shared/executable.rb +43 -27
- data/lib/mongo/operation/shared/response_handling.rb +23 -25
- data/lib/mongo/retryable/base_worker.rb +28 -3
- data/lib/mongo/retryable/read_worker.rb +16 -14
- data/lib/mongo/retryable/write_worker.rb +11 -8
- data/lib/mongo/retryable.rb +2 -2
- data/lib/mongo/server/app_metadata/environment.rb +64 -9
- data/lib/mongo/server/app_metadata.rb +5 -4
- data/lib/mongo/server/description/features.rb +1 -0
- data/lib/mongo/server/pending_connection.rb +19 -6
- data/lib/mongo/server_selector/base.rb +32 -6
- data/lib/mongo/session/server_session/dirtyable.rb +52 -0
- data/lib/mongo/session/server_session.rb +3 -0
- data/lib/mongo/session/session_pool.rb +12 -18
- data/lib/mongo/session.rb +32 -0
- data/lib/mongo/socket/ssl.rb +22 -1
- data/lib/mongo/uri.rb +0 -4
- data/lib/mongo/version.rb +1 -5
- data/mongo.gemspec +9 -18
- data/spec/atlas/atlas_connectivity_spec.rb +4 -4
- data/spec/faas/ruby-sam-app/Gemfile +9 -0
- data/spec/faas/ruby-sam-app/mongodb/Gemfile +4 -0
- data/spec/faas/ruby-sam-app/mongodb/app.rb +149 -0
- data/spec/faas/ruby-sam-app/template.yaml +48 -0
- data/spec/integration/client_side_encryption/corpus_spec.rb +10 -2
- data/spec/integration/client_side_encryption/range_explicit_encryption_prose_spec.rb +3 -0
- data/spec/integration/retryable_reads_errors_spec.rb +196 -31
- data/spec/integration/retryable_writes_errors_spec.rb +156 -0
- data/spec/integration/sdam_error_handling_spec.rb +2 -0
- data/spec/lite_spec_helper.rb +0 -10
- data/spec/mongo/cluster_spec.rb +36 -0
- data/spec/mongo/collection/view/aggregation_spec.rb +6 -1
- data/spec/mongo/collection/view/explainable_spec.rb +2 -0
- data/spec/mongo/collection_crud_spec.rb +2 -1
- data/spec/mongo/operation/insert_spec.rb +1 -1
- data/spec/mongo/retryable/write_worker_spec.rb +39 -0
- data/spec/mongo/server/app_metadata/environment_spec.rb +135 -0
- data/spec/mongo/server/app_metadata_spec.rb +12 -2
- data/spec/mongo/server/connection_spec.rb +26 -0
- data/spec/mongo/session/session_pool_spec.rb +1 -16
- data/spec/mongo/session_transaction_spec.rb +15 -0
- data/spec/mongo/uri_spec.rb +0 -9
- data/spec/runners/crud/test.rb +0 -8
- data/spec/runners/crud.rb +1 -1
- data/spec/runners/transactions/test.rb +12 -3
- data/spec/runners/unified/assertions.rb +16 -3
- data/spec/runners/unified/crud_operations.rb +12 -0
- data/spec/runners/unified/support_operations.rb +3 -5
- data/spec/runners/unified/test.rb +8 -1
- data/spec/spec_tests/data/client_side_encryption/explain.yml +2 -2
- data/spec/spec_tests/data/client_side_encryption/fle2v2-BypassQueryAnalysis.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Compact.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-CreateCollection.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-DecryptExistingData.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Delete.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-EncryptedFields-vs-EncryptedFieldsMap.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-EncryptedFields-vs-jsonSchema.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-EncryptedFieldsMap-defaults.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-FindOneAndUpdate.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-InsertFind-Indexed.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-InsertFind-Unindexed.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-MissingKey.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-NoEncryption.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Date-Aggregate.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Date-Correctness.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Date-Delete.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Date-FindOneAndUpdate.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Date-InsertFind.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Date-Update.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Decimal-Aggregate.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Decimal-Correctness.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Decimal-Delete.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Decimal-FindOneAndUpdate.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Decimal-InsertFind.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Decimal-Update.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DecimalPrecision-Aggregate.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DecimalPrecision-Correctness.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DecimalPrecision-Delete.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DecimalPrecision-FindOneAndUpdate.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DecimalPrecision-InsertFind.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DecimalPrecision-Update.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Double-Aggregate.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Double-Correctness.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Double-Delete.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Double-FindOneAndUpdate.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Double-InsertFind.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Double-Update.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DoublePrecision-Aggregate.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DoublePrecision-Correctness.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DoublePrecision-Delete.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DoublePrecision-FindOneAndUpdate.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DoublePrecision-InsertFind.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DoublePrecision-Update.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Int-Aggregate.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Int-Correctness.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Int-Delete.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Int-FindOneAndUpdate.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Int-InsertFind.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Int-Update.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Long-Aggregate.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Long-Correctness.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Long-Delete.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Long-FindOneAndUpdate.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Long-InsertFind.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-Long-Update.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-WrongType.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-Update.yml +1 -0
- data/spec/spec_tests/data/client_side_encryption/fle2v2-validatorAndPartialFieldExpression.yml +2 -1
- data/spec/spec_tests/data/connection_string/invalid-uris.yml +0 -10
- data/spec/spec_tests/data/connection_string/valid-options.yml +13 -0
- data/spec/spec_tests/data/crud_unified/aggregate-write-readPreference.yml +2 -0
- data/spec/spec_tests/data/crud_unified/db-aggregate-write-readPreference.yml +2 -0
- data/spec/spec_tests/data/crud_unified/find-test-all-options.yml +348 -0
- data/spec/spec_tests/data/index_management/createSearchIndex.yml +5 -3
- data/spec/spec_tests/data/index_management/createSearchIndexes.yml +7 -4
- data/spec/spec_tests/data/index_management/dropSearchIndex.yml +2 -1
- data/spec/spec_tests/data/index_management/listSearchIndexes.yml +13 -7
- data/spec/spec_tests/data/index_management/updateSearchIndex.yml +2 -1
- data/spec/spec_tests/data/retryable_writes/unified/bulkWrite-serverErrors.yml +3 -6
- data/spec/spec_tests/data/retryable_writes/unified/insertOne-serverErrors.yml +3 -6
- data/spec/spec_tests/data/run_command_unified/runCommand.yml +319 -0
- data/spec/spec_tests/data/sessions_unified/driver-sessions-dirty-session-errors.yml +351 -0
- data/spec/spec_tests/data/unified/valid-pass/poc-crud.yml +1 -1
- data/spec/spec_tests/data/unified/valid-pass/poc-retryable-writes.yml +7 -7
- data/spec/spec_tests/data/unified/valid-pass/poc-sessions.yml +3 -4
- data/spec/spec_tests/data/unified/valid-pass/poc-transactions-convenient-api.yml +1 -1
- data/spec/spec_tests/data/unified/valid-pass/poc-transactions-mongos-pin-auto.yml +1 -1
- data/spec/spec_tests/data/unified/valid-pass/poc-transactions.yml +3 -3
- data/spec/spec_tests/run_command_unified_spec.rb +13 -0
- data/spec/spec_tests/sdam_unified_spec.rb +2 -0
- data/spec/spec_tests/transactions_unified_spec.rb +2 -1
- data/spec/support/certificates/atlas-ocsp-ca.crt +89 -77
- data/spec/support/certificates/atlas-ocsp.crt +117 -122
- data/spec/support/certificates/retrieve-atlas-cert +1 -1
- data/spec/support/constraints.rb +6 -0
- data/spec/support/ocsp +1 -1
- data/spec/support/recording_logger.rb +27 -0
- metadata +1245 -1298
- checksums.yaml.gz.sig +0 -0
- data/spec/shared/LICENSE +0 -20
- data/spec/shared/bin/get-mongodb-download-url +0 -17
- data/spec/shared/bin/s3-copy +0 -45
- data/spec/shared/bin/s3-upload +0 -69
- data/spec/shared/lib/mrss/child_process_helper.rb +0 -80
- data/spec/shared/lib/mrss/cluster_config.rb +0 -231
- data/spec/shared/lib/mrss/constraints.rb +0 -378
- data/spec/shared/lib/mrss/docker_runner.rb +0 -295
- data/spec/shared/lib/mrss/eg_config_utils.rb +0 -51
- data/spec/shared/lib/mrss/event_subscriber.rb +0 -210
- data/spec/shared/lib/mrss/lite_constraints.rb +0 -238
- data/spec/shared/lib/mrss/server_version_registry.rb +0 -113
- data/spec/shared/lib/mrss/session_registry.rb +0 -69
- data/spec/shared/lib/mrss/session_registry_legacy.rb +0 -60
- data/spec/shared/lib/mrss/spec_organizer.rb +0 -179
- data/spec/shared/lib/mrss/utils.rb +0 -37
- data/spec/shared/share/Dockerfile.erb +0 -330
- data/spec/shared/share/haproxy-1.conf +0 -16
- data/spec/shared/share/haproxy-2.conf +0 -17
- data/spec/shared/shlib/config.sh +0 -27
- data/spec/shared/shlib/distro.sh +0 -74
- data/spec/shared/shlib/server.sh +0 -416
- data/spec/shared/shlib/set_env.sh +0 -169
- data/spec/spec_tests/data/cmap/pool-clear-interrupt-immediately.yml +0 -49
- data/spec/support/faas/app/aws_lambda/mongodb/Gemfile.lock +0 -19
- data.tar.gz.sig +0 -3
- metadata.gz.sig +0 -0
@@ -2,6 +2,7 @@
|
|
2
2
|
# Requires libmongocrypt 1.8.0.
|
3
3
|
runOn:
|
4
4
|
- minServerVersion: "7.0.0"
|
5
|
+
maxServerVersion: "7.99.99"
|
5
6
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
6
7
|
# FLE 2 Encrypted collections are not supported on standalone.
|
7
8
|
topology: [ "replicaset", "sharded", "load-balanced" ]
|
@@ -2,6 +2,7 @@
|
|
2
2
|
# Requires libmongocrypt 1.8.0.
|
3
3
|
runOn:
|
4
4
|
- minServerVersion: "7.0.0"
|
5
|
+
maxServerVersion: "7.99.99"
|
5
6
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
6
7
|
# FLE 2 Encrypted collections are not supported on standalone.
|
7
8
|
topology: [ "replicaset", "sharded", "load-balanced" ]
|
@@ -2,6 +2,7 @@
|
|
2
2
|
# Requires libmongocrypt 1.8.0.
|
3
3
|
runOn:
|
4
4
|
- minServerVersion: "7.0.0"
|
5
|
+
maxServerVersion: "7.99.99"
|
5
6
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
6
7
|
# FLE 2 Encrypted collections are not supported on standalone.
|
7
8
|
# Tests for Decimal (without precision) must only run against a replica set. Decimal (without precision) queries are expected to take a long time and may exceed the default mongos timeout.
|
@@ -4,6 +4,7 @@
|
|
4
4
|
# Requires libmongocrypt 1.8.0.
|
5
5
|
runOn:
|
6
6
|
- minServerVersion: "7.0.0"
|
7
|
+
maxServerVersion: "7.99.99"
|
7
8
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
8
9
|
# FLE 2 Encrypted collections are not supported on standalone.
|
9
10
|
# Tests for Decimal (without precision) must only run against a replica set. Decimal (without precision) queries are expected to take a long time and may exceed the default mongos timeout.
|
@@ -2,6 +2,7 @@
|
|
2
2
|
# Requires libmongocrypt 1.8.0.
|
3
3
|
runOn:
|
4
4
|
- minServerVersion: "7.0.0"
|
5
|
+
maxServerVersion: "7.99.99"
|
5
6
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
6
7
|
# FLE 2 Encrypted collections are not supported on standalone.
|
7
8
|
# Tests for Decimal (without precision) must only run against a replica set. Decimal (without precision) queries are expected to take a long time and may exceed the default mongos timeout.
|
@@ -2,6 +2,7 @@
|
|
2
2
|
# Requires libmongocrypt 1.8.0.
|
3
3
|
runOn:
|
4
4
|
- minServerVersion: "7.0.0"
|
5
|
+
maxServerVersion: "7.99.99"
|
5
6
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
6
7
|
# FLE 2 Encrypted collections are not supported on standalone.
|
7
8
|
# Tests for Decimal (without precision) must only run against a replica set. Decimal (without precision) queries are expected to take a long time and may exceed the default mongos timeout.
|
@@ -2,6 +2,7 @@
|
|
2
2
|
# Requires libmongocrypt 1.8.0.
|
3
3
|
runOn:
|
4
4
|
- minServerVersion: "7.0.0"
|
5
|
+
maxServerVersion: "7.99.99"
|
5
6
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
6
7
|
# FLE 2 Encrypted collections are not supported on standalone.
|
7
8
|
# Tests for Decimal (without precision) must only run against a replica set. Decimal (without precision) queries are expected to take a long time and may exceed the default mongos timeout.
|
@@ -2,6 +2,7 @@
|
|
2
2
|
# Requires libmongocrypt 1.8.0.
|
3
3
|
runOn:
|
4
4
|
- minServerVersion: "7.0.0"
|
5
|
+
maxServerVersion: "7.99.99"
|
5
6
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
6
7
|
# FLE 2 Encrypted collections are not supported on standalone.
|
7
8
|
# Tests for Decimal (without precision) must only run against a replica set. Decimal (without precision) queries are expected to take a long time and may exceed the default mongos timeout.
|
data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DecimalPrecision-Aggregate.yml
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
# Requires libmongocrypt 1.8.0.
|
3
3
|
runOn:
|
4
4
|
- minServerVersion: "7.0.0"
|
5
|
+
maxServerVersion: "7.99.99"
|
5
6
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
6
7
|
# FLE 2 Encrypted collections are not supported on standalone.
|
7
8
|
topology: [ "replicaset", "sharded", "load-balanced" ]
|
data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DecimalPrecision-Correctness.yml
CHANGED
@@ -4,6 +4,7 @@
|
|
4
4
|
# Requires libmongocrypt 1.8.0.
|
5
5
|
runOn:
|
6
6
|
- minServerVersion: "7.0.0"
|
7
|
+
maxServerVersion: "7.99.99"
|
7
8
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
8
9
|
# FLE 2 Encrypted collections are not supported on standalone.
|
9
10
|
topology: [ "replicaset", "sharded", "load-balanced" ]
|
@@ -2,6 +2,7 @@
|
|
2
2
|
# Requires libmongocrypt 1.8.0.
|
3
3
|
runOn:
|
4
4
|
- minServerVersion: "7.0.0"
|
5
|
+
maxServerVersion: "7.99.99"
|
5
6
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
6
7
|
# FLE 2 Encrypted collections are not supported on standalone.
|
7
8
|
topology: [ "replicaset", "sharded", "load-balanced" ]
|
data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DecimalPrecision-FindOneAndUpdate.yml
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
# Requires libmongocrypt 1.8.0.
|
3
3
|
runOn:
|
4
4
|
- minServerVersion: "7.0.0"
|
5
|
+
maxServerVersion: "7.99.99"
|
5
6
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
6
7
|
# FLE 2 Encrypted collections are not supported on standalone.
|
7
8
|
topology: [ "replicaset", "sharded", "load-balanced" ]
|
data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DecimalPrecision-InsertFind.yml
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
# Requires libmongocrypt 1.8.0.
|
3
3
|
runOn:
|
4
4
|
- minServerVersion: "7.0.0"
|
5
|
+
maxServerVersion: "7.99.99"
|
5
6
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
6
7
|
# FLE 2 Encrypted collections are not supported on standalone.
|
7
8
|
topology: [ "replicaset", "sharded", "load-balanced" ]
|
@@ -2,6 +2,7 @@
|
|
2
2
|
# Requires libmongocrypt 1.8.0.
|
3
3
|
runOn:
|
4
4
|
- minServerVersion: "7.0.0"
|
5
|
+
maxServerVersion: "7.99.99"
|
5
6
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
6
7
|
# FLE 2 Encrypted collections are not supported on standalone.
|
7
8
|
topology: [ "replicaset", "sharded", "load-balanced" ]
|
@@ -2,6 +2,7 @@
|
|
2
2
|
# Requires libmongocrypt 1.8.0.
|
3
3
|
runOn:
|
4
4
|
- minServerVersion: "7.0.0"
|
5
|
+
maxServerVersion: "7.99.99"
|
5
6
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
6
7
|
# FLE 2 Encrypted collections are not supported on standalone.
|
7
8
|
topology: [ "replicaset", "sharded", "load-balanced" ]
|
@@ -4,6 +4,7 @@
|
|
4
4
|
# Requires libmongocrypt 1.8.0.
|
5
5
|
runOn:
|
6
6
|
- minServerVersion: "7.0.0"
|
7
|
+
maxServerVersion: "7.99.99"
|
7
8
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
8
9
|
# FLE 2 Encrypted collections are not supported on standalone.
|
9
10
|
topology: [ "replicaset", "sharded", "load-balanced" ]
|
@@ -2,6 +2,7 @@
|
|
2
2
|
# Requires libmongocrypt 1.8.0.
|
3
3
|
runOn:
|
4
4
|
- minServerVersion: "7.0.0"
|
5
|
+
maxServerVersion: "7.99.99"
|
5
6
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
6
7
|
# FLE 2 Encrypted collections are not supported on standalone.
|
7
8
|
topology: [ "replicaset", "sharded", "load-balanced" ]
|
@@ -2,6 +2,7 @@
|
|
2
2
|
# Requires libmongocrypt 1.8.0.
|
3
3
|
runOn:
|
4
4
|
- minServerVersion: "7.0.0"
|
5
|
+
maxServerVersion: "7.99.99"
|
5
6
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
6
7
|
# FLE 2 Encrypted collections are not supported on standalone.
|
7
8
|
topology: [ "replicaset", "sharded", "load-balanced" ]
|
@@ -2,6 +2,7 @@
|
|
2
2
|
# Requires libmongocrypt 1.8.0.
|
3
3
|
runOn:
|
4
4
|
- minServerVersion: "7.0.0"
|
5
|
+
maxServerVersion: "7.99.99"
|
5
6
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
6
7
|
# FLE 2 Encrypted collections are not supported on standalone.
|
7
8
|
topology: [ "replicaset", "sharded", "load-balanced" ]
|
@@ -2,6 +2,7 @@
|
|
2
2
|
# Requires libmongocrypt 1.8.0.
|
3
3
|
runOn:
|
4
4
|
- minServerVersion: "7.0.0"
|
5
|
+
maxServerVersion: "7.99.99"
|
5
6
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
6
7
|
# FLE 2 Encrypted collections are not supported on standalone.
|
7
8
|
topology: [ "replicaset", "sharded", "load-balanced" ]
|
@@ -2,6 +2,7 @@
|
|
2
2
|
# Requires libmongocrypt 1.8.0.
|
3
3
|
runOn:
|
4
4
|
- minServerVersion: "7.0.0"
|
5
|
+
maxServerVersion: "7.99.99"
|
5
6
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
6
7
|
# FLE 2 Encrypted collections are not supported on standalone.
|
7
8
|
topology: [ "replicaset", "sharded", "load-balanced" ]
|
data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DoublePrecision-Correctness.yml
CHANGED
@@ -4,6 +4,7 @@
|
|
4
4
|
# Requires libmongocrypt 1.8.0.
|
5
5
|
runOn:
|
6
6
|
- minServerVersion: "7.0.0"
|
7
|
+
maxServerVersion: "7.99.99"
|
7
8
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
8
9
|
# FLE 2 Encrypted collections are not supported on standalone.
|
9
10
|
topology: [ "replicaset", "sharded", "load-balanced" ]
|
@@ -2,6 +2,7 @@
|
|
2
2
|
# Requires libmongocrypt 1.8.0.
|
3
3
|
runOn:
|
4
4
|
- minServerVersion: "7.0.0"
|
5
|
+
maxServerVersion: "7.99.99"
|
5
6
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
6
7
|
# FLE 2 Encrypted collections are not supported on standalone.
|
7
8
|
topology: [ "replicaset", "sharded", "load-balanced" ]
|
data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DoublePrecision-FindOneAndUpdate.yml
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
# Requires libmongocrypt 1.8.0.
|
3
3
|
runOn:
|
4
4
|
- minServerVersion: "7.0.0"
|
5
|
+
maxServerVersion: "7.99.99"
|
5
6
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
6
7
|
# FLE 2 Encrypted collections are not supported on standalone.
|
7
8
|
topology: [ "replicaset", "sharded", "load-balanced" ]
|
data/spec/spec_tests/data/client_side_encryption/fle2v2-Range-DoublePrecision-InsertFind.yml
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
# Requires libmongocrypt 1.8.0.
|
3
3
|
runOn:
|
4
4
|
- minServerVersion: "7.0.0"
|
5
|
+
maxServerVersion: "7.99.99"
|
5
6
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
6
7
|
# FLE 2 Encrypted collections are not supported on standalone.
|
7
8
|
topology: [ "replicaset", "sharded", "load-balanced" ]
|
@@ -2,6 +2,7 @@
|
|
2
2
|
# Requires libmongocrypt 1.8.0.
|
3
3
|
runOn:
|
4
4
|
- minServerVersion: "7.0.0"
|
5
|
+
maxServerVersion: "7.99.99"
|
5
6
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
6
7
|
# FLE 2 Encrypted collections are not supported on standalone.
|
7
8
|
topology: [ "replicaset", "sharded", "load-balanced" ]
|
@@ -2,6 +2,7 @@
|
|
2
2
|
# Requires libmongocrypt 1.8.0.
|
3
3
|
runOn:
|
4
4
|
- minServerVersion: "7.0.0"
|
5
|
+
maxServerVersion: "7.99.99"
|
5
6
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
6
7
|
# FLE 2 Encrypted collections are not supported on standalone.
|
7
8
|
topology: [ "replicaset", "sharded", "load-balanced" ]
|
@@ -4,6 +4,7 @@
|
|
4
4
|
# Requires libmongocrypt 1.8.0.
|
5
5
|
runOn:
|
6
6
|
- minServerVersion: "7.0.0"
|
7
|
+
maxServerVersion: "7.99.99"
|
7
8
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
8
9
|
# FLE 2 Encrypted collections are not supported on standalone.
|
9
10
|
topology: [ "replicaset", "sharded", "load-balanced" ]
|
@@ -2,6 +2,7 @@
|
|
2
2
|
# Requires libmongocrypt 1.8.0.
|
3
3
|
runOn:
|
4
4
|
- minServerVersion: "7.0.0"
|
5
|
+
maxServerVersion: "7.99.99"
|
5
6
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
6
7
|
# FLE 2 Encrypted collections are not supported on standalone.
|
7
8
|
topology: [ "replicaset", "sharded", "load-balanced" ]
|
@@ -2,6 +2,7 @@
|
|
2
2
|
# Requires libmongocrypt 1.8.0.
|
3
3
|
runOn:
|
4
4
|
- minServerVersion: "7.0.0"
|
5
|
+
maxServerVersion: "7.99.99"
|
5
6
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
6
7
|
# FLE 2 Encrypted collections are not supported on standalone.
|
7
8
|
topology: [ "replicaset", "sharded", "load-balanced" ]
|
@@ -2,6 +2,7 @@
|
|
2
2
|
# Requires libmongocrypt 1.8.0.
|
3
3
|
runOn:
|
4
4
|
- minServerVersion: "7.0.0"
|
5
|
+
maxServerVersion: "7.99.99"
|
5
6
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
6
7
|
# FLE 2 Encrypted collections are not supported on standalone.
|
7
8
|
topology: [ "replicaset", "sharded", "load-balanced" ]
|
@@ -2,6 +2,7 @@
|
|
2
2
|
# Requires libmongocrypt 1.8.0.
|
3
3
|
runOn:
|
4
4
|
- minServerVersion: "7.0.0"
|
5
|
+
maxServerVersion: "7.99.99"
|
5
6
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
6
7
|
# FLE 2 Encrypted collections are not supported on standalone.
|
7
8
|
topology: [ "replicaset", "sharded", "load-balanced" ]
|
@@ -2,6 +2,7 @@
|
|
2
2
|
# Requires libmongocrypt 1.8.0.
|
3
3
|
runOn:
|
4
4
|
- minServerVersion: "7.0.0"
|
5
|
+
maxServerVersion: "7.99.99"
|
5
6
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
6
7
|
# FLE 2 Encrypted collections are not supported on standalone.
|
7
8
|
topology: [ "replicaset", "sharded", "load-balanced" ]
|
@@ -4,6 +4,7 @@
|
|
4
4
|
# Requires libmongocrypt 1.8.0.
|
5
5
|
runOn:
|
6
6
|
- minServerVersion: "7.0.0"
|
7
|
+
maxServerVersion: "7.99.99"
|
7
8
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
8
9
|
# FLE 2 Encrypted collections are not supported on standalone.
|
9
10
|
topology: [ "replicaset", "sharded", "load-balanced" ]
|
@@ -2,6 +2,7 @@
|
|
2
2
|
# Requires libmongocrypt 1.8.0.
|
3
3
|
runOn:
|
4
4
|
- minServerVersion: "7.0.0"
|
5
|
+
maxServerVersion: "7.99.99"
|
5
6
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
6
7
|
# FLE 2 Encrypted collections are not supported on standalone.
|
7
8
|
topology: [ "replicaset", "sharded", "load-balanced" ]
|
@@ -2,6 +2,7 @@
|
|
2
2
|
# Requires libmongocrypt 1.8.0.
|
3
3
|
runOn:
|
4
4
|
- minServerVersion: "7.0.0"
|
5
|
+
maxServerVersion: "7.99.99"
|
5
6
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
6
7
|
# FLE 2 Encrypted collections are not supported on standalone.
|
7
8
|
topology: [ "replicaset", "sharded", "load-balanced" ]
|
@@ -2,6 +2,7 @@
|
|
2
2
|
# Requires libmongocrypt 1.8.0.
|
3
3
|
runOn:
|
4
4
|
- minServerVersion: "7.0.0"
|
5
|
+
maxServerVersion: "7.99.99"
|
5
6
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
6
7
|
# FLE 2 Encrypted collections are not supported on standalone.
|
7
8
|
topology: [ "replicaset", "sharded", "load-balanced" ]
|
@@ -2,6 +2,7 @@
|
|
2
2
|
# Requires libmongocrypt 1.8.0.
|
3
3
|
runOn:
|
4
4
|
- minServerVersion: "7.0.0"
|
5
|
+
maxServerVersion: "7.99.99"
|
5
6
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
6
7
|
# FLE 2 Encrypted collections are not supported on standalone.
|
7
8
|
topology: [ "replicaset", "sharded", "load-balanced" ]
|
@@ -4,6 +4,7 @@
|
|
4
4
|
# Requires libmongocrypt 1.8.0.
|
5
5
|
runOn:
|
6
6
|
- minServerVersion: "7.0.0"
|
7
|
+
maxServerVersion: "7.99.99"
|
7
8
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
8
9
|
# FLE 2 Encrypted collections are not supported on standalone.
|
9
10
|
topology: [ "replicaset", "sharded", "load-balanced" ]
|
@@ -1,6 +1,7 @@
|
|
1
1
|
# Requires libmongocrypt 1.8.0.
|
2
2
|
runOn:
|
3
3
|
- minServerVersion: "7.0.0"
|
4
|
+
maxServerVersion: "7.99.99"
|
4
5
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
5
6
|
# FLE 2 Encrypted collections are not supported on standalone.
|
6
7
|
topology: [ "replicaset", "sharded", "load-balanced" ]
|
data/spec/spec_tests/data/client_side_encryption/fle2v2-validatorAndPartialFieldExpression.yml
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
runOn:
|
3
3
|
# Require server version 6.0.0 to get behavior added in SERVER-64911.
|
4
4
|
- minServerVersion: "7.0.0"
|
5
|
+
maxServerVersion: "7.99.99"
|
5
6
|
# Skip QEv2 (also referred to as FLE2v2) tests on Serverless. Unskip once Serverless enables the QEv2 protocol.
|
6
7
|
# FLE 2 Encrypted collections are not supported on standalone.
|
7
8
|
topology: [ "replicaset", "sharded", "load-balanced" ]
|
@@ -166,4 +167,4 @@ tests:
|
|
166
167
|
partialFilterExpression:
|
167
168
|
encryptedIndexed: "foo"
|
168
169
|
result:
|
169
|
-
errorContains: "Comparison to encrypted fields not supported"
|
170
|
+
errorContains: "Comparison to encrypted fields not supported"
|
@@ -143,14 +143,6 @@ tests:
|
|
143
143
|
hosts: ~
|
144
144
|
auth: ~
|
145
145
|
options: ~
|
146
|
-
-
|
147
|
-
description: "Missing delimiting slash between hosts and options"
|
148
|
-
uri: "mongodb://example.com?w=1"
|
149
|
-
valid: false
|
150
|
-
warning: ~
|
151
|
-
hosts: ~
|
152
|
-
auth: ~
|
153
|
-
options: ~
|
154
146
|
-
|
155
147
|
description: "Incomplete key value pair for option"
|
156
148
|
uri: "mongodb://example.com/?w"
|
@@ -257,5 +249,3 @@ tests:
|
|
257
249
|
hosts: ~
|
258
250
|
auth: ~
|
259
251
|
options: ~
|
260
|
-
|
261
|
-
|
@@ -15,3 +15,16 @@ tests:
|
|
15
15
|
db: "admin"
|
16
16
|
options:
|
17
17
|
authmechanism: "MONGODB-CR"
|
18
|
+
-
|
19
|
+
description: "Missing delimiting slash between hosts and options"
|
20
|
+
uri: "mongodb://example.com?tls=true"
|
21
|
+
valid: true
|
22
|
+
warning: false
|
23
|
+
hosts:
|
24
|
+
-
|
25
|
+
type: "hostname"
|
26
|
+
host: "example.com"
|
27
|
+
port: ~
|
28
|
+
auth: ~
|
29
|
+
options:
|
30
|
+
tls: true
|
@@ -5,6 +5,8 @@ schemaVersion: '1.4'
|
|
5
5
|
runOnRequirements:
|
6
6
|
# 3.6+ non-standalone is needed to utilize $readPreference in OP_MSG
|
7
7
|
- minServerVersion: "3.6"
|
8
|
+
# https://jira.mongodb.org/browse/DRIVERS-291
|
9
|
+
maxServerVersion: "7.99"
|
8
10
|
topologies: [ replicaset, sharded, load-balanced ]
|
9
11
|
|
10
12
|
_yamlAnchors:
|
@@ -7,6 +7,8 @@ runOnRequirements:
|
|
7
7
|
# Serverless does not support $listLocalSessions and $currentOp stages, and
|
8
8
|
# mongos does not allow combining them with $out or $merge.
|
9
9
|
- minServerVersion: "3.6"
|
10
|
+
# https://jira.mongodb.org/browse/DRIVERS-291
|
11
|
+
maxServerVersion: "7.99"
|
10
12
|
topologies: [ replicaset ]
|
11
13
|
serverless: forbid
|
12
14
|
|