mongo 2.13.1 → 2.14.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +1 -4
- data/lib/mongo.rb +9 -0
- data/lib/mongo/address/ipv4.rb +1 -1
- data/lib/mongo/address/ipv6.rb +1 -1
- data/lib/mongo/bulk_write.rb +17 -0
- data/lib/mongo/caching_cursor.rb +74 -0
- data/lib/mongo/client.rb +47 -8
- data/lib/mongo/cluster.rb +3 -3
- data/lib/mongo/cluster/topology/single.rb +1 -1
- data/lib/mongo/collection.rb +26 -0
- data/lib/mongo/collection/view.rb +24 -20
- data/lib/mongo/collection/view/aggregation.rb +25 -4
- data/lib/mongo/collection/view/builder/find_command.rb +38 -18
- data/lib/mongo/collection/view/explainable.rb +27 -8
- data/lib/mongo/collection/view/iterable.rb +72 -12
- data/lib/mongo/collection/view/readable.rb +12 -2
- data/lib/mongo/collection/view/writable.rb +15 -1
- data/lib/mongo/crypt/encryption_io.rb +6 -6
- data/lib/mongo/cursor.rb +1 -0
- data/lib/mongo/database.rb +6 -0
- data/lib/mongo/error.rb +2 -0
- data/lib/mongo/error/invalid_read_concern.rb +28 -0
- data/lib/mongo/error/server_certificate_revoked.rb +22 -0
- data/lib/mongo/error/unsupported_option.rb +14 -12
- data/lib/mongo/lint.rb +2 -1
- data/lib/mongo/logger.rb +3 -3
- data/lib/mongo/operation.rb +2 -0
- data/lib/mongo/operation/aggregate/result.rb +9 -8
- data/lib/mongo/operation/collections_info/result.rb +2 -0
- data/lib/mongo/operation/delete/bulk_result.rb +2 -0
- data/lib/mongo/operation/delete/result.rb +3 -0
- data/lib/mongo/operation/explain/command.rb +4 -0
- data/lib/mongo/operation/explain/legacy.rb +4 -0
- data/lib/mongo/operation/explain/op_msg.rb +6 -0
- data/lib/mongo/operation/explain/result.rb +3 -0
- data/lib/mongo/operation/find/legacy/result.rb +2 -0
- data/lib/mongo/operation/find/result.rb +3 -0
- data/lib/mongo/operation/get_more/result.rb +3 -0
- data/lib/mongo/operation/indexes/result.rb +5 -0
- data/lib/mongo/operation/insert/bulk_result.rb +5 -0
- data/lib/mongo/operation/insert/result.rb +5 -0
- data/lib/mongo/operation/list_collections/result.rb +5 -0
- data/lib/mongo/operation/map_reduce/result.rb +10 -0
- data/lib/mongo/operation/parallel_scan/result.rb +4 -0
- data/lib/mongo/operation/result.rb +35 -6
- data/lib/mongo/operation/shared/bypass_document_validation.rb +1 -0
- data/lib/mongo/operation/shared/causal_consistency_supported.rb +1 -0
- data/lib/mongo/operation/shared/collections_info_or_list_collections.rb +2 -0
- data/lib/mongo/operation/shared/executable.rb +1 -0
- data/lib/mongo/operation/shared/idable.rb +2 -1
- data/lib/mongo/operation/shared/limited.rb +1 -0
- data/lib/mongo/operation/shared/object_id_generator.rb +1 -0
- data/lib/mongo/operation/shared/result/aggregatable.rb +1 -0
- data/lib/mongo/operation/shared/sessions_supported.rb +1 -0
- data/lib/mongo/operation/shared/specifiable.rb +1 -0
- data/lib/mongo/operation/shared/write.rb +1 -0
- data/lib/mongo/operation/shared/write_concern_supported.rb +1 -0
- data/lib/mongo/operation/update/legacy/result.rb +7 -0
- data/lib/mongo/operation/update/result.rb +8 -0
- data/lib/mongo/operation/users_info/result.rb +3 -0
- data/lib/mongo/query_cache.rb +242 -0
- data/lib/mongo/retryable.rb +8 -1
- data/lib/mongo/server.rb +5 -1
- data/lib/mongo/server/connection_common.rb +2 -2
- data/lib/mongo/server/connection_pool.rb +3 -0
- data/lib/mongo/server/monitor.rb +1 -1
- data/lib/mongo/server/monitor/connection.rb +3 -3
- data/lib/mongo/server/pending_connection.rb +2 -2
- data/lib/mongo/server/push_monitor.rb +1 -1
- data/lib/mongo/server_selector/base.rb +5 -1
- data/lib/mongo/session.rb +3 -0
- data/lib/mongo/socket.rb +6 -4
- data/lib/mongo/socket/ocsp_cache.rb +97 -0
- data/lib/mongo/socket/ocsp_verifier.rb +368 -0
- data/lib/mongo/socket/ssl.rb +45 -24
- data/lib/mongo/srv/monitor.rb +7 -13
- data/lib/mongo/srv/resolver.rb +14 -10
- data/lib/mongo/timeout.rb +2 -0
- data/lib/mongo/uri.rb +21 -390
- data/lib/mongo/uri/options_mapper.rb +582 -0
- data/lib/mongo/uri/srv_protocol.rb +3 -2
- data/lib/mongo/utils.rb +12 -1
- data/lib/mongo/version.rb +1 -1
- data/spec/NOTES.aws-auth.md +12 -7
- data/spec/README.md +56 -1
- data/spec/integration/bulk_write_spec.rb +48 -0
- data/spec/integration/client_authentication_options_spec.rb +55 -28
- data/spec/integration/connection_pool_populator_spec.rb +3 -1
- data/spec/integration/cursor_reaping_spec.rb +53 -17
- data/spec/integration/ocsp_connectivity_spec.rb +26 -0
- data/spec/integration/ocsp_verifier_cache_spec.rb +188 -0
- data/spec/integration/ocsp_verifier_spec.rb +334 -0
- data/spec/integration/query_cache_spec.rb +1045 -0
- data/spec/integration/query_cache_transactions_spec.rb +179 -0
- data/spec/integration/retryable_writes/retryable_writes_40_and_newer_spec.rb +1 -0
- data/spec/integration/retryable_writes/shared/performs_legacy_retries.rb +2 -0
- data/spec/integration/sdam_error_handling_spec.rb +68 -0
- data/spec/integration/server_selection_spec.rb +36 -0
- data/spec/integration/srv_monitoring_spec.rb +38 -3
- data/spec/integration/srv_spec.rb +56 -0
- data/spec/lite_spec_helper.rb +3 -1
- data/spec/mongo/address_spec.rb +1 -1
- data/spec/mongo/caching_cursor_spec.rb +70 -0
- data/spec/mongo/client_construction_spec.rb +54 -1
- data/spec/mongo/client_spec.rb +40 -0
- data/spec/mongo/cluster/topology/single_spec.rb +14 -5
- data/spec/mongo/cluster_spec.rb +3 -0
- data/spec/mongo/collection/view/explainable_spec.rb +87 -4
- data/spec/mongo/collection/view/map_reduce_spec.rb +2 -0
- data/spec/mongo/collection_spec.rb +60 -0
- data/spec/mongo/crypt/auto_decryption_context_spec.rb +1 -1
- data/spec/mongo/crypt/auto_encryption_context_spec.rb +1 -1
- data/spec/mongo/crypt/explicit_decryption_context_spec.rb +1 -1
- data/spec/mongo/crypt/explicit_encryption_context_spec.rb +1 -1
- data/spec/mongo/database_spec.rb +44 -0
- data/spec/mongo/error/no_server_available_spec.rb +1 -1
- data/spec/mongo/logger_spec.rb +13 -11
- data/spec/mongo/query_cache_spec.rb +279 -0
- data/spec/mongo/server/connection_pool_spec.rb +7 -3
- data/spec/mongo/server/connection_spec.rb +14 -7
- data/spec/mongo/socket/ssl_spec.rb +1 -1
- data/spec/mongo/socket_spec.rb +1 -1
- data/spec/mongo/uri/srv_protocol_spec.rb +64 -33
- data/spec/mongo/uri_option_parsing_spec.rb +11 -11
- data/spec/mongo/uri_spec.rb +68 -41
- data/spec/mongo/utils_spec.rb +39 -0
- data/spec/runners/auth.rb +3 -0
- data/spec/runners/connection_string.rb +35 -124
- data/spec/spec_tests/cmap_spec.rb +7 -3
- data/spec/spec_tests/data/change_streams/change-streams-errors.yml +0 -1
- data/spec/spec_tests/data/change_streams/change-streams.yml +0 -1
- data/spec/spec_tests/data/cmap/pool-checkout-connection.yml +6 -2
- data/spec/spec_tests/data/cmap/pool-create-min-size.yml +3 -0
- data/spec/spec_tests/data/connection_string/valid-warnings.yml +24 -0
- data/spec/spec_tests/data/sdam_monitoring/discovered_standalone.yml +1 -3
- data/spec/spec_tests/data/sdam_monitoring/standalone.yml +2 -2
- data/spec/spec_tests/data/sdam_monitoring/standalone_repeated.yml +2 -2
- data/spec/spec_tests/data/sdam_monitoring/standalone_suppress_equal_description_changes.yml +2 -2
- data/spec/spec_tests/data/sdam_monitoring/standalone_to_rs_with_me_mismatch.yml +2 -2
- data/spec/spec_tests/data/uri_options/auth-options.yml +25 -0
- data/spec/spec_tests/data/uri_options/compression-options.yml +6 -3
- data/spec/spec_tests/data/uri_options/read-preference-options.yml +24 -0
- data/spec/spec_tests/data/uri_options/ruby-connection-options.yml +1 -0
- data/spec/spec_tests/data/uri_options/tls-options.yml +160 -4
- data/spec/spec_tests/dns_seedlist_discovery_spec.rb +9 -1
- data/spec/spec_tests/uri_options_spec.rb +31 -33
- data/spec/support/certificates/atlas-ocsp-ca.crt +28 -0
- data/spec/support/certificates/atlas-ocsp.crt +41 -0
- data/spec/support/client_registry_macros.rb +11 -2
- data/spec/support/common_shortcuts.rb +45 -0
- data/spec/support/constraints.rb +23 -0
- data/spec/support/lite_constraints.rb +24 -0
- data/spec/support/matchers.rb +16 -0
- data/spec/support/ocsp +1 -0
- data/spec/support/session_registry.rb +52 -0
- data/spec/support/spec_config.rb +22 -0
- data/spec/support/utils.rb +19 -1
- metadata +38 -3
- metadata.gz.sig +0 -0
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mongo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.14.0.rc1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tyler Brock
|
@@ -112,6 +112,7 @@ files:
|
|
112
112
|
- lib/mongo/bulk_write/transformable.rb
|
113
113
|
- lib/mongo/bulk_write/unordered_combiner.rb
|
114
114
|
- lib/mongo/bulk_write/validatable.rb
|
115
|
+
- lib/mongo/caching_cursor.rb
|
115
116
|
- lib/mongo/client.rb
|
116
117
|
- lib/mongo/client_encryption.rb
|
117
118
|
- lib/mongo/cluster.rb
|
@@ -198,6 +199,7 @@ files:
|
|
198
199
|
- lib/mongo/error/invalid_file_revision.rb
|
199
200
|
- lib/mongo/error/invalid_min_pool_size.rb
|
200
201
|
- lib/mongo/error/invalid_nonce.rb
|
202
|
+
- lib/mongo/error/invalid_read_concern.rb
|
201
203
|
- lib/mongo/error/invalid_read_option.rb
|
202
204
|
- lib/mongo/error/invalid_replacement_document.rb
|
203
205
|
- lib/mongo/error/invalid_server_auth_host.rb
|
@@ -230,6 +232,7 @@ files:
|
|
230
232
|
- lib/mongo/error/pool_closed_error.rb
|
231
233
|
- lib/mongo/error/raise_original_error.rb
|
232
234
|
- lib/mongo/error/sdam_error_detection.rb
|
235
|
+
- lib/mongo/error/server_certificate_revoked.rb
|
233
236
|
- lib/mongo/error/session_ended.rb
|
234
237
|
- lib/mongo/error/sessions_not_supported.rb
|
235
238
|
- lib/mongo/error/socket_error.rb
|
@@ -443,6 +446,7 @@ files:
|
|
443
446
|
- lib/mongo/protocol/reply.rb
|
444
447
|
- lib/mongo/protocol/serializers.rb
|
445
448
|
- lib/mongo/protocol/update.rb
|
449
|
+
- lib/mongo/query_cache.rb
|
446
450
|
- lib/mongo/retryable.rb
|
447
451
|
- lib/mongo/semaphore.rb
|
448
452
|
- lib/mongo/server.rb
|
@@ -473,6 +477,8 @@ files:
|
|
473
477
|
- lib/mongo/session/server_session.rb
|
474
478
|
- lib/mongo/session/session_pool.rb
|
475
479
|
- lib/mongo/socket.rb
|
480
|
+
- lib/mongo/socket/ocsp_cache.rb
|
481
|
+
- lib/mongo/socket/ocsp_verifier.rb
|
476
482
|
- lib/mongo/socket/ssl.rb
|
477
483
|
- lib/mongo/socket/tcp.rb
|
478
484
|
- lib/mongo/socket/unix.rb
|
@@ -483,6 +489,7 @@ files:
|
|
483
489
|
- lib/mongo/timeout.rb
|
484
490
|
- lib/mongo/topology_version.rb
|
485
491
|
- lib/mongo/uri.rb
|
492
|
+
- lib/mongo/uri/options_mapper.rb
|
486
493
|
- lib/mongo/uri/srv_protocol.rb
|
487
494
|
- lib/mongo/utils.rb
|
488
495
|
- lib/mongo/version.rb
|
@@ -544,7 +551,12 @@ files:
|
|
544
551
|
- spec/integration/heartbeat_events_spec.rb
|
545
552
|
- spec/integration/mmapv1_spec.rb
|
546
553
|
- spec/integration/mongos_pinning_spec.rb
|
554
|
+
- spec/integration/ocsp_connectivity_spec.rb
|
555
|
+
- spec/integration/ocsp_verifier_cache_spec.rb
|
556
|
+
- spec/integration/ocsp_verifier_spec.rb
|
547
557
|
- spec/integration/operation_failure_code_spec.rb
|
558
|
+
- spec/integration/query_cache_spec.rb
|
559
|
+
- spec/integration/query_cache_transactions_spec.rb
|
548
560
|
- spec/integration/read_concern_spec.rb
|
549
561
|
- spec/integration/read_preference_spec.rb
|
550
562
|
- spec/integration/reconnect_spec.rb
|
@@ -566,11 +578,13 @@ files:
|
|
566
578
|
- spec/integration/sdam_prose_spec.rb
|
567
579
|
- spec/integration/server_description_spec.rb
|
568
580
|
- spec/integration/server_monitor_spec.rb
|
581
|
+
- spec/integration/server_selection_spec.rb
|
569
582
|
- spec/integration/server_selector_spec.rb
|
570
583
|
- spec/integration/server_spec.rb
|
571
584
|
- spec/integration/shell_examples_spec.rb
|
572
585
|
- spec/integration/size_limit_spec.rb
|
573
586
|
- spec/integration/srv_monitoring_spec.rb
|
587
|
+
- spec/integration/srv_spec.rb
|
574
588
|
- spec/integration/ssl_uri_options_spec.rb
|
575
589
|
- spec/integration/step_down_spec.rb
|
576
590
|
- spec/integration/time_zone_querying_spec.rb
|
@@ -608,6 +622,7 @@ files:
|
|
608
622
|
- spec/mongo/bulk_write/result_spec.rb
|
609
623
|
- spec/mongo/bulk_write/unordered_combiner_spec.rb
|
610
624
|
- spec/mongo/bulk_write_spec.rb
|
625
|
+
- spec/mongo/caching_cursor_spec.rb
|
611
626
|
- spec/mongo/client_construction_spec.rb
|
612
627
|
- spec/mongo/client_encryption_spec.rb
|
613
628
|
- spec/mongo/client_spec.rb
|
@@ -750,6 +765,7 @@ files:
|
|
750
765
|
- spec/mongo/protocol/registry_spec.rb
|
751
766
|
- spec/mongo/protocol/reply_spec.rb
|
752
767
|
- spec/mongo/protocol/update_spec.rb
|
768
|
+
- spec/mongo/query_cache_spec.rb
|
753
769
|
- spec/mongo/retryable_spec.rb
|
754
770
|
- spec/mongo/semaphore_spec.rb
|
755
771
|
- spec/mongo/server/app_metadata_shared.rb
|
@@ -786,6 +802,7 @@ files:
|
|
786
802
|
- spec/mongo/uri/srv_protocol_spec.rb
|
787
803
|
- spec/mongo/uri_option_parsing_spec.rb
|
788
804
|
- spec/mongo/uri_spec.rb
|
805
|
+
- spec/mongo/utils_spec.rb
|
789
806
|
- spec/mongo/write_concern/acknowledged_spec.rb
|
790
807
|
- spec/mongo/write_concern/unacknowledged_spec.rb
|
791
808
|
- spec/mongo/write_concern_spec.rb
|
@@ -1436,6 +1453,8 @@ files:
|
|
1436
1453
|
- spec/support/aws_utils/provisioner.rb
|
1437
1454
|
- spec/support/background_thread_registry.rb
|
1438
1455
|
- spec/support/certificates/README.md
|
1456
|
+
- spec/support/certificates/atlas-ocsp-ca.crt
|
1457
|
+
- spec/support/certificates/atlas-ocsp.crt
|
1439
1458
|
- spec/support/certificates/ca.crt
|
1440
1459
|
- spec/support/certificates/client-encrypted.key
|
1441
1460
|
- spec/support/certificates/client-int.crt
|
@@ -1491,8 +1510,10 @@ files:
|
|
1491
1510
|
- spec/support/local_resource_registry.rb
|
1492
1511
|
- spec/support/matchers.rb
|
1493
1512
|
- spec/support/monitoring_ext.rb
|
1513
|
+
- spec/support/ocsp
|
1494
1514
|
- spec/support/primary_socket.rb
|
1495
1515
|
- spec/support/sdam_formatter_integration.rb
|
1516
|
+
- spec/support/session_registry.rb
|
1496
1517
|
- spec/support/shared/protocol.rb
|
1497
1518
|
- spec/support/shared/scram_conversation.rb
|
1498
1519
|
- spec/support/shared/server_selector.rb
|
@@ -1521,9 +1542,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
1521
1542
|
version: '2.3'
|
1522
1543
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
1523
1544
|
requirements:
|
1524
|
-
- - "
|
1545
|
+
- - ">"
|
1525
1546
|
- !ruby/object:Gem::Version
|
1526
|
-
version:
|
1547
|
+
version: 1.3.1
|
1527
1548
|
requirements: []
|
1528
1549
|
rubyforge_project:
|
1529
1550
|
rubygems_version: 2.7.6.2
|
@@ -1572,6 +1593,7 @@ test_files:
|
|
1572
1593
|
- spec/mongo/database_spec.rb
|
1573
1594
|
- spec/mongo/cursor_spec.rb
|
1574
1595
|
- spec/mongo/lint_spec.rb
|
1596
|
+
- spec/mongo/query_cache_spec.rb
|
1575
1597
|
- spec/mongo/server_selector/secondary_spec.rb
|
1576
1598
|
- spec/mongo/server_selector/primary_preferred_spec.rb
|
1577
1599
|
- spec/mongo/server_selector/primary_spec.rb
|
@@ -1695,6 +1717,7 @@ test_files:
|
|
1695
1717
|
- spec/mongo/protocol/get_more_spec.rb
|
1696
1718
|
- spec/mongo/protocol/update_spec.rb
|
1697
1719
|
- spec/mongo/protocol/insert_spec.rb
|
1720
|
+
- spec/mongo/caching_cursor_spec.rb
|
1698
1721
|
- spec/mongo/auth_spec.rb
|
1699
1722
|
- spec/mongo/uri_option_parsing_spec.rb
|
1700
1723
|
- spec/mongo/session/session_pool_spec.rb
|
@@ -1703,6 +1726,7 @@ test_files:
|
|
1703
1726
|
- spec/mongo/write_concern/acknowledged_spec.rb
|
1704
1727
|
- spec/mongo/cluster_time_spec.rb
|
1705
1728
|
- spec/mongo/options/redacted_spec.rb
|
1729
|
+
- spec/mongo/utils_spec.rb
|
1706
1730
|
- spec/mongo/uri_spec.rb
|
1707
1731
|
- spec/mongo/dbref_spec.rb
|
1708
1732
|
- spec/mongo/index/view_spec.rb
|
@@ -1745,11 +1769,14 @@ test_files:
|
|
1745
1769
|
- spec/integration/aws_auth_request_spec.rb
|
1746
1770
|
- spec/integration/retryable_errors_spec.rb
|
1747
1771
|
- spec/integration/shell_examples_spec.rb
|
1772
|
+
- spec/integration/srv_spec.rb
|
1748
1773
|
- spec/integration/retryable_writes_errors_spec.rb
|
1749
1774
|
- spec/integration/mongos_pinning_spec.rb
|
1750
1775
|
- spec/integration/client_update_spec.rb
|
1751
1776
|
- spec/integration/bulk_insert_spec.rb
|
1752
1777
|
- spec/integration/connection_pool_populator_spec.rb
|
1778
|
+
- spec/integration/ocsp_connectivity_spec.rb
|
1779
|
+
- spec/integration/query_cache_spec.rb
|
1753
1780
|
- spec/integration/connection_spec.rb
|
1754
1781
|
- spec/integration/server_monitor_spec.rb
|
1755
1782
|
- spec/integration/read_preference_spec.rb
|
@@ -1776,6 +1803,7 @@ test_files:
|
|
1776
1803
|
- spec/integration/change_stream_examples_spec.rb
|
1777
1804
|
- spec/integration/server_selector_spec.rb
|
1778
1805
|
- spec/integration/client_spec.rb
|
1806
|
+
- spec/integration/server_selection_spec.rb
|
1779
1807
|
- spec/integration/command_spec.rb
|
1780
1808
|
- spec/integration/client_authentication_options_spec.rb
|
1781
1809
|
- spec/integration/command_monitoring_spec.rb
|
@@ -1785,6 +1813,7 @@ test_files:
|
|
1785
1813
|
- spec/integration/transactions_examples_spec.rb
|
1786
1814
|
- spec/integration/sdam_events_spec.rb
|
1787
1815
|
- spec/integration/operation_failure_code_spec.rb
|
1816
|
+
- spec/integration/ocsp_verifier_spec.rb
|
1788
1817
|
- spec/integration/client_connectivity_spec.rb
|
1789
1818
|
- spec/integration/error_detection_spec.rb
|
1790
1819
|
- spec/integration/retryable_writes/shared/only_supports_legacy_retries.rb
|
@@ -1812,8 +1841,10 @@ test_files:
|
|
1812
1841
|
- spec/integration/fork_reconnect_spec.rb
|
1813
1842
|
- spec/integration/auth_spec.rb
|
1814
1843
|
- spec/integration/server_description_spec.rb
|
1844
|
+
- spec/integration/query_cache_transactions_spec.rb
|
1815
1845
|
- spec/integration/get_more_spec.rb
|
1816
1846
|
- spec/integration/read_concern_spec.rb
|
1847
|
+
- spec/integration/ocsp_verifier_cache_spec.rb
|
1817
1848
|
- spec/integration/srv_monitoring_spec.rb
|
1818
1849
|
- spec/integration/reconnect_spec.rb
|
1819
1850
|
- spec/integration/sdam_prose_spec.rb
|
@@ -2497,6 +2528,7 @@ test_files:
|
|
2497
2528
|
- spec/support/certificates/client-second-level-bundle.pem
|
2498
2529
|
- spec/support/certificates/client.pem
|
2499
2530
|
- spec/support/certificates/server-second-level.key
|
2531
|
+
- spec/support/certificates/atlas-ocsp-ca.crt
|
2500
2532
|
- spec/support/certificates/server-int.crt
|
2501
2533
|
- spec/support/certificates/crl_client_revoked.pem
|
2502
2534
|
- spec/support/certificates/client.crt
|
@@ -2508,6 +2540,7 @@ test_files:
|
|
2508
2540
|
- spec/support/certificates/server-second-level.crt
|
2509
2541
|
- spec/support/certificates/ca.crt
|
2510
2542
|
- spec/support/certificates/crl.pem
|
2543
|
+
- spec/support/certificates/atlas-ocsp.crt
|
2511
2544
|
- spec/support/certificates/client-encrypted.key
|
2512
2545
|
- spec/support/certificates/client-x509.pem
|
2513
2546
|
- spec/support/certificates/multi-ca.crt
|
@@ -2520,6 +2553,7 @@ test_files:
|
|
2520
2553
|
- spec/support/shared/protocol.rb
|
2521
2554
|
- spec/support/shared/scram_conversation.rb
|
2522
2555
|
- spec/support/shared/session.rb
|
2556
|
+
- spec/support/session_registry.rb
|
2523
2557
|
- spec/support/spec_setup.rb
|
2524
2558
|
- spec/support/spec_config.rb
|
2525
2559
|
- spec/support/crypt.rb
|
@@ -2535,6 +2569,7 @@ test_files:
|
|
2535
2569
|
- spec/support/event_subscriber.rb
|
2536
2570
|
- spec/support/common_shortcuts.rb
|
2537
2571
|
- spec/support/child_process_helper.rb
|
2572
|
+
- spec/support/ocsp
|
2538
2573
|
- spec/support/client_registry.rb
|
2539
2574
|
- spec/support/utils.rb
|
2540
2575
|
- spec/USERS.md
|
metadata.gz.sig
CHANGED
Binary file
|