From 0bedd751beebd9d61419cb9619060a0c5123c24e Mon Sep 17 00:00:00 2001 From: Domenico Lupinetti Date: Sun, 10 Apr 2016 19:21:46 +0200 Subject: [PATCH] Version v1.4.9 Fix vulnerability: Sanitize operators #182 --- README.md | 3 ++- pyorient/constants.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 552ffbcf..c48bb2e7 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,8 @@ Pyorient works with orientdb version 1.7 and later. > **Warning** Some issues are experimented with record_create/record_upload and OrientDB < 2.0. These command are strongly discouraged with these versions -> **NOTICE** Prior to version 1.4.7 there was a potential SQL injection vulnerability that now is fixed. (see [details](https://github.com/mogui/pyorient/pull/172) ) +> **NOTICE** Prior to version 1.4.9 there was a potential SQL injection vulnerability that now is fixed. +(see [details](https://github.com/mogui/pyorient/pull/172) , [details](https://github.com/mogui/pyorient/pull/182) ) ## Installation diff --git a/pyorient/constants.py b/pyorient/constants.py index 444448ab..44cbac45 100644 --- a/pyorient/constants.py +++ b/pyorient/constants.py @@ -4,7 +4,7 @@ # Driver Constants # NAME = "OrientDB Python binary client (pyorient)" -VERSION = "1.4.8" +VERSION = "1.4.9" SUPPORTED_PROTOCOL = 32 # diff --git a/setup.py b/setup.py index 9d085693..2d913c28 100755 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ from setuptools import setup setup(name='pyorient', - version='1.4.8', + version='1.4.9', author='Niko Usai , Domenico Lupinetti ', description='OrientDB native client library', long_description=open('README.rst').read(),