synapse 2.204.1__py311-none-any.whl → 2.205.0__py311-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of synapse might be problematic. Click here for more details.

synapse/common.py CHANGED
@@ -481,9 +481,6 @@ def getDirSize(*paths):
481
481
  Args:
482
482
  *paths (str): A list of path elements.
483
483
 
484
- Notes:
485
- This is equivalent to ``du -B 1 -s`` and ``du -bs``.
486
-
487
484
  Returns:
488
485
  tuple: Tuple of total real and total apparent size of all normal files and directories underneath
489
486
  ``*paths`` plus ``*paths`` itself.
synapse/lib/version.py CHANGED
@@ -223,6 +223,6 @@ def reqVersion(valu, reqver,
223
223
  ##############################################################################
224
224
  # The following are touched during the release process by bumpversion.
225
225
  # Do not modify these directly.
226
- version = (2, 204, 1)
226
+ version = (2, 205, 0)
227
227
  verstring = '.'.join([str(x) for x in version])
228
- commit = '8698255e2c915ecb1b175a0d2aaf3b8274f51fe0'
228
+ commit = 'd985f8b93669529b2d90895baabb1dc289e287df'
@@ -317,20 +317,33 @@ class EconModule(s_module.CoreModule):
317
317
  )),
318
318
 
319
319
  ('econ:acct:balance', {}, (
320
+
320
321
  ('time', ('time', {}), {
321
322
  'doc': 'The time the balance was recorded.'}),
323
+
324
+ ('instrument', ('econ:pay:instrument', {}), {
325
+ 'doc': 'The financial instrument holding the balance.'}),
326
+
322
327
  ('pay:card', ('econ:pay:card', {}), {
323
- 'doc': 'The payment card holding the balance.'}),
328
+ 'deprecated': True,
329
+ 'doc': 'Deprecated. Please use :instrument.'}),
330
+
324
331
  ('crypto:address', ('crypto:currency:address', {}), {
325
- 'doc': 'The crypto currency address holding the balance.'}),
332
+ 'deprecated': True,
333
+ 'doc': 'Deprecated. Please use :instrument.'}),
334
+
326
335
  ('amount', ('econ:price', {}), {
327
336
  'doc': 'The account balance at the time.'}),
337
+
328
338
  ('currency', ('econ:currency', {}), {
329
339
  'doc': 'The currency of the balance amount.'}),
340
+
330
341
  ('delta', ('econ:price', {}), {
331
342
  'doc': 'The change since last regular sample.'}),
343
+
332
344
  ('total:received', ('econ:price', {}), {
333
345
  'doc': 'The total amount of currency received by the account.'}),
346
+
334
347
  ('total:sent', ('econ:price', {}), {
335
348
  'doc': 'The total amount of currency sent from the account.'}),
336
349
  )),
