synapse 2.181.0__py311-none-any.whl → 2.182.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/lib/auth.py CHANGED
@@ -579,11 +579,28 @@ class Auth(s_nexus.Pusher):
579
579
  await self.feedBeholder('user:add', user.pack())
580
580
 
581
581
  async def addRole(self, name, iden=None):
582
+ '''
583
+ Add a Role to the Auth system.
584
+
585
+ Args:
586
+ name (str): The name of the role.
587
+ iden (str): A optional iden to use as the role iden.
588
+
589
+ Returns:
590
+ Role: A Role.
591
+ '''
582
592
  if self.roleidenbynamecache.get(name) is not None:
583
593
  raise s_exc.DupRoleName(mesg=f'Duplicate role name, {name=} already exists.', name=name)
584
594
 
585
595
  if iden is None:
586
596
  iden = s_common.guid()
597
+ else:
598
+ if not s_common.isguid(iden):
599
+ raise s_exc.BadArg(name='iden', arg=iden, mesg=f'Argument {iden} it not a valid iden.')
600
+
601
+ if self.rolebyidencache.get(iden) is not None:
602
+ raise s_exc.DupIden(name=name, iden=iden,
603
+ mesg=f'Role already exists for {iden=}.')
587
604
 
588
605
  await self._push('role:add', iden, name)
589
606
 
synapse/lib/cell.py CHANGED
@@ -443,8 +443,8 @@ class CellApi(s_base.Base):
443
443
  return await self.cell.delUser(iden)
444
444
 
445
445
  @adminapi(log=True)
446
- async def addRole(self, name):
447
- return await self.cell.addRole(name)
446
+ async def addRole(self, name, iden=None):
447
+ return await self.cell.addRole(name, iden=iden)
448
448
 
449
449
  @adminapi(log=True)
450
450
  async def delRole(self, iden):
@@ -1637,12 +1637,10 @@ class Cell(s_nexus.Pusher, s_telepath.Aware):
1637
1637
  f'{disk.free / disk.total * 100:.2f}%), setting Cell to read-only.'
1638
1638
  logger.error(mesg)
1639
1639
 
1640
- elif nexsroot.readonly:
1641
-
1642
- await nexsroot.delWriteHold(diskspace)
1640
+ elif nexsroot.readonly and await nexsroot.delWriteHold(diskspace):
1643
1641
 
1644
1642
  mesg = f'Free space on {self.dirn} above minimum threshold (currently ' \
1645
- f'{disk.free / disk.total * 100:.2f}%), re-enabling writes.'
1643
+ f'{disk.free / disk.total * 100:.2f}%), removing free space write hold.'
1646
1644
  logger.error(mesg)
1647
1645
 
1648
1646
  await self._checkspace.timewait(timeout=self.FREE_SPACE_CHECK_FREQ)
@@ -2883,8 +2881,8 @@ class Cell(s_nexus.Pusher, s_telepath.Aware):
2883
2881
  logger.info(f'Deleted user={name}',
2884
2882
  extra=await self.getLogExtra(target_user=iden, target_username=name, status='DELETE'))
2885
2883
 
2886
- async def addRole(self, name):
2887
- role = await self.auth.addRole(name)
2884
+ async def addRole(self, name, iden=None):
2885
+ role = await self.auth.addRole(name, iden=iden)
2888
2886
  logger.info(f'Added role={name}',
2889
2887
  extra=await self.getLogExtra(target_role=role.iden, target_rolename=role.name, status='CREATE'))
2890
2888
  return role.pack()
synapse/lib/storm.py CHANGED
@@ -3691,6 +3691,12 @@ class MergeCmd(Cmd):
3691
3691
  expressions for specifying tags. For more information on tag glob
3692
3692
  expressions, check the Synapse documentation for $node.globtags().
3693
3693
 
3694
+ NOTE: If --wipe is specified, and there are nodes that cannot be merged,
3695
+ they will be skipped (with a warning printed) and removed when
3696
+ the top layer is replaced. This should occur infrequently, for example,
3697
+ when a form is locked due to deprecation, a form no longer exists,
3698
+ or the data at rest fails normalization.
3699
+
3694
3700
  Examples:
