Skip to content

Commit

Permalink
Merge branch 'master' into visi-model-20241108
Browse files Browse the repository at this point in the history
  • Loading branch information
invisig0th committed Nov 14, 2024
2 parents 74bbd57 + 2cf97aa commit f3cb969
Show file tree
Hide file tree
Showing 6 changed files with 190 additions and 169 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.188.0
current_version = 2.188.1
commit = True
tag = True
tag_message =
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@
Synapse Changelog
*****************

v2.188.1 - 2024-11-13
=====================

Bugfixes
--------
- Fix an issue in the type schema enforcement of a Cell's Drive where a list of
types for a field would cause schema checking to always fail after a Cell
reboot.
(`#4002 <https://github.com/vertexproject/synapse/pull/4002>`_)

v2.188.0 - 2024-11-08
=====================

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta'

[project]
name = 'synapse'
version = '2.188.0'
version = '2.188.1'
authors = [
{ name = 'The Vertex Project LLC', email = '[email protected]'},
]
Expand Down
2 changes: 1 addition & 1 deletion synapse/lib/drive.py
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ async def getItemDataVersions(self, iden):
def getTypeSchema(self, typename):
byts = self.slab.get(LKEY_TYPE + typename.encode(), db=self.dbname)
if byts is not None:
return s_msgpack.un(byts)
return s_msgpack.un(byts, use_list=True)

def getTypeSchemaVersion(self, typename):
verskey = LKEY_TYPE_VERS + typename.encode()
Expand Down
2 changes: 1 addition & 1 deletion synapse/lib/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,6 @@ def reqVersion(valu, reqver,
##############################################################################
# The following are touched during the release process by bumpversion.
# Do not modify these directly.
version = (2, 188, 0)
version = (2, 188, 1)
verstring = '.'.join([str(x) for x in version])
commit = ''
Loading

0 comments on commit f3cb969

Please sign in to comment.