@@ -1101,6 +1101,8 @@ class ItModule(s_module.CoreModule):
1101
1101
  'edges': (
1102
1102
  (('it:prod:soft', 'uses', 'ou:technique'), {
1103
1103
  'doc': 'The software uses the technique.'}),
1104
+ (('it:prod:soft', 'uses', 'risk:vuln'), {
1105
+ 'doc': 'The software uses the vulnerability.'}),
1104
1106
  (('it:exec:query', 'found', None), {
1105
1107
  'doc': 'The target node was returned as a result of running the query.'}),
1106
1108
  (('it:app:snort:rule', 'detects', None), {
synapse/models/risk.py CHANGED
@@ -211,6 +211,8 @@ class RiskModule(s_module.CoreModule):
211
211
 
212
212
  (('risk:attack', 'targets', 'ou:industry'), {
213
213
  'doc': 'The attack targeted the industry.'}),
214
+ (('risk:compromise', 'targets', 'ou:industry'), {
215
+ 'doc': "The compromise was assessed to be based on the victim's role in the industry."}),
214
216
  (('risk:threat', 'targets', 'ou:industry'), {
215
217
  'doc': 'The threat cluster targets the industry.'}),
216
218
 
synapse/models/telco.py CHANGED
@@ -153,6 +153,10 @@ class TelcoModule(s_module.CoreModule):
153
153
  ('tel:call', ('guid', {}), {
154
154
  'doc': 'A guid for a telephone call record.'}),
155
155
 
156
+ ('tel:phone:type:taxonomy', ('taxonomy', {}), {
157
+ 'interfaces': ('meta:taxonomy',),
158
+ 'doc': 'A taxonomy of phone number types.'}),
159
+
156
160
  ('tel:txtmesg', ('guid', {}), {
157
161
  'doc': 'A guid for an individual text message.'}),
158
162
 
@@ -192,11 +196,18 @@ class TelcoModule(s_module.CoreModule):
192
196
  ),
193
197
 
194
198
  'forms': (
199
+
200
+ ('tel:phone:type:taxonomy', {}, ()),
195
201
  ('tel:phone', {}, (
202
+
203
+ ('type', ('tel:phone:type:taxonomy', {}), {
204
+ 'doc': 'The type of phone number.'}),
205
+
196
206
  ('loc', ('loc', {}), {
197
- 'doc': 'The location associated with the number.',
198
- }),
207
+ 'doc': 'The location associated with the number.'}),
208
+
199
209
  )),
210
+
200
211
  ('tel:call', {}, (
201
212
  ('src', ('tel:phone', {}), {
202
213
  'doc': 'The source phone number for a call.'
@@ -80,6 +80,7 @@ class CommonTest(s_t_utils.SynTest):
80
80
  self.true(s_common.vertup('30.40.50') > (9, 0))
81
81
 
82
82
  def test_common_file_helpers(self):
83
+
83
84
  # genfile
84
85
  with self.getTestDir() as testdir:
85
86
  fd = s_common.genfile(testdir, 'woot', 'foo.bin')
@@ -149,30 +150,10 @@ class CommonTest(s_t_utils.SynTest):
149
150
  retn = tuple(s_common.listdir(dirn, glob='*.txt'))
150
151
  self.eq(retn, ((path,)))
151
152
 
152
- # getDirSize: check against du
153
153
  real, appr = s_common.getDirSize(dirn)
154
-
155
- duapprstr = subprocess.check_output(['du', '-bs', dirn])
156
- duappr = int(duapprstr.split()[0])
157
- self.eq(duappr, appr)
158
-
159
- # The following does not work in a busybox based environment,
160
- # but manual testing of the getDirSize() API does confirm
161
- # that the results are still as expected when run there.
162
- argv = ['du', '-B', '1', '-s', dirn]
163
- proc = subprocess.run(argv, capture_output=True)
164
- try:
165
- proc.check_returncode()
166
- except subprocess.CalledProcessError as e:
167
- stderr = proc.stderr.decode()
168
- if 'unrecognized option: B' in stderr and 'BusyBox' in stderr:
169
- logger.warning(f'Unable to run {"".join(argv)} in BusyBox.')
170
- else:
171
- raise
172
- else:
173
- durealstr = proc.stdout.decode()
174
- dureal = int(durealstr.split()[0])
175
- self.eq(dureal, real)
154
+ self.eq(real % 512, 0)
155
+ self.gt(real, appr)
156
+ self.ge(appr, len(b'woot') + len(b'nope'))
176
157
 
177
158
  def test_common_intify(self):
178
159
  self.eq(s_common.intify(20), 20)
@@ -230,6 +230,7 @@ class EconTest(s_utils.SynTest):
230
230
  :time = 20211031
231
231
  :pay:card = *
232
232
  :crypto:address = btc/12345
233
+ :instrument=(econ:bank:account, *)
233
234
  :amount = 123.45
234
235
  :currency = usd
235
236
  :delta = 12.00
@@ -238,6 +239,7 @@ class EconTest(s_utils.SynTest):
238
239
  ]''')
239
240
  self.len(1, nodes)
240
241
  self.nn(nodes[0].get('pay:card'))
242
+ self.nn(nodes[0].get('instrument'))
241
243
  self.eq(nodes[0].get('time'), 1635638400000)
242
244
  self.eq(nodes[0].get('crypto:address'), ('btc', '12345'))
243
245
  self.eq(nodes[0].get('amount'), '123.45')
@@ -245,6 +247,7 @@ class EconTest(s_utils.SynTest):
245
247
  self.eq(nodes[0].get('delta'), '12')
246
248
  self.eq(nodes[0].get('total:received'), '13.14')
247
249
  self.eq(nodes[0].get('total:sent'), '15.16')
250
+ self.len(1, await core.nodes('econ:acct:balance:instrument -> econ:bank:account'))
248
251
 
249
252
  nodes = await core.nodes('''
250
253
  [ econ:receipt:item=*
@@ -202,11 +202,13 @@ class TelcoModelTest(s_t_utils.SynTest):
202
202
  self.raises(s_exc.BadTypeValu, t.norm, -1)
203
203
  self.raises(s_exc.BadTypeValu, t.norm, '+()*')
204
204
 
205
- nodes = await core.nodes('[tel:phone="+1 (703) 555-1212"]')
205
+ nodes = await core.nodes('[tel:phone="+1 (703) 555-1212" :type=fax ]')
206
206
  self.len(1, nodes)
207
207
  node = nodes[0]
208
208
  self.eq(node.ndef, ('tel:phone', '17035551212'))
209
209
  self.eq(node.get('loc'), 'us')
210
+ self.eq(node.get('type'), 'fax.')
211
+ self.len(1, await core.nodes('tel:phone:type=fax -> tel:phone:type:taxonomy'))
210
212
  # Phone # folding..
211
213
  self.len(1, await core.nodes('[tel:phone="+1 (703) 555-2424"]'))
212
214
  self.len(1, await core.nodes('tel:phone=17035552424'))
synapse/tests/utils.py CHANGED
@@ -317,6 +317,7 @@ testmodel = {
317
317
  ('test:int', ('int', {}), {}),
318
318
  ('test:float', ('float', {}), {}),
319
319
  ('test:str', ('str', {}), {}),
320
+ ('test:strregex', ('str', {'lower': True, 'strip': True, 'regex': r'^#[^\p{Z}#]+$'}), {}),
320
321
  ('test:migr', ('str', {}), {}),
321
322
  ('test:auto', ('str', {}), {}),
322
323
  ('test:edge', ('edge', {}), {}),
@@ -380,6 +381,7 @@ testmodel = {
380
381
  ('ints', ('array', {'type': 'test:int'}), {}),
381
382
  ('strs', ('array', {'type': 'test:str', 'split': ','}), {}),
382
383
  ('strsnosplit', ('array', {'type': 'test:str'}), {}),
384
+ ('strregexs', ('array', {'type': 'test:strregex', 'uniq': True, 'sorted': True}), {}),
383
385
  )),
384
386
  ('test:arrayform', {}, (
385
387
  )),
@@ -458,6 +460,7 @@ testmodel = {
458
460
  ('ndefs', ('array', {'type': 'ndef'}), {}),
459
461
  ('somestr', ('test:str', {}), {}),
460
462
  )),
463
+ ('test:strregex', {}, ()),
461
464
 
462
465
  ('test:migr', {}, (
463
466
  ('bar', ('ndef', {}), {}),
@@ -1,15 +1,14 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: synapse
3
- Version: 2.204.1
3
+ Version: 2.205.0
4
4
  Summary: Synapse Intelligence Analysis Framework
5
5
  Author-email: The Vertex Project LLC <root@vertex.link>
6
- License: Apache License 2.0
6
+ License-Expression: Apache-2.0
7
7
  Project-URL: Homepage, https://vertex.link
8
8
  Project-URL: Documentation, https://synapse.docs.vertex.link
9
9
  Project-URL: Repository, https://github.com/vertexproject/synapse
10
10
  Project-URL: Changelog, https://synapse.docs.vertex.link/en/latest/synapse/changelog.html
11
11
  Classifier: Development Status :: 5 - Production/Stable
12
- Classifier: License :: OSI Approved :: Apache Software License
13
12
  Classifier: Topic :: Database :: Database Engines/Servers
14
13
  Classifier: Topic :: System :: Clustering
15
14
  Classifier: Topic :: System :: Distributed Computing
@@ -1,7 +1,7 @@
1
1
  synapse/__init__.py,sha256=R2kOXlF5j-8m6G0JkHuN7rXRPg_tHLmbMxr__94mHQk,1145
2
2
  synapse/axon.py,sha256=qim3OMa7kRj2EPbQVWBWUfRD5wNGc23b3guZptZzWm8,65845
3
3
  synapse/cells.py,sha256=eNvdglfAoTURVhGOLGcgMXCGpfsIX1a02SQnyiklo3E,308
4
- synapse/common.py,sha256=rSyWd3gfW4NnVDLS6DnSSv7ML1mY6YqnS_xuB4chuyk,36959
4
+ synapse/common.py,sha256=bRbhV_alX6duXvTcbJ2KRZs8qUsD2SxQ6ww6v9DKKiQ,36886
5
5
  synapse/cortex.py,sha256=I-8VoWtUXCLJY4URvraHitA7VAVv-WFLLHy_Xy8_IoM,261501
6
6
  synapse/cryotank.py,sha256=2-MzdTZ1AofkBp2ew3ZrZLo33rHRtNVTlr4YlXEfdrc,12130
7
7
  synapse/daemon.py,sha256=hSD0-sXPGwblcbnCKRvsx9DCd-2cplB89dLWIlAN4UU,17051
@@ -158,7 +158,7 @@ synapse/lib/time.py,sha256=FKTYwpdvpuAj8p8sSodRjOxoA7Vu67CIbbXz55gtghk,9231
158
158
  synapse/lib/trigger.py,sha256=mnfkoBHB88JfqPoxb5oflvAaBKZpNvYdxP247YS53fE,20697
159
159
  synapse/lib/types.py,sha256=plPuYWNaJmCWjYIOWIkDhh8NhTONATZD6d85qf2NUfM,69740
160
160
  synapse/lib/urlhelp.py,sha256=ljhnF91z9ihyOLdZZ6OoQYCN1WYjOj1imukD45xiKU0,3320
161
- synapse/lib/version.py,sha256=Y6XPKzbY2QT1wF4M5IfxUls74ihYbPvRpS9ac8lzVqY,7162
161
+ synapse/lib/version.py,sha256=QNQbo_CQFgyXhEui9t62wpl9wxFg_Cr0dSmQQvtvYmc,7162
162
162
  synapse/lib/view.py,sha256=-yuxjVBp8I1RMPuxVfBJzjx64aPBo-Rr_-9vxKVmx_w,62071
163
163
  synapse/lib/crypto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
164
164
  synapse/lib/crypto/coin.py,sha256=_dhlkzIrHT8BvHdJOWK7PDThz3sK3dDRnWAUqjRpZJc,4910
@@ -234,13 +234,13 @@ synapse/models/biz.py,sha256=01i9qnxrWwWt712dNUCAOHqdL1N0TY84P1utx_O5G8g,14909
234
234
  synapse/models/crypto.py,sha256=dEgg3n6cY1hiBfnL8QbgJW7hQw-DWOKhbLWkq4hyXzQ,30160
235
235
  synapse/models/dns.py,sha256=gKAOqoBxL3-wIEgkOEJ7Ycz1SCjy2yzNgKcLuW43wKY,15363
236
236
  synapse/models/doc.py,sha256=dygQ5zskiyRHwEQHGjoUOgS9Dt1KOUbimRoWBji0vbw,6577
237
- synapse/models/economic.py,sha256=oA1E7X86_DqBLjUke5-xpfB_vXn2OsbQbx9MAav68FA,22726
237
+ synapse/models/economic.py,sha256=7MT5Y6FFg28-3iXT-_JLfwdHwyodwZQz43K2oRznbsk,22956
238
238
  synapse/models/entity.py,sha256=vwjx5iVDpxdkGlII5GulgIHuDRX9kJIcO7Ge-XanQ58,415
239
239
  synapse/models/files.py,sha256=4nA0LGK2gKEjErzTnFfIX7kxNn8c_C7xWAfiwWFz5zY,34396
240
240
  synapse/models/geopol.py,sha256=1DGxLJ60QlnSIe3WxxViYQ3KFSwm89vvGc534bbSNBo,11304
241
241
  synapse/models/geospace.py,sha256=Ix54xGdGRZNqLI0r6r9OA1t6vqB3XM1lkoy86Vjt5XA,21155
242
242
  synapse/models/inet.py,sha256=CajAF1E9c0CvjpMruR7Nl66-kDpFJgTuE4ugBarMHOs,174560
243
- synapse/models/infotech.py,sha256=CtmmBtM_40wvG9SqQl4GGwZFafk9oBGwgQrgvtbzT0E,152667
243
+ synapse/models/infotech.py,sha256=XWOq6rfCXmgWMgmUixEXGjoFZWUoOfrAVwIWqGQmiH4,152794
244
244
  synapse/models/language.py,sha256=hBVVIf5kc_FSIV7HZhWnberoc9ssxuqeff4fqC9iz4o,3640
245
245
  synapse/models/material.py,sha256=UvmnBEkbhBbdbnvWtTlgGJAJlKDrx9E-YSQ3K49ws5M,5405
246
246
  synapse/models/math.py,sha256=5zDLSwGbOcWI6T5-KspPL20sR8Bcs59pnRK2nEELzss,1775
@@ -249,10 +249,10 @@ synapse/models/orgs.py,sha256=1zAIdOA0mf5O-6RGMcf5oDmLM7kkIjWxZN3voThOAnc,71526
249
249
  synapse/models/person.py,sha256=B_R1zCuZLFqxnmxfLLy4pp6N-GqPNQTZdlM1TdufwfQ,27905
250
250
  synapse/models/planning.py,sha256=vmrY4d3WRxizrNU1YBe36NGZTuuu4lhGS8KI5lCZ5yQ,7302
251
251
  synapse/models/proj.py,sha256=vl-2uZouiWSey8t4lTNA4BxUKhX94rqm3SuLrodQUP8,9904
252
- synapse/models/risk.py,sha256=knVsNKQrJkgGuihVwWV_qQfO5dvLNvuu98f8zc5g5kI,57949
252
+ synapse/models/risk.py,sha256=29pa1z35JJcfcPHFIBxoO9T0UJn2Ua3qWd3sYzZ5lug,58125
253
253
  synapse/models/science.py,sha256=oSkKbjmVncYcVkVgx8rhM08XtcsgDgjf3mpunz5kL30,4329
254
254
  synapse/models/syn.py,sha256=u6-EB_2nMCD2LEo3Ir5Iduay2JBl2a2TF1TE26jmr1c,14789
255
- synapse/models/telco.py,sha256=S6wGvwK5WikFwwrru9kE10KreQ-RubU288J7atVH-cc,15676
255
+ synapse/models/telco.py,sha256=IiLQfeFXMJYxWLuwDKL4wC51MOanB3VaKxrHym28L0g,16023
256
256
  synapse/models/transport.py,sha256=GVyytNyhp6sB28x1x0bUBETaOXpWyR_JawVvMTlmz5M,29757
257
257
  synapse/models/gov/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
258
258
  synapse/models/gov/cn.py,sha256=NX0QBac_edA3B1WfWVi2UO6ZGeFEJ6nW2Rzq8t8Rrvg,876
@@ -272,7 +272,7 @@ synapse/tests/test_axon.py,sha256=t72EkJcehvkZd-v83K7yLIRICDmNArmE1UUvRc_5dfA,48
272
272
  synapse/tests/test_cmds_boss.py,sha256=SdBwM2qJHFzzfrjWYiZOLBKeye8uru7KeJ3NU_YSkWw,4718
273
273
  synapse/tests/test_cmds_cortex.py,sha256=hVe4xxp14vFHbJywnWxFLkDvbxyc_XHBcP6HOUA85Ag,17187
274
274
  synapse/tests/test_cmds_hive.py,sha256=YospZkpYj3kjSFxpY_BwSbWLSU200AX1uYJzgi_wtb4,5904
275
- synapse/tests/test_common.py,sha256=mByFvpwAPu6j5Pqxiw71D6Itfpkeff47O4UITMNo67w,18010
275
+ synapse/tests/test_common.py,sha256=h9qBJmIc0EA70OIFVsBEGL8mZ4M7IkEBdWbhBNxGzMQ,17093
276
276
  synapse/tests/test_cortex.py,sha256=O5_6fYYA-F-fpsNv0Yc4S1oUUJvQNMWwWveS-cNw54Q,368643
277
277
  synapse/tests/test_cryotank.py,sha256=ms2VkL0aUskMi-LArTzRt8LUYw0z_y8nQfOOBDiCkvI,12027
278
278
  synapse/tests/test_daemon.py,sha256=QqKELhm1HF0q_8Kbk0Uf9fnUg3K5nLQ7MocGIyuKKIw,7715
@@ -400,7 +400,7 @@ synapse/tests/test_model_biz.py,sha256=73NRxQlu3MqZSH5-nXOhBR0CLpt7Nm2jjl-VwINxJ
400
400
  synapse/tests/test_model_crypto.py,sha256=7lm36xN4kPTBbhL2wmrfzc7KK-y2c3Fy0UTTqvUocn8,28220
401
401
  synapse/tests/test_model_dns.py,sha256=vIplDlxrFoKYkt4vR9EgqPFGD-az0AA0SJ45MTLw6Ro,18976
402
402
  synapse/tests/test_model_doc.py,sha256=29YGIuXgAllvx7v8pHlPofDRMbLg1lAu32icMW_m8Es,3764
403
- synapse/tests/test_model_economic.py,sha256=l8NNK9NFOQdQBEFPFRwo6QK9kohDXywh_kdSOcT3MK8,16200
403
+ synapse/tests/test_model_economic.py,sha256=KwSttYgwHaZ_4Qhf6rKO6W9xXxgLV0gMj20ag3iu0Z0,16398
404
404
  synapse/tests/test_model_files.py,sha256=2KTR4_dxgWyBMN4bb_MEX1d5y1h7ngjcE13OyWr9mrI,26352
405
405
  synapse/tests/test_model_geopol.py,sha256=Z1hAu2zBuC38f6F-yb-oLvfbketYrnRy6XJ0hZE1XYs,8137
406
406
  synapse/tests/test_model_geospace.py,sha256=8ATsx662mrcKzurMpQGbshnQPYOWqO7wxOWpoxefa3s,21925
@@ -420,7 +420,7 @@ synapse/tests/test_model_proj.py,sha256=hCuM-CTyCAvqVPy7klP6NXOEtgJ61OyyT0x8mcJs
420
420
  synapse/tests/test_model_risk.py,sha256=t2IVWF8h1Kj7hERUZR_wqMikFJl63m9yz_ZYB60z1O4,31543
421
421
  synapse/tests/test_model_science.py,sha256=2T9VxdzpltDufgjkUB95q97TQP9AxH2-T_sBbHfPDRk,2450
422
422
  synapse/tests/test_model_syn.py,sha256=Air11lZMj6D6A5BDOMQV5mjcI873gNyUmfK5WMua5Cg,31900
423
- synapse/tests/test_model_telco.py,sha256=5ToiRhCX7faiDx4lDMV6b7E9WteN3PcBlznYF6GA2co,13166
423
+ synapse/tests/test_model_telco.py,sha256=jtAN_I_DCYAoCgwg-P9-DeJiIaPOkWyLEfsEOpTkxHc,13314
424
424
  synapse/tests/test_model_transport.py,sha256=kAR16Uc6szPZj3AN_sIjaHf3O0st_oV9bXixfF1QRGk,16308
425
425
  synapse/tests/test_servers_axon.py,sha256=x7NT6F32yuqP1RNwz1kUHWKg-zewL3Zt3N5a-kMbBG8,1098
426
426
  synapse/tests/test_servers_cortex.py,sha256=2td41cPfC5-hJ1C6sH5NsN-ixjfXPCpnPllPagfxVX0,1355
@@ -460,7 +460,7 @@ synapse/tests/test_tools_storm.py,sha256=xCDr3RumtBpFsxq0BhI0rRd6S83zoFI0oHeb6Vl
460
460
  synapse/tests/test_utils.py,sha256=L77-3no2UIZcBFx9kI2j-uUidILGPNUpnLiytayB0ig,9948
461
461
  synapse/tests/test_utils_getrefs.py,sha256=Cv0LT0DF-tCGwBmOXsYUVNIJdXQA73yRBgdSWxFL3oA,2623
462
462
  synapse/tests/test_utils_stormcov.py,sha256=H9p1vFH8kNE6qMLrGzSV0eH7KOgdZFh7QuarFe47FtU,6149
463
- synapse/tests/utils.py,sha256=mOfKDJu00-v_WYXguvc2uqmqSD7Eg1MHYXa-5SCM2RI,78297
463
+ synapse/tests/utils.py,sha256=gRS3Zz3ftVUQnp_6B1C9l0HRsZ6SEEOHw2M0H4RoDgE,78530
464
464
  synapse/tests/files/TestUtilsGetrefs.test_basics.yaml,sha256=Ch8cEGFYfDUCZTEvzAqW5Ir79OnYb49pq4i9OJ7K9T0,8257
465
465
  synapse/tests/files/__init__.py,sha256=G0DpSelVbC5S6PncHNL3QjgFvjCfaq7Kb1GgksJgEO4,1774
466
466
  synapse/tests/files/cpedata.json,sha256=e_wajnxn4ZClQ3-hwlOxK-2MWzLQwrqgtWVUV5dUVF4,13799445
@@ -618,8 +618,8 @@ synapse/vendor/xrpl/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJW
618
618
  synapse/vendor/xrpl/tests/test_codec.py,sha256=Zwq6A5uZUK_FWDL3BA932c5b-rL3hnC6efobWHSLC4o,6651
619
619
  synapse/vendor/xrpl/tests/test_main.py,sha256=kZQwWk7I6HrP-PMvLdsUUN4POvWD9I-iXDHOwdeF090,4299
620
620
  synapse/vendor/xrpl/tests/test_main_test_cases.py,sha256=vTlUM4hJD2Hd2wCIdd9rfsvcMZZZQmNHWdCTTFeGz2Y,4221
621
- synapse-2.204.1.dist-info/licenses/LICENSE,sha256=xllut76FgcGL5zbIRvuRc7aezPbvlMUTWJPsVr2Sugg,11358
622
- synapse-2.204.1.dist-info/METADATA,sha256=ec8WagwovHUfks_wBxZ3MEqWYLRSVsp14zDL7WdEl7I,4678
623
- synapse-2.204.1.dist-info/WHEEL,sha256=ilKZWa5xdMD6gLJ77frJgKfyZz-lm-0mXCxKDB7nciU,93
624
- synapse-2.204.1.dist-info/top_level.txt,sha256=v_1YsqjmoSCzCKs7oIhzTNmWtSYoORiBMv1TJkOhx8A,8
625
- synapse-2.204.1.dist-info/RECORD,,
621
+ synapse-2.205.0.dist-info/licenses/LICENSE,sha256=xllut76FgcGL5zbIRvuRc7aezPbvlMUTWJPsVr2Sugg,11358
622
+ synapse-2.205.0.dist-info/METADATA,sha256=y6xMdRpWh37JpVuEoBJKh93_8KmaCN3lS51fBMwLXLs,4618
623
+ synapse-2.205.0.dist-info/WHEEL,sha256=ky1wqorHl2SfzZVBwTGUq24xVn07Gwf80XRasCPZT3o,93
624
+ synapse-2.205.0.dist-info/top_level.txt,sha256=v_1YsqjmoSCzCKs7oIhzTNmWtSYoORiBMv1TJkOhx8A,8
625
+ synapse-2.205.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (78.0.2)
2
+ Generator: setuptools (78.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py311-none-any
5
5