3695
3701
 
3696
3702
  // Having tagged a new #cno.mal.redtree subgraph in a forked view...
@@ -3923,6 +3929,8 @@ class MergeCmd(Cmd):
3923
3929
  async with await runt.snap.view.parent.snap(user=runt.user.iden) as snap:
3924
3930
  snap.strict = False
3925
3931
 
3932
+ snap.on('warn', runt.snap.dist)
3933
+
3926
3934
  async for node, path in genr:
3927
3935
 
3928
3936
  # the timestamp for the adds/subs of each node merge will match
@@ -3971,10 +3979,14 @@ class MergeCmd(Cmd):
3971
3979
  await runt.printf(f'{nodeiden} {form} = {valurepr}')
3972
3980
  else:
3973
3981
  delnode = True
3974
- protonode = await editor.addNode(form, valu[0])
3982
+ if (protonode := await editor.addNode(form, valu[0])) is None:
3983
+ await asyncio.sleep(0)
3984
+ continue
3975
3985
 
3976
3986
  elif doapply:
3977
- protonode = await editor.addNode(form, node.ndef[1], norminfo={})
3987
+ if (protonode := await editor.addNode(form, node.ndef[1], norminfo={})) is None:
3988
+ await asyncio.sleep(0)
3989
+ continue
3978
3990
 
3979
3991
  for name, (valu, stortype) in sode.get('props', {}).items():
3980
3992
 
@@ -4020,7 +4032,9 @@ class MergeCmd(Cmd):
4020
4032
  subs.append((s_layer.EDIT_PROP_DEL, (name, valu, stortype), ()))
4021
4033
 
4022
4034
  if doapply and protonode is None:
4023
- protonode = await editor.addNode(form, node.ndef[1], norminfo={})
4035
+ if (protonode := await editor.addNode(form, node.ndef[1], norminfo={})) is None:
4036
+ await asyncio.sleep(0)
4037
+ continue
4024
4038
 
4025
4039
  if not notags:
4026
4040
  for tag, valu in sode.get('tags', {}).items():
@@ -1969,6 +1969,7 @@ class LibRoles(s_stormtypes.Lib):
1969
1969
  'type': {'type': 'function', '_funcname': '_methRolesAdd',
1970
1970
  'args': (
1971
1971
  {'name': 'name', 'type': 'str', 'desc': 'The name of the role.', },
1972
+ {'name': 'iden', 'type': 'str', 'desc': 'The iden to assign to the new role.', 'default': None},
1972
1973
  ),
1973
1974
  'returns': {'type': 'auth:role', 'desc': 'The new role object.', }}},
1974
1975
  {'name': 'del', 'desc': 'Delete a Role from the Cortex.',
@@ -2028,10 +2029,11 @@ class LibRoles(s_stormtypes.Lib):
2028
2029
  if rdef is not None:
2029
2030
  return Role(self.runt, rdef['iden'])
2030
2031
 
2031
- async def _methRolesAdd(self, name):
2032
+ async def _methRolesAdd(self, name, iden=None):
2032
2033
  if not self.runt.allowed(('auth', 'role', 'add')):
2033
2034
  self.runt.confirm(('storm', 'lib', 'auth', 'roles', 'add'))
2034
- rdef = await self.runt.snap.core.addRole(name)
2035
+ iden = await s_stormtypes.tostr(iden, noneok=True)
2036
+ rdef = await self.runt.snap.core.addRole(name, iden=iden)
2035
2037
  return Role(self.runt, rdef['iden'])
2036
2038
 
2037
2039
  async def _methRolesDel(self, iden):
@@ -38,7 +38,7 @@ class LibEasyPerm(s_stormtypes.Lib):
38
38
  'type': {'type': 'function', '_funcname': '_allowedEasyPerm',
39
39
  'args': (
40
40
  {'name': 'edef', 'type': 'dict', 'desc': 'The easy perm dictionary to check.'},
41
- {'name': 'level', 'type': 'str', 'desc': 'The required permission level number.'},
41
+ {'name': 'level', 'type': 'int', 'desc': 'The required permission level number.'},
42
42
  ),
43
43
  'returns': {'type': 'boolean',
44
44
  'desc': 'True if the user meets the requirement, false otherwise.', }}},
