This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "SQLObject development repository".
The branch, master has been updated
discards c689da55a95f3ce96188ccfecf50a0ecc0cd5a6a (commit)
via d8c2122546da28fc7bbdde857a845f2c1533d29a (commit)
This update added new revisions after undoing existing revisions. That is
to say, the old revision is not a strict subset of the new revision. This
situation occurs when you --force push a change and generate a repository
containing something like this:
* -- * -- B -- O -- O -- O (c689da55a95f3ce96188ccfecf50a0ecc0cd5a6a)
\
N -- N -- N (d8c2122546da28fc7bbdde857a845f2c1533d29a)
When this happens we assume that you've already had alert emails for all
of the O revisions, and so we here report only the revisions in the N
branch from the common base, B.
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://sourceforge.net/p/sqlobject/sqlobject/ci/d8c2122546da28fc7bbdde857a845f2c1533d29a
commit d8c2122546da28fc7bbdde857a845f2c1533d29a
Author: Oleg Broytman <ph...@ph...>
Date: Fri May 5 01:43:00 2017 +0300
Fix JsonbCol: undump a string returned by ODBC driver
diff --git a/sqlobject/col.py b/sqlobject/col.py
index 4c06489..e5f5301 100644
--- a/sqlobject/col.py
+++ b/sqlobject/col.py
@@ -1942,6 +1942,8 @@ class UuidCol(Col):
class JsonbValidator(SOValidator):
def to_python(self, value, state):
+ if isinstance(value, string_type):
+ return json.loads(value)
return value
def from_python(self, value, state):
-----------------------------------------------------------------------
Summary of changes:
hooks/post-receive
--
SQLObject development repository
|