mongo 2.16.4 → 2.17.0
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/README.md +1 -1
- data/lib/mongo/auth/aws/request.rb +0 -1
- data/lib/mongo/client.rb +4 -0
- data/lib/mongo/collection/view/aggregation.rb +62 -17
- data/lib/mongo/collection/view/builder/aggregation.rb +11 -13
- data/lib/mongo/collection/view/builder/map_reduce.rb +5 -8
- data/lib/mongo/collection/view/change_stream.rb +7 -3
- data/lib/mongo/collection/view/iterable.rb +3 -20
- data/lib/mongo/collection/view/map_reduce.rb +3 -14
- data/lib/mongo/collection/view/readable.rb +24 -1
- data/lib/mongo/collection/view/writable.rb +23 -0
- data/lib/mongo/collection/view.rb +0 -1
- data/lib/mongo/collection.rb +21 -1
- data/lib/mongo/database/view.rb +4 -2
- data/lib/mongo/database.rb +6 -6
- data/lib/mongo/error/snapshot_session_invalid_server_version.rb +31 -0
- data/lib/mongo/error/snapshot_session_transaction_prohibited.rb +30 -0
- data/lib/mongo/error.rb +2 -0
- data/lib/mongo/operation/delete/op_msg.rb +2 -1
- data/lib/mongo/operation/find/builder/command.rb +1 -0
- data/lib/mongo/operation/result.rb +6 -0
- data/lib/mongo/operation/shared/executable.rb +4 -0
- data/lib/mongo/operation/shared/sessions_supported.rb +18 -2
- data/lib/mongo/operation/update/op_msg.rb +2 -1
- data/lib/mongo/query_cache.rb +2 -12
- data/lib/mongo/server/description/features.rb +3 -1
- data/lib/mongo/server/monitor/connection.rb +4 -10
- data/lib/mongo/server_selector/base.rb +26 -4
- data/lib/mongo/session.rb +19 -0
- data/lib/mongo/socket/ocsp_cache.rb +2 -3
- data/lib/mongo/socket.rb +1 -5
- data/lib/mongo/utils.rb +0 -6
- data/lib/mongo/version.rb +1 -1
- data/mongo.gemspec +1 -1
- data/spec/integration/query_cache_spec.rb +0 -159
- data/spec/integration/read_preference_spec.rb +16 -12
- data/spec/integration/sdam_events_spec.rb +0 -40
- data/spec/lite_spec_helper.rb +0 -7
- data/spec/mongo/collection/view/aggregation_spec.rb +71 -95
- data/spec/mongo/collection/view/change_stream_spec.rb +1 -1
- data/spec/mongo/collection/view/map_reduce_spec.rb +14 -17
- data/spec/mongo/collection/view/readable_spec.rb +0 -56
- data/spec/mongo/operation/read_preference_op_msg_spec.rb +24 -1
- data/spec/mongo/query_cache_spec.rb +0 -165
- data/spec/mongo/server_selector_spec.rb +136 -15
- data/spec/mongo/socket/ssl_spec.rb +26 -58
- data/spec/mongo/utils_spec.rb +0 -14
- data/spec/runners/auth.rb +1 -1
- data/spec/runners/change_streams/spec.rb +1 -1
- data/spec/runners/cmap.rb +1 -1
- data/spec/runners/command_monitoring.rb +1 -1
- data/spec/runners/connection_string.rb +1 -1
- data/spec/runners/crud/spec.rb +3 -1
- data/spec/runners/crud/verifier.rb +1 -2
- data/spec/runners/gridfs.rb +1 -1
- data/spec/runners/read_write_concern_document.rb +1 -1
- data/spec/runners/sdam.rb +1 -1
- data/spec/runners/server_selection.rb +1 -1
- data/spec/runners/server_selection_rtt.rb +1 -1
- data/spec/runners/unified/assertions.rb +3 -1
- data/spec/runners/unified/crud_operations.rb +77 -23
- data/spec/runners/unified/ddl_operations.rb +29 -1
- data/spec/runners/unified/entity_map.rb +3 -3
- data/spec/runners/unified/support_operations.rb +6 -1
- data/spec/runners/unified/test.rb +15 -3
- data/spec/runners/unified/test_group.rb +1 -1
- data/spec/shared/share/Dockerfile.erb +3 -3
- data/spec/shared/shlib/server.sh +1 -1
- data/spec/spec_tests/data/crud_unified/aggregate-let.yml +138 -0
- data/spec/spec_tests/data/crud_unified/aggregate-write-readPreference.yml +155 -0
- data/spec/spec_tests/data/crud_unified/db-aggregate-write-readPreference.yml +151 -0
- data/spec/spec_tests/data/crud_unified/deleteMany-let.yml +91 -0
- data/spec/spec_tests/data/crud_unified/deleteOne-let.yml +89 -0
- data/spec/spec_tests/data/crud_unified/find-let.yml +71 -0
- data/spec/spec_tests/data/crud_unified/findOneAndDelete-let.yml +88 -0
- data/spec/spec_tests/data/crud_unified/findOneAndReplace-let.yml +94 -0
- data/spec/spec_tests/data/crud_unified/findOneAndUpdate-let.yml +96 -0
- data/spec/spec_tests/data/crud_unified/updateMany-let.yml +103 -0
- data/spec/spec_tests/data/crud_unified/updateOne-let.yml +98 -0
- data/spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/DefaultNoMaxStaleness.yml +2 -2
- data/spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/LastUpdateTime.yml +3 -3
- data/spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/Nearest.yml +3 -3
- data/spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/Nearest2.yml +3 -3
- data/spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/PrimaryPreferred.yml +2 -2
- data/spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/PrimaryPreferred_tags.yml +2 -2
- data/spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/Secondary.yml +4 -4
- data/spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/SecondaryPreferred.yml +2 -2
- data/spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/SecondaryPreferred_tags.yml +4 -4
- data/spec/spec_tests/data/max_staleness/ReplicaSetNoPrimary/ZeroMaxStaleness.yml +2 -2
- data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/DefaultNoMaxStaleness.yml +2 -2
- data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/LastUpdateTime.yml +3 -3
- data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/LongHeartbeat.yml +2 -2
- data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/LongHeartbeat2.yml +2 -2
- data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/MaxStalenessTooSmall.yml +2 -2
- data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/MaxStalenessWithModePrimary.yml +2 -2
- data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Nearest.yml +3 -3
- data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Nearest2.yml +3 -3
- data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Nearest_tags.yml +2 -2
- data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/PrimaryPreferred.yml +2 -2
- data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred.yml +2 -2
- data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred_tags.yml +5 -5
- data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/SecondaryPreferred_tags2.yml +3 -3
- data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Secondary_tags.yml +5 -5
- data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/Secondary_tags2.yml +3 -3
- data/spec/spec_tests/data/max_staleness/ReplicaSetWithPrimary/ZeroMaxStaleness.yml +2 -2
- data/spec/spec_tests/data/max_staleness/Sharded/SmallMaxStaleness.yml +2 -2
- data/spec/spec_tests/data/max_staleness/Single/SmallMaxStaleness.yml +1 -1
- data/spec/spec_tests/data/max_staleness/Unknown/SmallMaxStaleness.yml +1 -1
- data/spec/spec_tests/data/sessions_unified/snapshot-sessions-not-supported-client-error.yml +69 -0
- data/spec/spec_tests/data/sessions_unified/snapshot-sessions-not-supported-server-error.yml +102 -0
- data/spec/spec_tests/data/sessions_unified/snapshot-sessions-unsupported-ops.yml +258 -0
- data/spec/spec_tests/data/sessions_unified/snapshot-sessions.yml +482 -0
- data/spec/spec_tests/seed_list_discovery_spec.rb +1 -1
- data/spec/spec_tests/sessions_unified_spec.rb +13 -0
- data/spec/support/certificates/atlas-ocsp-ca.crt +47 -40
- data/spec/support/certificates/atlas-ocsp.crt +106 -101
- data/spec/support/utils.rb +0 -31
- data.tar.gz.sig +0 -0
- metadata +1084 -1058
- metadata.gz.sig +0 -0
- data/spec/integration/find_options_spec.rb +0 -227
@@ -2,41 +2,42 @@ Certificate:
|
|
2
2
|
Data:
|
3
3
|
Version: 3 (0x2)
|
4
4
|
Serial Number:
|
5
|
-
|
5
|
+
08:dc:93:55:36:6d:c5:92:20:d0:a3:4c:a1:19:ab:2d
|
6
6
|
Signature Algorithm: sha256WithRSAEncryption
|
7
7
|
Issuer: C = US, O = DigiCert Inc, CN = DigiCert TLS RSA SHA256 2020 CA1
|
8
8
|
Validity
|
9
|
-
Not Before:
|
10
|
-
Not After :
|
9
|
+
Not Before: Apr 27 00:00:00 2021 GMT
|
10
|
+
Not After : May 25 23:59:59 2022 GMT
|
11
11
|
Subject: C = US, ST = New York, L = New York, O = "MongoDB, Inc.", CN = *.mongodb-dev.net
|
12
12
|
Subject Public Key Info:
|
13
13
|
Public Key Algorithm: rsaEncryption
|
14
|
-
Public-Key: (2048 bit)
|
14
|
+
RSA Public-Key: (2048 bit)
|
15
15
|
Modulus:
|
16
|
-
00:
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
16
|
+
00:bb:c1:de:f6:08:39:fb:f1:9a:f7:d4:68:6a:d7:
|
17
|
+
81:57:0c:09:b9:8f:39:e5:c8:b1:53:52:d8:64:0c:
|
18
|
+
e1:92:9c:ca:3f:92:46:86:5c:e2:8f:20:cf:f9:99:
|
19
|
+
d0:95:46:51:7e:55:f7:3d:62:1b:a4:e7:79:31:0c:
|
20
|
+
39:9d:23:bc:00:6f:2f:3d:5f:d4:88:1b:d0:9c:42:
|
21
|
+
26:45:1b:11:b2:d7:45:f5:aa:2f:07:43:da:bc:ab:
|
22
|
+
43:cb:0b:12:59:41:24:c3:bb:86:7f:2d:1a:c9:26:
|
23
|
+
d7:6b:25:57:48:9c:88:1a:20:fb:65:01:71:27:0c:
|
24
|
+
24:a7:23:40:dc:b6:69:4d:55:ef:14:ba:bd:05:b6:
|
25
|
+
cf:5e:b0:c2:f6:56:bc:88:e9:81:04:94:80:9b:cf:
|
26
|
+
ee:f3:15:05:79:61:41:21:4a:a1:23:29:66:90:e9:
|
27
|
+
d7:03:1e:4f:30:bd:81:46:e4:9b:ab:1f:f8:02:5c:
|
28
|
+
58:98:48:c5:50:16:16:80:0d:25:be:53:27:aa:8b:
|
29
|
+
ca:6c:d5:d9:89:50:2b:38:a6:55:fe:c3:0a:6a:db:
|
30
|
+
9c:1e:23:a2:84:93:4f:d1:a1:3d:00:48:ab:c1:2a:
|
31
|
+
3c:0a:59:a8:5b:d4:88:32:54:a9:de:88:de:1a:82:
|
32
|
+
ef:61:fa:90:fa:42:3d:1d:a8:98:d6:3b:a5:d4:eb:
|
33
|
+
c6:cf
|
34
34
|
Exponent: 65537 (0x10001)
|
35
35
|
X509v3 extensions:
|
36
36
|
X509v3 Authority Key Identifier:
|
37
|
-
B7:6B:A2:EA:A8:AA:84:8C:79:EA:B4:DA:0F:98:B2:C5:95:76:B9:F4
|
37
|
+
keyid:B7:6B:A2:EA:A8:AA:84:8C:79:EA:B4:DA:0F:98:B2:C5:95:76:B9:F4
|
38
|
+
|
38
39
|
X509v3 Subject Key Identifier:
|
39
|
-
|
40
|
+
3D:23:31:1E:EA:1C:8D:8A:09:AA:2D:2A:84:BF:06:31:DE:87:04:01
|
40
41
|
X509v3 Subject Alternative Name:
|
41
42
|
DNS:*.mongodb-dev.net, DNS:mongodb-dev.net
|
42
43
|
X509v3 Key Usage: critical
|
@@ -44,109 +45,113 @@ Certificate:
|
|
44
45
|
X509v3 Extended Key Usage:
|
45
46
|
TLS Web Server Authentication, TLS Web Client Authentication
|
46
47
|
X509v3 CRL Distribution Points:
|
48
|
+
|
47
49
|
Full Name:
|
48
|
-
URI:http://crl3.digicert.com/DigiCertTLSRSASHA2562020CA1
|
50
|
+
URI:http://crl3.digicert.com/DigiCertTLSRSASHA2562020CA1.crl
|
51
|
+
|
49
52
|
Full Name:
|
50
|
-
URI:http://crl4.digicert.com/DigiCertTLSRSASHA2562020CA1
|
53
|
+
URI:http://crl4.digicert.com/DigiCertTLSRSASHA2562020CA1.crl
|
54
|
+
|
51
55
|
X509v3 Certificate Policies:
|
52
56
|
Policy: 2.23.140.1.2.2
|
53
57
|
CPS: http://www.digicert.com/CPS
|
58
|
+
|
54
59
|
Authority Information Access:
|
55
60
|
OCSP - URI:http://ocsp.digicert.com
|
56
|
-
CA Issuers - URI:http://cacerts.digicert.com/DigiCertTLSRSASHA2562020CA1
|
57
|
-
|
61
|
+
CA Issuers - URI:http://cacerts.digicert.com/DigiCertTLSRSASHA2562020CA1.crt
|
62
|
+
|
63
|
+
X509v3 Basic Constraints: critical
|
58
64
|
CA:FALSE
|
59
65
|
CT Precertificate SCTs:
|
60
66
|
Signed Certificate Timestamp:
|
61
67
|
Version : v1 (0x0)
|
62
|
-
Log ID :
|
63
|
-
|
64
|
-
Timestamp :
|
68
|
+
Log ID : 29:79:BE:F0:9E:39:39:21:F0:56:73:9F:63:A5:77:E5:
|
69
|
+
BE:57:7D:9C:60:0A:F8:F9:4D:5D:26:5C:25:5D:C7:84
|
70
|
+
Timestamp : Apr 27 23:28:05.994 2021 GMT
|
65
71
|
Extensions: none
|
66
72
|
Signature : ecdsa-with-SHA256
|
67
|
-
30:45:02:
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
73
|
+
30:45:02:20:42:20:09:2C:F8:4F:9C:4D:70:0C:1D:A6:
|
74
|
+
39:A1:EC:20:4B:54:4B:50:5E:B5:B9:71:1F:6B:60:BC:
|
75
|
+
65:5B:E7:0F:02:21:00:BA:DE:65:82:26:65:7C:D7:01:
|
76
|
+
7C:36:51:71:CF:F7:2C:09:7B:C7:9A:1F:E4:6D:8E:11:
|
77
|
+
7E:DB:60:52:BC:82:8B
|
72
78
|
Signed Certificate Timestamp:
|
73
79
|
Version : v1 (0x0)
|
74
|
-
Log ID :
|
75
|
-
|
76
|
-
Timestamp :
|
80
|
+
Log ID : 22:45:45:07:59:55:24:56:96:3F:A1:2F:F1:F7:6D:86:
|
81
|
+
E0:23:26:63:AD:C0:4B:7F:5D:C6:83:5C:6E:E2:0F:02
|
82
|
+
Timestamp : Apr 27 23:28:05.942 2021 GMT
|
77
83
|
Extensions: none
|
78
84
|
Signature : ecdsa-with-SHA256
|
79
|
-
30:
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
85
|
+
30:44:02:20:0C:6B:5C:7F:31:B5:24:10:73:23:AF:27:
|
86
|
+
20:11:58:9E:40:A6:6A:BB:D8:48:0F:D1:4A:F1:F8:A9:
|
87
|
+
B0:30:1E:34:02:20:13:04:B5:82:28:59:D7:0B:86:7F:
|
88
|
+
C6:22:6E:9C:67:FF:F1:A3:9F:BF:54:AB:0D:B8:1A:8E:
|
89
|
+
16:D2:F1:8E:37:FF
|
84
90
|
Signed Certificate Timestamp:
|
85
91
|
Version : v1 (0x0)
|
86
|
-
Log ID :
|
87
|
-
|
88
|
-
Timestamp :
|
92
|
+
Log ID : 51:A3:B0:F5:FD:01:79:9C:56:6D:B8:37:78:8F:0C:A4:
|
93
|
+
7A:CC:1B:27:CB:F7:9E:88:42:9A:0D:FE:D4:8B:05:E5
|
94
|
+
Timestamp : Apr 27 23:28:06.392 2021 GMT
|
89
95
|
Extensions: none
|
90
96
|
Signature : ecdsa-with-SHA256
|
91
|
-
30:
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
97
|
+
30:46:02:21:00:D0:FE:FE:CA:E2:72:85:3A:A6:13:D0:
|
98
|
+
ED:55:8B:67:AF:86:F4:D7:BE:66:67:BB:99:BF:7C:10:
|
99
|
+
2D:28:0E:49:C3:02:21:00:BF:FF:BA:B8:4D:D1:B7:6A:
|
100
|
+
6B:E9:B3:E5:A6:93:CA:14:37:70:C1:4F:89:89:66:58:
|
101
|
+
3F:AA:22:B0:1E:F9:14:DF
|
96
102
|
Signature Algorithm: sha256WithRSAEncryption
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
a1:34:45:c0
|
103
|
+
78:e3:4f:d2:0f:56:13:0d:a3:5d:1a:68:d7:64:f5:60:d2:37:
|
104
|
+
7e:94:d7:4d:d3:5f:11:27:e8:0b:2c:74:6f:23:08:24:94:ba:
|
105
|
+
fc:b8:8a:33:3f:99:18:83:cd:4f:14:3a:82:f9:ba:f3:ff:2c:
|
106
|
+
b1:f5:c9:be:af:fd:16:79:bd:cf:39:ba:5c:47:88:b1:b1:23:
|
107
|
+
6b:6d:1c:67:5d:98:52:58:1d:72:ee:7e:c5:4b:e4:03:ca:ba:
|
108
|
+
47:bf:89:c5:48:c2:b1:0b:9c:3e:ed:3e:04:19:62:66:4c:c6:
|
109
|
+
44:6f:db:33:20:14:b1:df:c1:8f:3a:21:c1:59:0e:f8:70:3c:
|
110
|
+
fe:e0:ad:77:7b:5d:8c:de:a3:cd:d0:5c:84:36:10:00:42:28:
|
111
|
+
ee:7c:32:28:4d:41:94:3c:e4:36:7e:e5:d2:b3:d9:6f:f3:f5:
|
112
|
+
63:24:3f:9f:c6:64:cc:32:23:7e:fd:00:f4:c3:89:ac:5f:28:
|
113
|
+
f2:a3:af:a9:21:47:b1:f4:48:7c:79:6d:e7:6e:b8:35:15:ea:
|
114
|
+
6d:f2:13:35:8f:56:ea:e6:47:fb:a9:b4:f6:64:ee:b9:e8:07:
|
115
|
+
73:de:ef:20:c0:36:a9:10:bf:4a:df:29:90:fb:fc:05:85:f0:
|
116
|
+
62:94:7e:74:3a:42:cb:01:3d:ef:65:82:48:b8:87:8e:0e:17:
|
117
|
+
cb:6c:a0:dc
|
113
118
|
|
114
119
|
-----BEGIN CERTIFICATE-----
|
115
|
-
|
120
|
+
MIIGwTCCBamgAwIBAgIQCNyTVTZtxZIg0KNMoRmrLTANBgkqhkiG9w0BAQsFADBP
|
116
121
|
MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMSkwJwYDVQQDEyBE
|
117
|
-
|
118
|
-
|
122
|
+
aWdpQ2VydCBUTFMgUlNBIFNIQTI1NiAyMDIwIENBMTAeFw0yMTA0MjcwMDAwMDBa
|
123
|
+
Fw0yMjA1MjUyMzU5NTlaMGcxCzAJBgNVBAYTAlVTMREwDwYDVQQIEwhOZXcgWW9y
|
119
124
|
azERMA8GA1UEBxMITmV3IFlvcmsxFjAUBgNVBAoTDU1vbmdvREIsIEluYy4xGjAY
|
120
125
|
BgNVBAMMESoubW9uZ29kYi1kZXYubmV0MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
126
|
+
MIIBCgKCAQEAu8He9gg5+/Ga99RoateBVwwJuY855cixU1LYZAzhkpzKP5JGhlzi
|
127
|
+
jyDP+ZnQlUZRflX3PWIbpOd5MQw5nSO8AG8vPV/UiBvQnEImRRsRstdF9aovB0Pa
|
128
|
+
vKtDywsSWUEkw7uGfy0aySbXayVXSJyIGiD7ZQFxJwwkpyNA3LZpTVXvFLq9BbbP
|
129
|
+
XrDC9la8iOmBBJSAm8/u8xUFeWFBIUqhIylmkOnXAx5PML2BRuSbqx/4AlxYmEjF
|
130
|
+
UBYWgA0lvlMnqovKbNXZiVArOKZV/sMKatucHiOihJNP0aE9AEirwSo8ClmoW9SI
|
131
|
+
MlSp3ojeGoLvYfqQ+kI9HaiY1jul1OvGzwIDAQABo4IDfzCCA3swHwYDVR0jBBgw
|
132
|
+
FoAUt2ui6qiqhIx56rTaD5iyxZV2ufQwHQYDVR0OBBYEFD0jMR7qHI2KCaotKoS/
|
133
|
+
BjHehwQBMC0GA1UdEQQmMCSCESoubW9uZ29kYi1kZXYubmV0gg9tb25nb2RiLWRl
|
129
134
|
di5uZXQwDgYDVR0PAQH/BAQDAgWgMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEF
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
135
|
+
BQcDAjCBiwYDVR0fBIGDMIGAMD6gPKA6hjhodHRwOi8vY3JsMy5kaWdpY2VydC5j
|
136
|
+
b20vRGlnaUNlcnRUTFNSU0FTSEEyNTYyMDIwQ0ExLmNybDA+oDygOoY4aHR0cDov
|
137
|
+
L2NybDQuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0VExTUlNBU0hBMjU2MjAyMENBMS5j
|
138
|
+
cmwwPgYDVR0gBDcwNTAzBgZngQwBAgIwKTAnBggrBgEFBQcCARYbaHR0cDovL3d3
|
139
|
+
dy5kaWdpY2VydC5jb20vQ1BTMH0GCCsGAQUFBwEBBHEwbzAkBggrBgEFBQcwAYYY
|
140
|
+
aHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEcGCCsGAQUFBzAChjtodHRwOi8vY2Fj
|
141
|
+
ZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRUTFNSU0FTSEEyNTYyMDIwQ0ExLmNy
|
142
|
+
dDAMBgNVHRMBAf8EAjAAMIIBfgYKKwYBBAHWeQIEAgSCAW4EggFqAWgAdgApeb7w
|
143
|
+
njk5IfBWc59jpXflvld9nGAK+PlNXSZcJV3HhAAAAXkVqUdqAAAEAwBHMEUCIEIg
|
144
|
+
CSz4T5xNcAwdpjmh7CBLVEtQXrW5cR9rYLxlW+cPAiEAut5lgiZlfNcBfDZRcc/3
|
145
|
+
LAl7x5of5G2OEX7bYFK8gosAdQAiRUUHWVUkVpY/oS/x922G4CMmY63AS39dxoNc
|
146
|
+
buIPAgAAAXkVqUc2AAAEAwBGMEQCIAxrXH8xtSQQcyOvJyARWJ5Apmq72EgP0Urx
|
147
|
+
+KmwMB40AiATBLWCKFnXC4Z/xiJunGf/8aOfv1SrDbgajhbS8Y43/wB3AFGjsPX9
|
148
|
+
AXmcVm24N3iPDKR6zBsny/eeiEKaDf7UiwXlAAABeRWpSPgAAAQDAEgwRgIhAND+
|
149
|
+
/sricoU6phPQ7VWLZ6+G9Ne+Zme7mb98EC0oDknDAiEAv/+6uE3Rt2pr6bPlppPK
|
150
|
+
FDdwwU+JiWZYP6oisB75FN8wDQYJKoZIhvcNAQELBQADggEBAHjjT9IPVhMNo10a
|
151
|
+
aNdk9WDSN36U103TXxEn6AssdG8jCCSUuvy4ijM/mRiDzU8UOoL5uvP/LLH1yb6v
|
152
|
+
/RZ5vc85ulxHiLGxI2ttHGddmFJYHXLufsVL5APKuke/icVIwrELnD7tPgQZYmZM
|
153
|
+
xkRv2zMgFLHfwY86IcFZDvhwPP7grXd7XYzeo83QXIQ2EABCKO58MihNQZQ85DZ+
|
154
|
+
5dKz2W/z9WMkP5/GZMwyI379APTDiaxfKPKjr6khR7H0SHx5beduuDUV6m3yEzWP
|
155
|
+
VurmR/uptPZk7rnoB3Pe7yDANqkQv0rfKZD7/AWF8GKUfnQ6QssBPe9lgki4h44O
|
156
|
+
F8tsoNw=
|
152
157
|
-----END CERTIFICATE-----
|
data/spec/support/utils.rb
CHANGED
@@ -595,35 +595,4 @@ module Utils
|
|
595
595
|
end
|
596
596
|
end
|
597
597
|
end
|
598
|
-
|
599
|
-
module_function def load_spec_yaml_file(path)
|
600
|
-
permitted_classes = [
|
601
|
-
BigDecimal,
|
602
|
-
Date,
|
603
|
-
Time,
|
604
|
-
Range,
|
605
|
-
Regexp,
|
606
|
-
Symbol,
|
607
|
-
BSON::Binary,
|
608
|
-
BSON::Code,
|
609
|
-
BSON::CodeWithScope,
|
610
|
-
BSON::DbPointer,
|
611
|
-
BSON::Decimal128,
|
612
|
-
BSON::Int32,
|
613
|
-
BSON::Int64,
|
614
|
-
BSON::MaxKey,
|
615
|
-
BSON::MinKey,
|
616
|
-
BSON::ObjectId,
|
617
|
-
BSON::Regexp::Raw,
|
618
|
-
BSON::Symbol::Raw,
|
619
|
-
BSON::Timestamp,
|
620
|
-
BSON::Undefined,
|
621
|
-
]
|
622
|
-
if RUBY_VERSION < '2.6'
|
623
|
-
YAML.safe_load(File.read(path), permitted_classes, [], true)
|
624
|
-
else
|
625
|
-
# Here we have Ruby 2.6+ that supports the new syntax of `safe_load``.
|
626
|
-
YAML.safe_load(File.read(path), permitted_classes: permitted_classes, aliases: true)
|
627
|
-
end
|
628
|
-
end
|
629
598
|
end
|
data.tar.gz.sig
CHANGED
Binary file
|