@@ -46,7 +46,7 @@ class LibEasyPerm(s_stormtypes.Lib):
46
46
  'type': {'type': 'function', '_funcname': '_confirmEasyPerm',
47
47
  'args': (
48
48
  {'name': 'edef', 'type': 'dict', 'desc': 'The easy perm dictionary to check.'},
49
- {'name': 'level', 'type': 'str', 'desc': 'The required permission level number.'},
49
+ {'name': 'level', 'type': 'int', 'desc': 'The required permission level number.'},
50
50
  {'name': 'mesg', 'type': 'str', 'default': None,
51
51
  'desc': 'Optional error message to present if user does not have required permission level.'},
52
52
  ),
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, 181, 0)
226
+ version = (2, 182, 0)
227
227
  verstring = '.'.join([str(x) for x in version])
228
- commit = '9241eebaad4a9c7bb007c6c5abb63be4e4ffac44'
228
+ commit = '72e535c8c22073fd1b7428121849de4b9fb034ae'
@@ -2355,6 +2355,18 @@ class CellTest(s_t_utils.SynTest):
2355
2355
 
2356
2356
  async with self.getTestCore() as core:
2357
2357
 
2358
+ # This tmp_reason assertion seems counter-intuitive at first; but it's really
2359
+ # asserting that the message which was incorrectly being logged is no longer logged.
2360
+ log_enable_writes = f'Free space on {core.dirn} above minimum threshold'
2361
+ with self.getAsyncLoggerStream('synapse.lib.cell', log_enable_writes) as stream:
2362
+ await core.nexsroot.addWriteHold(tmp_reason := 'something else')
2363
+ self.false(await stream.wait(1))
2364
+ stream.seek(0)
2365
+ self.eq(stream.read(), '')
2366
+
2367
+ await core.nexsroot.delWriteHold(tmp_reason)
2368
+ revt.clear()
2369
+
2358
2370
  self.len(1, await core.nodes('[inet:fqdn=vertex.link]'))
2359
2371
 
2360
2372
  with mock.patch('shutil.disk_usage', full_disk):
@@ -1,3 +1,4 @@
1
+ import copy
1
2
  import json
2
3
  import asyncio
3
4
  import datetime
@@ -1554,6 +1555,43 @@ class StormTest(s_t_utils.SynTest):
1554
1555
  msgs = await core.stormlist('test:ro | merge', opts=altview)
1555
1556
  self.stormIsInWarn("Cannot merge read only property with conflicting value", msgs)
1556
1557
 
1558
+ async def test_storm_merge_stricterr(self):
1559
+
1560
+ conf = {'modules': [('synapse.tests.utils.DeprModule', {})]}
1561
+ async with self.getTestCore(conf=copy.deepcopy(conf)) as core:
1562
+
1563
+ await core.nodes('$lib.model.ext.addFormProp(test:deprprop, _str, (str, ({})), ({}))')
1564
+
1565
+ viewiden = await core.callStorm('return($lib.view.get().fork().iden)')
1566
+ asfork = {'view': viewiden}
1567
+
1568
+ await core.nodes('[ test:deprprop=base ]')
1569
+
1570
+ self.len(1, await core.nodes('test:deprprop=base [ :_str=foo +#test ]', opts=asfork))
1571
+ await core.nodes('[ test:deprprop=fork test:str=other ]', opts=asfork)
1572
+
1573
+ await core.nodes('model.deprecated.lock test:deprprop')
1574
+
1575
+ msgs = await core.stormlist('diff | merge --apply --no-tags', opts=asfork)
1576
+ self.stormIsInWarn('Form test:deprprop is locked due to deprecation for valu=base', msgs)
1577
+ self.stormIsInWarn('Form test:deprprop is locked due to deprecation for valu=fork', msgs)
1578
+ self.stormHasNoErr(msgs)
1579
+
1580
+ msgs = await core.stormlist('diff | merge --apply --only-tags', opts=asfork)
1581
+ self.stormIsInWarn('Form test:deprprop is locked due to deprecation for valu=base', msgs)
1582
+ self.stormHasNoErr(msgs)
1583
+
1584
+ self.eq({
1585
+ 'meta:source': 1,
1586
+ 'syn:tag': 1,
1587
+ 'test:deprprop': 1,
1588
+ 'test:str': 1,
1589
+ }, await core.callStorm('return($lib.view.get().getFormCounts())'))
1590
+
1591
+ nodes = await core.nodes('test:deprprop')
1592
+ self.eq(['base'], [n.ndef[1] for n in nodes])
1593
+ self.eq([], nodes[0].getTags())
1594
+
1557
1595
  async def test_storm_merge_opts(self):
