From 7a1c9318d9856cd5cfe80c46809965336e46c5d5 Mon Sep 17 00:00:00 2001 From: vEpiphyte Date: Wed, 13 Nov 2024 15:09:43 -0500 Subject: [PATCH 1/2] Changelog for v2.188.1 (#4005) --- CHANGELOG.rst | 10 ++++++++++ changes/fdd656f050bd769c6f2d24fad8bb6743.yaml | 6 ------ 2 files changed, 10 insertions(+), 6 deletions(-) delete mode 100644 changes/fdd656f050bd769c6f2d24fad8bb6743.yaml diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c4a10428fe..7dcd7ba901 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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 `_) + v2.188.0 - 2024-11-08 ===================== diff --git a/changes/fdd656f050bd769c6f2d24fad8bb6743.yaml b/changes/fdd656f050bd769c6f2d24fad8bb6743.yaml deleted file mode 100644 index 8c69117902..0000000000 --- a/changes/fdd656f050bd769c6f2d24fad8bb6743.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- -desc: 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. -prs: [] -type: bug -... From 2cf97aa2a3266442393dfc78525749d3f65d9fc7 Mon Sep 17 00:00:00 2001 From: epiphyte Date: Wed, 13 Nov 2024 15:10:01 -0500 Subject: [PATCH 2/2] =?UTF-8?q?Bump=20version:=202.188.0=20=E2=86=92=202.1?= =?UTF-8?q?88.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- pyproject.toml | 2 +- synapse/lib/version.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 9e67b6b66b..c810b51081 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.188.0 +current_version = 2.188.1 commit = True tag = True tag_message = diff --git a/pyproject.toml b/pyproject.toml index c3f3d09319..11992f5ce0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = 'root@vertex.link'}, ] diff --git a/synapse/lib/version.py b/synapse/lib/version.py index 0d1af2e238..4055b2437a 100644 --- a/synapse/lib/version.py +++ b/synapse/lib/version.py @@ -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 = ''