From 054bb0a4c15e77073ad6cd7b65ea32be370f2183 Mon Sep 17 00:00:00 2001 From: Gracjan Sadowicz Date: Wed, 16 Sep 2026 15:57:25 +0200 Subject: [PATCH] Sync with ravendb 7.2.6 and release 7.2.6 The Python client shipped 7.2.6 (JsonPatch session patching, Queue Sink, CDC Sink, Smuggler, server-wide connection strings). Bring embedded onto the matching line: - bundled server: RavenDB.Embedded 7.2.5 -> 7.2.6 (still net10.0) - client pin: ravendb~=7.2.3 -> ~=7.2.6, compatible-release so client post-releases keep resolving - package version: 7.2.5.post3 -> 7.2.6 Verified locally on Python 3.12 against the bundled 7.2.6 server: full suite (52 tests) green, labs 01/04/05 green, black clean, and the 7.2.6 client headline paths work end to end (JsonPatch session patch with the JavaScript fallback, smuggler export/import round trip). --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 98027f0..d40f240 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ import urllib.request from setuptools.command.sdist import sdist -RAVENDB_VERSION = "7.2.5" +RAVENDB_VERSION = "7.2.6" ZIP_FILE_NAME = "server.zip" RAVENDB_DOWNLOAD_URL = f"https://www.nuget.org/api/v2/package/RavenDB.Embedded/{RAVENDB_VERSION}" @@ -46,7 +46,7 @@ def run(self): include_package_data=True, long_description=open("README.md").read(), long_description_content_type="text/markdown", - version="7.2.5.post3", + version="7.2.6", description="RavenDB Embedded library to run RavenDB in an embedded way", author="RavenDB", author_email="support@ravendb.net", @@ -54,7 +54,7 @@ def run(self): license="Custom EULA", keywords="ravendb embedded database nosql doc db", install_requires=[ - "ravendb~=7.2.3", + "ravendb~=7.2.6", "cryptography>=42.0.0", ], license_files=["LICENSE"],