1558
1596
 
1559
1597
  async with self.getTestCore() as core:
@@ -988,6 +988,21 @@ class StormLibAuthTest(s_test.SynTest):
988
988
  msgs = await core.stormlist(f'$lib.auth.roles.del({iden})', opts=aslowuser)
989
989
  self.stormHasNoWarnErr(msgs)
990
990
 
991
+ # Use arbitrary idens when creating roles.
992
+ iden = '9e0998f68b662ed3776b6ce33a2d21eb'
993
+ with self.raises(s_exc.BadArg):
994
+ await core.callStorm('$lib.auth.roles.add(runners, iden=12345)')
995
+ opts = {'vars': {'iden': iden}}
996
+ rdef = await core.callStorm('$r=$lib.auth.roles.add(runners, iden=$iden) return ( $r )',
997
+ opts=opts)
998
+ self.eq(rdef.get('iden'), iden)
999
+ ret = await core.callStorm('return($lib.auth.roles.get($iden))', opts=opts)
1000
+ self.eq(ret, rdef)
1001
+ with self.raises(s_exc.DupRoleName):
1002
+ await core.callStorm('$lib.auth.roles.add(runners, iden=$iden)', opts=opts)
1003
+ with self.raises(s_exc.DupIden):
1004
+ await core.callStorm('$lib.auth.roles.add(walkers, iden=$iden)', opts=opts)
1005
+
991
1006
  async def test_stormlib_auth_gateadmin(self):
992
1007
 
993
1008
  async with self.getTestCore() as core:
@@ -366,7 +366,7 @@ class StormCliTest(s_test.SynTest):
366
366
  self.isin(
367
367
  Completion(
368
368
  '.auth.easyperm.allowed',
369
- display='[lib] $lib.auth.easyperm.allowed(edef: dict, level: str) - Check if the current user has a permission level in an easy perm dictionary.'
369
+ display='[lib] $lib.auth.easyperm.allowed(edef: dict, level: int) - Check if the current user has a permission level in an easy perm dictionary.'
370
370
  ),
371
371
  vals
372
372
  )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: synapse
3
- Version: 2.181.0
3
+ Version: 2.182.0
4
4
  Summary: Synapse Intelligence Analysis Framework
5
5
  Author-email: The Vertex Project LLC <root@vertex.link>
6
6
  License: Apache License 2.0
@@ -22,7 +22,7 @@ License-File: LICENSE
22
22
  Requires-Dist: pyOpenSSL<25.0.0,>=24.0.0
23
23
  Requires-Dist: cryptography<44.0.0,>=43.0.1
24
24
  Requires-Dist: msgpack<1.1.0,>=1.0.5
25
- Requires-Dist: xxhash<3.5.0,>=1.4.4
25
+ Requires-Dist: xxhash<3.6.0,>=1.4.4
26
26
  Requires-Dist: lmdb<1.5.0,>=1.2.1
27
27
  Requires-Dist: tornado<7.0.0,>=6.2.0
28
28
  Requires-Dist: regex>=2022.9.11
@@ -34,7 +34,7 @@ Requires-Dist: aiosmtplib<3.1.0,>=3.0.0
34
34
  Requires-Dist: prompt-toolkit<3.1.0,>=3.0.4
35
35
  Requires-Dist: lark==1.1.9
36
36
  Requires-Dist: Pygments<2.18.0,>=2.7.4
37
- Requires-Dist: packaging<24.0,>=20.0
37
+ Requires-Dist: packaging<25.0,>=20.0
38
38
  Requires-Dist: fastjsonschema<2.20.0,>=2.18.0
39
39
  Requires-Dist: stix2-validator<4.0.0,>=3.2.0
40
40
  Requires-Dist: vcrpy<5.2.0,>=4.3.1
@@ -88,12 +88,12 @@ synapse/lib/__init__.py,sha256=qLS7nt8-Iot8jnD2Xss_6wZi5lJoyv2rqxF9kkektT0,129
88
88
  synapse/lib/agenda.py,sha256=ddr6FrbDY5YslJS3vdBqUUcoh32XwiEj1OkomFg-NAg,33107
89
89
  synapse/lib/aha.py,sha256=vUFzh_s4VYSYXb73C3GYVcQRIaQow_0PSrSYOvz5wis,50308
90
90
  synapse/lib/ast.py,sha256=GqrMmTMqdTT-zFoJyvRyjbFQZNiYV_qEJBdq_ctH8X8,154963
91
- synapse/lib/auth.py,sha256=da3Ff3A1Ez9iahySC8ii0reGlUgjc-9-MVWOEGcUPBA,51724
91
+ synapse/lib/auth.py,sha256=MfSyR7RWWwDuSv5zQW_-CtYLJfnIuCRTEcyfa1vnxvw,52313
92
92
  synapse/lib/autodoc.py,sha256=CsGaX0tAKGh21YbIvUtvaUnZyqmsx6j-E9QD_vhKSP4,20747
93
93
  synapse/lib/base.py,sha256=FfS6k30ZcS1CVfHPa5LNKog1f48rJ0xE14PI89vW7tM,23634
94
94
  synapse/lib/boss.py,sha256=rYu4jkHJ3Y5GLX23Hlrwe9H17LF27LZ0BkK_A_9Aqh0,2056
95
95
  synapse/lib/cache.py,sha256=N8BoNFQXOaYQU33LLYQcVkdV6IYjSNaUoaKue55y7H0,6275
96
- synapse/lib/cell.py,sha256=rMbK963ZTuQ3lQ9Ah_bHxvtsAdvcqWB8d7tJrUiHhWM,176347
96
+ synapse/lib/cell.py,sha256=mOYGqcbD1RQEXDk2l36kWO48OYtSzumuDMp8EUMZKEk,176390
97
97
  synapse/lib/certdir.py,sha256=laGLxgx0gVxXvoaLKKemBQv71OZr9mDaqlAatdESV1A,56176
98
98
  synapse/lib/chop.py,sha256=F0RRLlJ6NlpLW7sBWPNZV9Xw4w6HVbQbxPZPE6VhwVQ,9404
99
99
  synapse/lib/cli.py,sha256=rwaO4SbJIzOhwxB9B7NHXpyegQeRsUQ1gULVwgnNCfg,14580
@@ -143,7 +143,7 @@ synapse/lib/slabseqn.py,sha256=LJ2SZEsZlROBAD3mdS-3JxNVVPXXkBW8GIJXsW0OGG8,10287
143
143
  synapse/lib/snap.py,sha256=PpMDg8zp0AMLMWYyTSpLclqEX7GHRZSA-gJl-j3e6Qs,60055
144
144
  synapse/lib/spooled.py,sha256=00x_RS1TiJkfuTXwwdUcYifuECGYgC8B1tX-sX7nb_k,5385
145
145
  synapse/lib/storm.lark,sha256=c79oBF4ykuNHwq7HIPBrZl9rLAB0gZP3tNBNymEWQdQ,26315
146
- synapse/lib/storm.py,sha256=sy185hkpjXfKiDRS6xcy6BLcKJSqTVW8fXiRaAwznCA,211436
146
+ synapse/lib/storm.py,sha256=Y3WWjqmygawVz7-gWmdI3y1YP1hFpWVtIJtOSEdFPR8,212151
147
147
  synapse/lib/storm_format.py,sha256=3C7SAzxOcc7a3JUuFeVRK46C7N1En7XMy7RylSeAYoo,4790
148
148
  synapse/lib/stormctrl.py,sha256=XvyZ6M0Ew8sXsjGvRTWbXh0MjktZrGi_zQ9kNa7AWTE,285
149
149
  synapse/lib/stormhttp.py,sha256=tw0LuO0UfxZT50sfF_V9hemudv5yZc2M9nFMkGrRHRw,28884
@@ -159,7 +159,7 @@ synapse/lib/time.py,sha256=FKTYwpdvpuAj8p8sSodRjOxoA7Vu67CIbbXz55gtghk,9231
159
159
  synapse/lib/trigger.py,sha256=mnfkoBHB88JfqPoxb5oflvAaBKZpNvYdxP247YS53fE,20697
160
160
  synapse/lib/types.py,sha256=er9Jj4Mb3qh8YY4mUukyM7C164eIjO_fJeZvVJmSHFE,69500
161
161
  synapse/lib/urlhelp.py,sha256=j-DvWGi-xH0TcO0NbCuwG7guUuiV8wxIxfMyJOzDygo,2523
162
- synapse/lib/version.py,sha256=hyIHIWraoU4lqabQEiTTWenhZINE3lP-27kjbCQKedw,7162
162
+ synapse/lib/version.py,sha256=IDaz45RPs6DDTjr0mk7F0_KG3bRP1Lfvnipu1wNd8i8,7162
163
163
  synapse/lib/view.py,sha256=bP1lMl8Wm0yaMIlc4cfwobm5ojNzMsWguPFnPUkKhoM,60567
164
164
  synapse/lib/crypto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
165
165
  synapse/lib/crypto/coin.py,sha256=_dhlkzIrHT8BvHdJOWK7PDThz3sK3dDRnWAUqjRpZJc,4910
@@ -175,14 +175,14 @@ synapse/lib/platforms/linux.py,sha256=VBUn_tf7PYGgfBXDBBNfE16QBGWstSkuV2l4LXX0dv
175
175
  synapse/lib/platforms/windows.py,sha256=YbB73MIoBPvePNYiTYa2xEvpGAotAiEKNl4P--njPPM,2069
176
176
  synapse/lib/stormlib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
177
177
  synapse/lib/stormlib/aha.py,sha256=cRTdxEnGTSPZrhMk5Bq6TOle8EvWr5TVge64Av4RVVs,19742
178
- synapse/lib/stormlib/auth.py,sha256=nfbH_TCD90b3LZUIbXkudsJSX88Dd4Embamsvisb0uE,91772
178
+ synapse/lib/stormlib/auth.py,sha256=QXMb2NK-flxyFyaXGy-mVv0bByBxNF7IpjUlKhfCohY,91972
179
179
  synapse/lib/stormlib/backup.py,sha256=-cR7lR9IRib-e0uMRV1oKVfdJJ3PYbowtwtH0i3mOtY,2846
180
180
  synapse/lib/stormlib/basex.py,sha256=BHnThzA7xv_wBaoxO3sVjjPGgS7K5PMXyGrFFQzmX2Y,2638
181
181
  synapse/lib/stormlib/cache.py,sha256=uC7whmdnqaDAcZLTE1AlFQl18RXM_tYUVjpveCDgtz8,7869
182
182
  synapse/lib/stormlib/cell.py,sha256=qJlG1JvfNHdyx-xhIA-B129M-SZQoZMp_M5n3RmAsKg,13959
183
183
  synapse/lib/stormlib/compression.py,sha256=ZOEuGv0MGiXuXOfarTgVGK6lB1ta6X7tDmXvOza9TDQ,6284
184
184
  synapse/lib/stormlib/cortex.py,sha256=Ktv82cSpsSHWCGV2Po-nCwBSNj5iEB5qmkH2TJdE-ls,55559
185
- synapse/lib/stormlib/easyperm.py,sha256=W59IyPFPc34pKxS43C9LvyI5la88o7sZP9UBti2yqNs,5851
185
+ synapse/lib/stormlib/easyperm.py,sha256=QNaxDhYIJIGapISs4WNHYFpbB3EyEgWAj1UlHlQD8UU,5851
186
186
  synapse/lib/stormlib/env.py,sha256=0e5w92jPl_lpVJkyOd8Ia8Lrl6bysXZZIGAT2LsxMW8,1627
187
187
  synapse/lib/stormlib/ethereum.py,sha256=hsgQD4tQpS7mS9lrbghxZF5gEwop4OeeN2Tf3CfncuY,1219
188
188
  synapse/lib/stormlib/gen.py,sha256=owyc9N1Cg8LXoORVx16g7r0Sp-xz1Mmq5_mGtvtZz1g,30911
@@ -288,7 +288,7 @@ synapse/tests/test_lib_autodoc.py,sha256=H9Yb7cvzXOMPGBIoCCqNClcyIp6zEWcawtfudKb
288
288
  synapse/tests/test_lib_base.py,sha256=yhGOfA-OgZrdhISTXwSl6l6YGqN5nqO3pcDes6oICPg,14550
289
289
  synapse/tests/test_lib_boss.py,sha256=gZEuJnMO99Fu9gQ7Ct0g67umBW5XFCs8vcwInB5qr14,1598
290
290
  synapse/tests/test_lib_cache.py,sha256=oQgEBhm8pZFCEvMfcD3znTDQgl8Gv91fEOB-3eb2IIg,8594
291
- synapse/tests/test_lib_cell.py,sha256=0A0wFw-UxQ6BmOucNiWKH_oN7yl6xQtGWMxFBiC_w8s,139427
291
+ synapse/tests/test_lib_cell.py,sha256=9k2mzdvx6jU2FrRfZ_KV7zri-rwOTTOYYbNgok-NJVU,140112
292
292
  synapse/tests/test_lib_certdir.py,sha256=d5X1lvp0DnBRigXYLbofZAXakZp440-bjaMH30PlGsI,42728
293
293
  synapse/tests/test_lib_chop.py,sha256=LkrM_pQU_KS88aVRPD4DI97qSdhxmw6EUA_jb-UJpww,6238
294
294
  synapse/tests/test_lib_cli.py,sha256=B8qGx9KtTWp31RlCMtfFMzhJ0TzaaO9ph7RCK2jHtx4,9283
@@ -332,11 +332,11 @@ synapse/tests/test_lib_slaboffs.py,sha256=FHQ8mGZ27dGqVwGk6q2UJ4gkPRZN22eIVzS8hM
332
332
  synapse/tests/test_lib_slabseqn.py,sha256=74V6jU7DRTsy_hqUFDuT4C6dPlJ6ObNnjmI9qhbbyVc,5230
333
333
  synapse/tests/test_lib_snap.py,sha256=OviJtj9N5LhBV-56TySkWvRly7f8VH9d-VBcNFLAtmg,27805
334
334
  synapse/tests/test_lib_spooled.py,sha256=dC5hba4c0MehALt4qW-cokqJl-tZsIsmABCGMIclXNM,2776
335
- synapse/tests/test_lib_storm.py,sha256=ZzhJIwbQrePJaSOIh_azXiG5FsJNpXTXXRaQnv-aOBY,219897
335
+ synapse/tests/test_lib_storm.py,sha256=Pd9pZqsLLCauqZctzZqlURTpvRmiqAlupQrvmtBqzu4,221579
336
336
  synapse/tests/test_lib_storm_format.py,sha256=tEZgQMmKAeG8FQZE5HUjOT7bnKawVTpNaVQh_3Wa630,277
337
337
  synapse/tests/test_lib_stormhttp.py,sha256=ZS8iONsisWjEi2CXx9AttiQ9bOrPs9x4GCwXlJEB_u0,42592
338
338
  synapse/tests/test_lib_stormlib_aha.py,sha256=2x3KQa64LN86wzSdJwAu3QFb5NNR3WNx1o9aD3N954o,8796
339
- synapse/tests/test_lib_stormlib_auth.py,sha256=8hugQlWHzq4bilf4IhQrtZPKeRdFIKo5PHw0T-s12zk,58989
339
+ synapse/tests/test_lib_stormlib_auth.py,sha256=zuYPK91k8uyazjSrjcR0jMEENaeGc0ZhZD8Pk9dSAx4,59849
340
340
  synapse/tests/test_lib_stormlib_backup.py,sha256=3ZYE3swQ4A8aYJyVueFXzbekCdoKMC7jsHLoq0hTKGI,1644
341
341
  synapse/tests/test_lib_stormlib_basex.py,sha256=DDOsH3XDR8MdJ1uj5avyqnFqBnlaIu8L5stX61jqKrw,2049
342
342
  synapse/tests/test_lib_stormlib_cache.py,sha256=fOfMHUMVitnUT54oZHB56v86KH-aoWtVDvqUpKUfVD4,9084
@@ -447,7 +447,7 @@ synapse/tests/test_tools_pullfile.py,sha256=BloDoe1iBUlUSGQBU3TXFXU8sPFI3wRJHEp_
447
447
  synapse/tests/test_tools_pushfile.py,sha256=evX1aPxWvmhoS4ZmB0q6jMqIPYzQ9nqWB1XAJRipOcw,5611
448
448
  synapse/tests/test_tools_reload.py,sha256=IlVj84EM-T35pdE5s9XvMhD6rWPIlc2BSDUgHhw28D4,1830
449
449
  synapse/tests/test_tools_rstorm.py,sha256=-bIvNCY9Vx702LsNb2vwunZBT6fyXHse28Av6Hfgx1s,2078
450
- synapse/tests/test_tools_storm.py,sha256=bF7QgMXaVb1h55C7hbnaeJ-z9Yf8b5osXKyx9XML6yg,18437
450
+ synapse/tests/test_tools_storm.py,sha256=QkyPX4HS67n1q4LbmsCGF9yUSyMLHK4BjNRX3JCgy1w,18437
451
451
  synapse/tests/test_utils.py,sha256=sI-uDhUpkVQHSKHa2-czmWNvyXL2QTsCojtPAV2jueI,8688
452
452
  synapse/tests/test_utils_getrefs.py,sha256=bBV7yZ9tnOXmjqpsU1YKV5pw0behoKpzpwHJDxLjmLs,2304
453
453
  synapse/tests/test_utils_stormcov.py,sha256=H9p1vFH8kNE6qMLrGzSV0eH7KOgdZFh7QuarFe47FtU,6149
@@ -600,8 +600,8 @@ synapse/vendor/xrpl/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJW
600
600
  synapse/vendor/xrpl/tests/test_codec.py,sha256=Zwq6A5uZUK_FWDL3BA932c5b-rL3hnC6efobWHSLC4o,6651
601
601
  synapse/vendor/xrpl/tests/test_main.py,sha256=kZQwWk7I6HrP-PMvLdsUUN4POvWD9I-iXDHOwdeF090,4299
602
602
  synapse/vendor/xrpl/tests/test_main_test_cases.py,sha256=vTlUM4hJD2Hd2wCIdd9rfsvcMZZZQmNHWdCTTFeGz2Y,4221
603
- synapse-2.181.0.dist-info/LICENSE,sha256=xllut76FgcGL5zbIRvuRc7aezPbvlMUTWJPsVr2Sugg,11358
604
- synapse-2.181.0.dist-info/METADATA,sha256=bma97ywYP4r8x5oGovPg8HrqrdTxnRWvxwTxhxGL0Oo,4860
605
- synapse-2.181.0.dist-info/WHEEL,sha256=0gYN5xNdqpdGsLVVyA9-Xf3Xnq-9PwlAwkekQ_z55rY,93
606
- synapse-2.181.0.dist-info/top_level.txt,sha256=v_1YsqjmoSCzCKs7oIhzTNmWtSYoORiBMv1TJkOhx8A,8
607
- synapse-2.181.0.dist-info/RECORD,,
603
+ synapse-2.182.0.dist-info/LICENSE,sha256=xllut76FgcGL5zbIRvuRc7aezPbvlMUTWJPsVr2Sugg,11358
604
+ synapse-2.182.0.dist-info/METADATA,sha256=g9dI52Vey98p2ZCe1ukjO2jwph8UslICAUKgBHw03SE,4860
605
+ synapse-2.182.0.dist-info/WHEEL,sha256=0gYN5xNdqpdGsLVVyA9-Xf3Xnq-9PwlAwkekQ_z55rY,93
606
+ synapse-2.182.0.dist-info/top_level.txt,sha256=v_1YsqjmoSCzCKs7oIhzTNmWtSYoORiBMv1TJkOhx8A,8
607
+ synapse-2.182.0.dist-info/RECORD,,