commit python3-SQLAlchemy for openSUSE:Factory

2017-02-08 Thread root
Hello community,

here is the log from the commit of package python3-SQLAlchemy for 
openSUSE:Factory checked in at 2017-02-08 11:03:56

Comparing /work/SRC/openSUSE:Factory/python3-SQLAlchemy (Old)
 and  /work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new (New)


Package is "python3-SQLAlchemy"

Changes:

--- /work/SRC/openSUSE:Factory/python3-SQLAlchemy/python3-SQLAlchemy.changes
2016-11-20 18:20:04.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new/python3-SQLAlchemy.changes   
2017-02-08 11:04:05.393571772 +0100
@@ -1,0 +2,130 @@
+Fri Feb  3 03:37:47 UTC 2017 - a...@gmx.de
+
+- specfile:
+  * update copyright year
+
+- update to version 1.1.5:
+  * orm
++ [orm] [bug] Fixed bug involving joined eager loading against
+  multiple entities when polymorphic inheritance is also in use
+  which would throw “‘NoneType’ object has no attribute
+  ‘isa’”. The issue was introduced by the fix for #3611.
++ [orm] [bug] Fixed bug in subquery loading where an object
+  encountered as an “existing” row, e.g. already loaded from a
+  different path in the same query, would not invoke subquery
+  loaders for unloaded attributes that specified this
+  loading. This issue is in the same area as that of #3431, #3811
+  which involved similar issues with joined loading.
++ [orm] [bug] The Session.no_autoflush context manager now ensures
+  that the autoflush flag is reset within a “finally” block, so
+  that if an exception is raised within the block, the state still
+  resets appropriately. Pull request courtesy Emin Arakelian.
++ [orm] [bug] Fixed bug where the single-table inheritance query
+  criteria would not be inserted into the query in the case that
+  the Bundle construct were used as the selection criteria.
++ [orm] [bug] Fixed bug related to #3177, where a UNION or other
+  set operation emitted by a Query would apply
+  “single-inheritance” criteria to the outside of the union (also
+  referencing the wrong selectable), even though this criteria is
+  now expected to be already present on the inside subqueries. The
+  single-inheritance criteria is now omitted once union() or
+  another set operation is called against Query in the same way as
+  Query.from_self().
+  * engine
++ [engine] [bug] The “extend_existing” option of Table reflection
+  would cause indexes and constraints to be doubled up in the case
+  that the parameter were used with MetaData.reflect() (as the
+  automap extension does) due to tables being reflected both
+  within the foreign key path as well as directly. A new
+  de-duplicating set is passed through within the
+  MetaData.reflect() sequence to prevent double reflection in this
+  way.
+  * sql
++ [sql] [bug] Fixed bug originally introduced in 0.9 via #1068
+  where order_by() would order by the label name
+  based on name alone, that is, even if the labeled expression
+  were not at all the same expression otherwise present,
+  implicitly or explicitly, in the selectable. The logic that
+  orders by label now ensures that the labeled expression is
+  related to the one that resolves to that name before ordering by
+  the label name; additionally, the name has to resolve to an
+  actual label explicit in the expression elsewhere, not just a
+  column name. This logic is carefully kept separate from the
+  order by(textual name) feature that has a slightly different
+  purpose.
++ [sql] [bug] Fixed 1.1 regression where “import *” would not work
+  for sqlalchemy.sql.expression, due to mis-spelled “any_” and
+  “all_” functions.
++ [sql] [bug] The engine URL embedded in the exception for “could
+  not reflect” in MetaData.reflect() now conceals the password;
+  also the __repr__ for TLEngine now acts like that of Engine,
+  concealing the URL password. Pull request courtesy Valery
+  Yundin.
++ [sql] [bug] Fixed issue in Variant where the “right hand
+  coercion” logic, inherited from TypeDecorator, would coerce the
+  right-hand side into the Variant itself, rather than what the
+  default type for the Variant would do. In the case of Variant,
+  we want the type to act mostly like the base type so the default
+  logic of TypeDecorator is now overridden to fall back to the
+  underlying wrapped type’s logic. Is mostly relevant for JSON at
+  the moment.
++ [sql] [bg] Fixed bug where literal_binds compiler flag was not
+  honored by the Insert construct for the “multiple values”
+  feature; the subsequent values are now rendered as literals.
+  * postgresql
++ [postgresql] [bug] Fixed bug in new “ON CONFLICT DO UPDATE”
+  feature where the “set” 

commit python3-SQLAlchemy for openSUSE:Factory

2016-11-20 Thread h_root
Hello community,

here is the log from the commit of package python3-SQLAlchemy for 
openSUSE:Factory checked in at 2016-11-20 18:20:03

Comparing /work/SRC/openSUSE:Factory/python3-SQLAlchemy (Old)
 and  /work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new (New)


Package is "python3-SQLAlchemy"

Changes:

--- /work/SRC/openSUSE:Factory/python3-SQLAlchemy/python3-SQLAlchemy.changes
2016-11-12 13:01:18.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new/python3-SQLAlchemy.changes   
2016-11-20 18:20:04.0 +0100
@@ -1,0 +2,72 @@
+Sat Nov 19 17:00:18 UTC 2016 - a...@gmx.de
+
+- update to version 1.1.4:
+  * orm
++ [orm] [bug] Fixed bug in Session.bulk_update_mappings() where an
+  alternate-named primary key attribute would not track properly
+  into the UPDATE statement.
++ [orm] [bug] Fixed bug in Session.bulk_save() where an UPDATE
+  would not function correctly in conjunction with a mapping that
+  implements a version id counter.
++ [orm] [bug] Fixed bug where the Mapper.attrs,
+  Mapper.all_orm_descriptors and other derived attributes would
+  fail to refresh when mapper properties or other ORM constructs
+  were added to the mapper/class after these accessors were first
+  called.
++ [orm] [bug] Fixed regression in collections due to #3457 whereby
+  deserialize during pickle or deepcopy would fail to establish
+  all attributes of an ORM collection, causing further mutation
+  operations to fail.
++ [orm] [bug] Fixed long-standing bug where the “noload”
+  relationship loading strategy would cause backrefs and/or
+  back_populates options to be ignored.
+  * engine
++ [engine] [bug] Removed long-broken “default_schema_name()”
+  method from Connection. This method was left over from a very
+  old version and was non-working (e.g. would raise). Pull request
+  courtesy Benjamin Dopplinger.
+  * sql
++ [sql] [bug] Fixed bug where newly added warning for primary key
+  on insert w/o autoincrement setting (see The .autoincrement
+  directive is no longer implicitly enabled for a composite
+  primary key column) would fail to emit correctly when invoked
+  upon a lower-case table() construct.
+  * postgresql
++ [postgresql] [bug] Fixed regression caused by the fix in #3807
+  (version 1.1.0) where we ensured that the tablename was
+  qualified in the WHERE clause of the DO UPDATE portion of
+  PostgreSQL’s ON CONFLICT, however you cannot put the table name
+  in the WHERE clause in the actual ON CONFLICT itself. This was
+  an incorrect assumption, so that portion of the change in #3807
+  is rolled back.
+  * mysql
++ [mysql] [feature] Added support for server side cursors to the
+  mysqlclient and pymysql dialects. This feature is available via
+  the Connection.execution_options.stream_results flag as well as
+  the server_side_cursors=True dialect argument in the same way
+  that it has been for psycopg2 on Postgresql. Pull request
+  courtesy Roman Podoliaka.
++ [mysql] [bug] MySQL’s native ENUM type supports any non-valid
+  value being sent, and in response will return a blank string. A
+  hardcoded rule to check for “is returning the blank string” has
+  been added to the MySQL implementation for ENUM so that this
+  blank string is returned to the application rather than being
+  rejected as a non-valid value. Note that if your MySQL enum is
+  linking values to objects, you still get the blank string back.
+  * sqlite
++ [sqlite] [bug] Added quotes to the PRAGMA directives in the
+  pysqlcipher dialect to support additional cipher arguments
+  appropriately. Pull request courtesy Kevin Jurczyk.
++ [sqlite] [bug] [py3k] Added an optional import for the
+  pysqlcipher3 DBAPI when using the pysqlcipher dialect. This
+  package will attempt to be imported if the Python-2 only
+  pysqlcipher DBAPI is non-present. Pull request courtesy Kevin
+  Jurczyk.
+  * mssql
++ [mssql] [bug] Fixed bug in pyodbc dialect (as well as in the
+  mostly non-working adodbapi dialect) whereby a semicolon present
+  in the password or username fields could be interpreted as a
+  separator for another token; the values are now quoted when
+  semicolons are present.
+
+---

Old:

  SQLAlchemy-1.1.3.tar.gz

New:

  SQLAlchemy-1.1.4.tar.gz



Other differences:
--
++ python3-SQLAlchemy.spec ++
--- /var/tmp/diff_new_pack.xvkhn0/_old  2016-11-20 18:20:05.0 +0100
+++ /var/tmp/diff_new_pack.xvkhn0/_new  2016-11-20 18:20:05.0 

commit python3-SQLAlchemy for openSUSE:Factory

2016-11-12 Thread h_root
Hello community,

here is the log from the commit of package python3-SQLAlchemy for 
openSUSE:Factory checked in at 2016-11-12 13:01:16

Comparing /work/SRC/openSUSE:Factory/python3-SQLAlchemy (Old)
 and  /work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new (New)


Package is "python3-SQLAlchemy"

Changes:

--- /work/SRC/openSUSE:Factory/python3-SQLAlchemy/python3-SQLAlchemy.changes
2016-10-22 13:23:23.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new/python3-SQLAlchemy.changes   
2016-11-12 13:01:18.0 +0100
@@ -1,0 +2,40 @@
+Thu Oct 27 16:05:01 UTC 2016 - a...@gmx.de
+
+- update to version 1.1.3:
+  * orm
++ [orm] [bug] Fixed regression caused by #2677 whereby calling
+  Session.delete() on an object that was already flushed as
+  deleted in that session would fail to set up the object in the
+  identity map (or reject the object), causing flush errors as the
+  object were in a state not accommodated by the unit of work. The
+  pre-1.1 behavior in this case has been restored, which is that
+  the object is put back into the identity map so that the DELETE
+  statement will be attempted again, which emits a warning that
+  the number of expected rows was not matched (unless the row were
+  restored outside of the session).
++ [orm] [bug] Fixed regression where some Query methods like
+  Query.update() and others would fail if the Query were against a
+  series of mapped columns, rather than the mapped entity as a
+  whole.
+  * sql
++ [sql] [bug] Fixed bug involving new value translation and
+  validation feature in Enum whereby using the enum object in a
+  string concatenation would maintain the Enum type as the type of
+  the expression overall, producing missing lookups. A string
+  concatenation against an Enum-typed column now uses String as
+  the datatype of the expression itself.
++ [sql] [bug] Fixed regression which occurred as a side effect of
+  #2919, which in the less typical case of a user-defined
+  TypeDecorator that was also itself an instance of SchemaType
+  (rather than the implementation being such) would cause the
+  column attachment events to be skipped for the type itself.
+  * postgresql
++ [postgresql] [bug] Postgresql table reflection will ensure that
+  the Column.autoincrement flag is set to False when reflecting a
+  primary key column that is not of an Integer datatype, even if
+  the default is related to an integer-generating sequence. This
+  can happen if a column is created as SERIAL and the datatype is
+  changed. The autoincrement flag can only be True if the datatype
+  is of integer affinity in the 1.1 series.
+
+---

Old:

  SQLAlchemy-1.1.2.tar.gz

New:

  SQLAlchemy-1.1.3.tar.gz



Other differences:
--
++ python3-SQLAlchemy.spec ++
--- /var/tmp/diff_new_pack.NORmJn/_old  2016-11-12 13:01:19.0 +0100
+++ /var/tmp/diff_new_pack.NORmJn/_new  2016-11-12 13:01:19.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   python3-SQLAlchemy
-Version:1.1.2
+Version:1.1.3
 Release:0
 Url:http://www.sqlalchemy.org
 Summary:Database Abstraction Library

++ SQLAlchemy-1.1.2.tar.gz -> SQLAlchemy-1.1.3.tar.gz ++
 5224 lines of diff (skipped)




commit python3-SQLAlchemy for openSUSE:Factory

2016-10-22 Thread h_root
Hello community,

here is the log from the commit of package python3-SQLAlchemy for 
openSUSE:Factory checked in at 2016-10-22 13:23:14

Comparing /work/SRC/openSUSE:Factory/python3-SQLAlchemy (Old)
 and  /work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new (New)


Package is "python3-SQLAlchemy"

Changes:

--- /work/SRC/openSUSE:Factory/python3-SQLAlchemy/python3-SQLAlchemy.changes
2016-10-20 23:09:42.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new/python3-SQLAlchemy.changes   
2016-10-22 13:23:23.0 +0200
@@ -1,0 +2,39 @@
+Fri Oct 21 04:33:20 UTC 2016 - a...@gmx.de
+
+- update to version 1.1.2:
+  * orm
++ [orm] [bug] Fixed bug involving the rule to disable a joined
+  collection eager loader on the other side of a many-to-one lazy
+  loader, first added in #1495, where the rule would fail if the
+  parent object had some other lazyloader-bound query options
+  associated with it.
++ [orm] [bug] Fixed self-referential entity, deferred column
+  loading issue in a similar style as that of #3431, #3811 where
+  an entity is present in multiple positions within the row due to
+  self-referential eager loading; when the deferred loader only
+  applies to one of the paths, the “present” column loader will
+  now override the deferred non- load for that entity regardless
+  of row ordering.
+  * sql
++ [sql] [bug] Fixed a regression caused by a newly added function
+  that performs the “wrap callable” function of sql
+  DefaultGenerator objects, an attribute error raised for
+  __module__ when the default callable was a functools.partial or
+  other object that doesn’t have a __module__ attribute.
++ [sql] [bug] [postgresql] Fixed regression in Enum type where
+  event handlers were not transferred in the case of the type
+  object being copied, due to a conflicting copy() method added as
+  part of #3250. This copy occurs normally in situations when the
+  column is copied, such as in tometadata() or when using
+  declarative mixins with columns. The event handler not being
+  present would impact the constraint being created for a
+  non-native enumerated type, but more critically the ENUM object
+  on the PostgreSQL backend.
+  * postgresql
++ [postgresql] [bug] [sql] Changed the naming convention used when
+  generating bound parameters for a multi-VALUES insert statement,
+  so that the numbered parameter names don’t conflict with the
+  anonymized parameters of a WHERE clause, as is now common in a
+  PostgreSQL ON CONFLICT construct.
+
+---

Old:

  SQLAlchemy-1.1.1.tar.gz

New:

  SQLAlchemy-1.1.2.tar.gz



Other differences:
--
++ python3-SQLAlchemy.spec ++
--- /var/tmp/diff_new_pack.UQP3cp/_old  2016-10-22 13:23:24.0 +0200
+++ /var/tmp/diff_new_pack.UQP3cp/_new  2016-10-22 13:23:24.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-SQLAlchemy
-Version:1.1.1
+Version:1.1.2
 Release:0
 Url:http://www.sqlalchemy.org
 Summary:Database Abstraction Library

++ SQLAlchemy-1.1.1.tar.gz -> SQLAlchemy-1.1.2.tar.gz ++
 11884 lines of diff (skipped)




commit python3-SQLAlchemy for openSUSE:Factory

2016-10-20 Thread h_root
Hello community,

here is the log from the commit of package python3-SQLAlchemy for 
openSUSE:Factory checked in at 2016-10-20 23:08:55

Comparing /work/SRC/openSUSE:Factory/python3-SQLAlchemy (Old)
 and  /work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new (New)


Package is "python3-SQLAlchemy"

Changes:

--- /work/SRC/openSUSE:Factory/python3-SQLAlchemy/python3-SQLAlchemy.changes
2016-09-25 14:42:10.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new/python3-SQLAlchemy.changes   
2016-10-20 23:09:42.0 +0200
@@ -1,0 +2,8 @@
+Wed Oct 12 15:56:33 UTC 2016 - a...@gmx.de
+
+- update to version 1.1.1:
+  (long changelog for 1.1.1, 1.1 and 1.0.16,
+   see http://docs.sqlalchemy.org/en/latest/changelog/changelog_11.html
+   for details)
+
+---

Old:

  SQLAlchemy-1.0.15.tar.gz

New:

  SQLAlchemy-1.1.1.tar.gz



Other differences:
--
++ python3-SQLAlchemy.spec ++
--- /var/tmp/diff_new_pack.ZtjCiT/_old  2016-10-20 23:09:43.0 +0200
+++ /var/tmp/diff_new_pack.ZtjCiT/_new  2016-10-20 23:09:43.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-SQLAlchemy
-Version:1.0.15
+Version:1.1.1
 Release:0
 Url:http://www.sqlalchemy.org
 Summary:Database Abstraction Library

++ SQLAlchemy-1.0.15.tar.gz -> SQLAlchemy-1.1.1.tar.gz ++
 76797 lines of diff (skipped)




commit python3-SQLAlchemy for openSUSE:Factory

2016-09-25 Thread h_root
Hello community,

here is the log from the commit of package python3-SQLAlchemy for 
openSUSE:Factory checked in at 2016-09-25 14:42:08

Comparing /work/SRC/openSUSE:Factory/python3-SQLAlchemy (Old)
 and  /work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new (New)


Package is "python3-SQLAlchemy"

Changes:

--- /work/SRC/openSUSE:Factory/python3-SQLAlchemy/python3-SQLAlchemy.changes
2016-05-25 21:28:25.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new/python3-SQLAlchemy.changes   
2016-09-25 14:42:10.0 +0200
@@ -1,0 +2,7 @@
+Thu Sep 15 23:15:10 UTC 2016 - toddrme2...@gmail.com
+
+- Update to 1.0.15:
+  * See 
http://docs.sqlalchemy.org/en/latest/changelog/changelog_10.html#change-1.0.15
+   
http://docs.sqlalchemy.org/en/latest/changelog/changelog_10.html#change-1.0.14
+
+---

Old:

  SQLAlchemy-1.0.13.tar.gz

New:

  SQLAlchemy-1.0.15.tar.gz



Other differences:
--
++ python3-SQLAlchemy.spec ++
--- /var/tmp/diff_new_pack.w6B2NZ/_old  2016-09-25 14:42:13.0 +0200
+++ /var/tmp/diff_new_pack.w6B2NZ/_new  2016-09-25 14:42:13.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-SQLAlchemy
-Version:1.0.13
+Version:1.0.15
 Release:0
 Url:http://www.sqlalchemy.org
 Summary:Database Abstraction Library
@@ -27,7 +27,7 @@
 BuildRequires:  python3
 BuildRequires:  python3-2to3
 BuildRequires:  python3-devel
-BuildRequires:  python3-nose
+BuildRequires:  python3-pytest
 BuildRequires:  python3-setuptools
 BuildConflicts: python3-buildservice-tweak
 
@@ -62,9 +62,8 @@
 %install
 python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
 
-# Tests fail for all versions
 %check
-python3 ./sqla_nose.py
+py.test
 
 %files
 %defattr(-,root,root,-)

++ SQLAlchemy-1.0.13.tar.gz -> SQLAlchemy-1.0.15.tar.gz ++
 17355 lines of diff (skipped)




commit python3-SQLAlchemy for openSUSE:Factory

2016-05-25 Thread h_root
Hello community,

here is the log from the commit of package python3-SQLAlchemy for 
openSUSE:Factory checked in at 2016-05-25 21:28:18

Comparing /work/SRC/openSUSE:Factory/python3-SQLAlchemy (Old)
 and  /work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new (New)


Package is "python3-SQLAlchemy"

Changes:

--- /work/SRC/openSUSE:Factory/python3-SQLAlchemy/python3-SQLAlchemy.changes
2016-03-26 15:22:52.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new/python3-SQLAlchemy.changes   
2016-05-25 21:28:25.0 +0200
@@ -1,0 +2,34 @@
+Mon May 23 21:51:57 UTC 2016 - toddrme2...@gmail.com
+
+- update to version 1.0.13:
+  + orm
+* [orm] [bug] Fixed bug in “evaluate” strategy of Query.update() and 
Query.delete() which would fail to accommodate a bound parameter with a 
“callable” value, as which occurs when filtering by a many-to-one equality 
expression along a relationship.
+* [orm] [bug] Fixed bug whereby the event listeners used for backrefs 
could be inadvertently applied multiple times, when using a deep class 
inheritance hierarchy in conjunction with mutiple mapper configuration steps.
+* [orm] [bug] Fixed bug whereby passing a text() construct to the 
Query.group_by() method would raise an error, instead of intepreting the object 
as a SQL fragment.
+* [orm] [bug] Anonymous labeling is applied to a func construct that is 
passed to column_property(), so that if the same attribute is referred to as a 
column expression twice the names are de-duped, thus avoiding “ambiguous 
column” errors. Previously, the .label(None) would need to be applied in order 
for the name to be de-anonymized.
+* [orm] [bug] Fixed regression appearing in the 1.0 series in ORM loading 
where the exception raised for an expected column missing would incorrectly be 
a NoneType error, rather than the expected NoSuchColumnError.
+  + sql
+* [sql] [bug] Fixed bug where when using case_sensitive=False with an 
Engine, the result set would fail to correctly accomodate for duplicate column 
names in the result set, causing an error when the statement is executed in 
1.0, and preventing the “ambiguous column” exception from functioning in 1.1.
+* [sql] [bug] Fixed bug where the negation of an EXISTS expression would 
not be properly typed as boolean in the result, and also would fail to be 
anonymously aliased in a SELECT list as is the case with a non-negated EXISTS 
construct.
+* [sql] [bug] Fixed bug where “unconsumed column names” exception would 
fail to be raised in the case where Insert.values() were called with a list of 
parameter mappings, instead of a single mapping of parameters. Pull request 
courtesy Athena Yao.
+  + postgresql
+* [postgresql] [bug] Added disconnect detection support for the error 
string “SSL error: decryption failed or bad record mac”. Pull request courtesy 
Iuri de Silvio.
+  + mssql
+* [mssql] [bug] Fixed bug where by ROW_NUMBER OVER clause applied for 
OFFSET selects in SQL Server would inappropriately substitute a plain column 
from the local statement that overlaps with a label name used by the ORDER BY 
criteria of the statement.
+* [mssql] [bug] [oracle] Fixed regression appearing in the 1.0 series 
which would cause the Oracle and SQL Server dialects to incorrectly account for 
result set columns when these dialects would wrap a SELECT in a subquery in 
order to provide LIMIT/OFFSET behavior, and the original SELECT statement 
referred to the same column multiple times, such as a column and a label of 
that same column. This issue is related to #3658 in that when the error 
occurred, it would also cause a NoneType error, rather than reporting that it 
couldn’t locate a column.
+  + oracle
+* [oracle] [bug] Fixed a bug in the cx_Oracle connect process that caused 
a TypeError when the either the user, password or dsn was empty. This prevented 
external authentication to Oracle databases, and prevented connecting to the 
default dsn. The connect string oracle:// now logs into the default dsn using 
the Operating System username, equivalent to connecting using ‘/’ with sqlplus.
+* [oracle] [bug] Fixed a bug in the result proxy used mainly by Oracle 
when binary and other LOB types are in play, such that when query / statement 
caching were used, the type-level result processors, notably that required by 
the binary type itself but also any other processor, would become lost after 
the first run of the statement due to it being removed from the cached result 
metadata.
+  + misc
+* [bug] [examples] Changed the “directed graph” example to no longer 
consider integer identifiers of nodes as significant; the “higher” / “lower” 
references now allow mutual edges in both directions.
+* [bug] [py3k] Fixed bug in “to_list” conversion where a single bytes 
object 

commit python3-SQLAlchemy for openSUSE:Factory

2016-03-26 Thread h_root
Hello community,

here is the log from the commit of package python3-SQLAlchemy for 
openSUSE:Factory checked in at 2016-03-26 15:22:51

Comparing /work/SRC/openSUSE:Factory/python3-SQLAlchemy (Old)
 and  /work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new (New)


Package is "python3-SQLAlchemy"

Changes:

--- /work/SRC/openSUSE:Factory/python3-SQLAlchemy/python3-SQLAlchemy.changes
2016-02-17 12:23:26.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new/python3-SQLAlchemy.changes   
2016-03-26 15:22:52.0 +0100
@@ -1,0 +2,5 @@
+Fri Mar 11 21:07:26 UTC 2016 - toddrme2...@gmail.com
+
+- Really removed patch fix_joins_and_union_for_sqlite_3.10.0.patch, included 
upstream
+
+---

Old:

  fix_joins_and_union_for_sqlite_3.10.0.patch



Other differences:
--
++ python3-SQLAlchemy.spec ++
--- /var/tmp/diff_new_pack.jNffx0/_old  2016-03-26 15:22:53.0 +0100
+++ /var/tmp/diff_new_pack.jNffx0/_new  2016-03-26 15:22:53.0 +0100
@@ -24,8 +24,6 @@
 License:MIT
 Group:  Development/Languages/Python
 Source: 
http://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-%{version}.tar.gz
-# PATCH-FIX-UPSTREAM fix_joins_and_union_for_sqlite_3.10.0.patch - don't use 
workaround for fixed SQLite 3.10.0 - 
https://bitbucket.org/zzzeek/sqlalchemy/issues/3633/
-Patch0: fix_joins_and_union_for_sqlite_3.10.0.patch
 BuildRequires:  python3
 BuildRequires:  python3-2to3
 BuildRequires:  python3-devel
@@ -54,7 +52,6 @@
 
 %prep
 %setup -q -n SQLAlchemy-%{version}
-%patch0 -p1
 rm -rf doc/build # Remove unnecessary scripts for building documentation
 
 %build




commit python3-SQLAlchemy for openSUSE:Factory

2016-02-17 Thread h_root
Hello community,

here is the log from the commit of package python3-SQLAlchemy for 
openSUSE:Factory checked in at 2016-02-17 10:26:55

Comparing /work/SRC/openSUSE:Factory/python3-SQLAlchemy (Old)
 and  /work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new (New)


Package is "python3-SQLAlchemy"

Changes:

--- /work/SRC/openSUSE:Factory/python3-SQLAlchemy/python3-SQLAlchemy.changes
2016-01-08 15:23:48.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new/python3-SQLAlchemy.changes   
2016-02-17 12:23:26.0 +0100
@@ -1,0 +2,91 @@
+Wed Feb 17 03:59:51 UTC 2016 - a...@gmx.de
+
+- specfile:
+  * removed patch fix_joins_and_union_for_sqlite_3.10.0.patch, included 
upstream
+
+- update to version 1.0.12:
+  * orm
++ [orm] [bug] Fixed bug in Session.merge() where an object with a
+  composite primary key that has values for some but not all of the
+  PK fields would emit a SELECT statement leaking the internal
+  NEVER_SET symbol into the query, rather than detecting that this
+  object does not have a searchable primary key and no SELECT should
+  be emitted.
++ [orm] [bug] Fixed regression since 0.9 where the 0.9 style
+  loader options system failed to accommodate for multiple
+  undefer_group() loader options in a single query. Multiple
+  undefer_group() options will now be taken into account even
+  against the same entity.
+  * engine
++ [engine] [bug] [mysql] Revisiting #2696, first released in
+  1.0.10, which attempts to work around Python 2’s lack of exception
+  context reporting by emitting a warning for an exception that was
+  interrupted by a second exception when attempting to roll back the
+  already-failed transaction; this issue continues to occur for
+  MySQL backends in conjunction with a savepoint that gets
+  unexpectedly lost, which then causes a “no such savepoint” error
+  when the rollback is attempted, obscuring what the original
+  condition was.
+  The approach has been generalized to the Core “safe reraise”
+  function which takes place across the ORM and Core in any place
+  that a transaction is being rolled back in response to an error
+  which occurred trying to commit, including the context managers
+  provided by Session and Connection, and taking place for
+  operations such as a failure on “RELEASE SAVEPOINT”. Previously,
+  the fix was only in place for a specific path within the ORM
+  flush/commit process; it now takes place for all transational
+  context managers as well.
+  * sql
++ [sql] [bug] Fixed issue where the “literal_binds” flag was not
+  propagated for expression.insert(), expression.update() or
+  expression.delete() constructs when compiled to string SQL. Pull
+  request courtesy Tim Tate.
++ [sql] [bug] Fixed issue where inadvertent use of the Python
+  __contains__ override with a column expression (e.g. by using 'x'
+  in col) would cause an endless loop in the case of an ARRAY type,
+  as Python defers this to __getitem__ access which never raises for
+  this type. Overall, all use of __contains__ now raises
+  NotImplementedError.
++ [sql] [bug] Fixed bug in Table metadata construct which appeared
+  around the 0.9 series where adding columns to a Table that was
+  unpickled would fail to correctly establish the Column within the
+  ‘c’ collection, leading to issues in areas such as ORM
+  configuration. This could impact use cases such as extend_existing
+  and others.
+  * postgresql
++ [postgresql] [bug] Fixed bug in expression.text() construct
+  where a double-colon expression would not escape properly,
+  e.g. some\:\:expr, as is most commonly required when rendering
+  Postgresql-style CAST expressions.
+  * mssql
++ [mssql] [bug] Fixed the syntax of the extract() function when
+  used on MSSQL against a datetime value; the quotes around the
+  keyword are removed. Pull request courtesy Guillaume Doumenc.
++ [mssql] [bug] [firebird] Fixed 1.0 regression where the eager
+  fetch of cursor.rowcount was no longer called for an UPDATE or
+  DELETE statement emitted via plain text or via the text()
+  construct, affecting those drivers that erase cursor.rowcount once
+  the cursor is closed such as SQL Server ODBC and Firebird drivers.
+  * oracle
++ [oracle] [bug] [jython] Fixed a small issue in the Jython Oracle
+  compiler involving the rendering of “RETURNING” which allows this
+  currently unsupported/untested dialect to work rudimentally with
+  the 1.0 series. Pull request courtesy Carlos Rivas.
+  * misc
++ [bug] [py3k] Fixed bug where some exception re-raise scenarios
+  would attach the exception to itself 

commit python3-SQLAlchemy for openSUSE:Factory

2016-01-08 Thread h_root
Hello community,

here is the log from the commit of package python3-SQLAlchemy for 
openSUSE:Factory checked in at 2016-01-08 15:23:41

Comparing /work/SRC/openSUSE:Factory/python3-SQLAlchemy (Old)
 and  /work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new (New)


Package is "python3-SQLAlchemy"

Changes:

--- /work/SRC/openSUSE:Factory/python3-SQLAlchemy/python3-SQLAlchemy.changes
2015-12-16 17:44:56.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new/python3-SQLAlchemy.changes   
2016-01-08 15:23:48.0 +0100
@@ -1,0 +2,7 @@
+Thu Jan  7 09:47:14 UTC 2016 - toddrme2...@gmail.com
+
+- update to version 1.0.11:
+  * see changelog at 
http://docs.sqlalchemy.org/en/latest/changelog/changelog_10.html#change-1.0.11
+- Tests fail with python3-buildservice-tweak
+
+---

Old:

  SQLAlchemy-1.0.10.tar.gz

New:

  SQLAlchemy-1.0.11.tar.gz



Other differences:
--
++ python3-SQLAlchemy.spec ++
--- /var/tmp/diff_new_pack.58az6E/_old  2016-01-08 15:23:49.0 +0100
+++ /var/tmp/diff_new_pack.58az6E/_new  2016-01-08 15:23:49.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python3-SQLAlchemy
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   python3-SQLAlchemy
-Version:1.0.10
+Version:1.0.11
 Release:0
 Url:http://www.sqlalchemy.org
 Summary:Database Abstraction Library
@@ -29,6 +29,7 @@
 BuildRequires:  python3-devel
 BuildRequires:  python3-nose
 BuildRequires:  python3-setuptools
+BuildConflicts: python3-buildservice-tweak
 
 %description
 SQLAlchemy is an Object Relational Mappper (ORM) that provides a flexible,
@@ -62,8 +63,8 @@
 python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
 
 # Tests fail for all versions
-#%check
-#python3 ./sqla_nose.py
+%check
+python3 ./sqla_nose.py
 
 %files
 %defattr(-,root,root,-)

++ SQLAlchemy-1.0.10.tar.gz -> SQLAlchemy-1.0.11.tar.gz ++
 6627 lines of diff (skipped)




commit python3-SQLAlchemy for openSUSE:Factory

2015-12-16 Thread h_root
Hello community,

here is the log from the commit of package python3-SQLAlchemy for 
openSUSE:Factory checked in at 2015-12-16 17:43:13

Comparing /work/SRC/openSUSE:Factory/python3-SQLAlchemy (Old)
 and  /work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new (New)


Package is "python3-SQLAlchemy"

Changes:

--- /work/SRC/openSUSE:Factory/python3-SQLAlchemy/python3-SQLAlchemy.changes
2015-11-02 12:55:43.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new/python3-SQLAlchemy.changes   
2015-12-16 17:44:56.0 +0100
@@ -1,0 +2,6 @@
+Mon Dec 14 00:01:32 UTC 2015 - a...@gmx.de
+
+- update to version 1.0.10:
+  * see changelog at 
http://docs.sqlalchemy.org/en/latest/changelog/changelog_10.html#change-1.0.10
+
+---

Old:

  SQLAlchemy-1.0.9.tar.gz

New:

  SQLAlchemy-1.0.10.tar.gz



Other differences:
--
++ python3-SQLAlchemy.spec ++
--- /var/tmp/diff_new_pack.sVzaol/_old  2015-12-16 17:44:57.0 +0100
+++ /var/tmp/diff_new_pack.sVzaol/_new  2015-12-16 17:44:57.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   python3-SQLAlchemy
-Version:1.0.9
+Version:1.0.10
 Release:0
 Url:http://www.sqlalchemy.org
 Summary:Database Abstraction Library

++ SQLAlchemy-1.0.9.tar.gz -> SQLAlchemy-1.0.10.tar.gz ++
 12238 lines of diff (skipped)




commit python3-SQLAlchemy for openSUSE:Factory

2015-11-02 Thread h_root
Hello community,

here is the log from the commit of package python3-SQLAlchemy for 
openSUSE:Factory checked in at 2015-11-02 12:55:42

Comparing /work/SRC/openSUSE:Factory/python3-SQLAlchemy (Old)
 and  /work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new (New)


Package is "python3-SQLAlchemy"

Changes:

--- /work/SRC/openSUSE:Factory/python3-SQLAlchemy/python3-SQLAlchemy.changes
2015-10-06 13:27:37.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new/python3-SQLAlchemy.changes   
2015-11-02 12:55:43.0 +0100
@@ -1,0 +2,6 @@
+Sun Nov  1 18:23:56 UTC 2015 - a...@gmx.de
+
+- update to version 1.0.9:
+  * see changelog at 
http://docs.sqlalchemy.org/en/latest/changelog/changelog_10.html#change-1.0.9
+
+---

Old:

  SQLAlchemy-1.0.8.tar.gz

New:

  SQLAlchemy-1.0.9.tar.gz



Other differences:
--
++ python3-SQLAlchemy.spec ++
--- /var/tmp/diff_new_pack.meYKrq/_old  2015-11-02 12:55:44.0 +0100
+++ /var/tmp/diff_new_pack.meYKrq/_new  2015-11-02 12:55:44.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   python3-SQLAlchemy
-Version:1.0.8
+Version:1.0.9
 Release:0
 Url:http://www.sqlalchemy.org
 Summary:Database Abstraction Library

++ SQLAlchemy-1.0.8.tar.gz -> SQLAlchemy-1.0.9.tar.gz ++
 17178 lines of diff (skipped)




commit python3-SQLAlchemy for openSUSE:Factory

2015-10-06 Thread h_root
Hello community,

here is the log from the commit of package python3-SQLAlchemy for 
openSUSE:Factory checked in at 2015-10-06 13:27:25

Comparing /work/SRC/openSUSE:Factory/python3-SQLAlchemy (Old)
 and  /work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new (New)


Package is "python3-SQLAlchemy"

Changes:

--- /work/SRC/openSUSE:Factory/python3-SQLAlchemy/python3-SQLAlchemy.changes
2015-08-05 06:50:28.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new/python3-SQLAlchemy.changes   
2015-10-06 13:27:37.0 +0200
@@ -1,0 +2,29 @@
+Sun Oct  4 19:20:26 UTC 2015 - a...@gmx.de
+
+- update to version 1.0.8:
+  * [engine] [bug] Fixed critical issue whereby the pool "checkout"
+event handler may be called against a stale connection without the
+"connect" event handler having been called, in the case where the
+pool attempted to reconnect after being invalidated and failed;
+the stale connection would remain present and would be used on a
+subsequent attempt. This issue has a greater impact in the 1.0
+series subsequent to 1.0.2, as it also delivers a blanked-out
+.info dictionary to the event handler; prior to 1.0.2 the .info
+dictionary is still the previous one.
+This change is also backported to: 0.9.11
+References: #3497
+  * [sqlite] [bug] Fixed bug in SQLite dialect where reflection of
+UNIQUE constraints that included non-alphabetic characters in the
+names, like dots or spaces, would not be reflected with their
+name.
+This change is also backported to: 0.9.10
+References: #3495
+  * [misc] [bug] Fixed an issue where a particular base class within
+utils didn’t implement __slots__, and therefore meant all
+subclasses of that class didn’t either, negating the rationale for
+__slots__ to be in use. Didn’t cause any issue except on
+IronPython which apparently does not implement __slots__ behavior
+compatibly with cPython.
+References: #3494
+
+---

Old:

  SQLAlchemy-1.0.7.tar.gz

New:

  SQLAlchemy-1.0.8.tar.gz



Other differences:
--
++ python3-SQLAlchemy.spec ++
--- /var/tmp/diff_new_pack.V8a1NJ/_old  2015-10-06 13:27:38.0 +0200
+++ /var/tmp/diff_new_pack.V8a1NJ/_new  2015-10-06 13:27:38.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-SQLAlchemy
-Version:1.0.7
+Version:1.0.8
 Release:0
 Url:http://www.sqlalchemy.org
 Summary:Database Abstraction Library

++ SQLAlchemy-1.0.7.tar.gz -> SQLAlchemy-1.0.8.tar.gz ++
 4246 lines of diff (skipped)




commit python3-SQLAlchemy for openSUSE:Factory

2015-08-04 Thread h_root
Hello community,

here is the log from the commit of package python3-SQLAlchemy for 
openSUSE:Factory checked in at 2015-08-05 06:50:26

Comparing /work/SRC/openSUSE:Factory/python3-SQLAlchemy (Old)
 and  /work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new (New)


Package is python3-SQLAlchemy

Changes:

--- /work/SRC/openSUSE:Factory/python3-SQLAlchemy/python3-SQLAlchemy.changes
2015-06-15 17:50:15.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new/python3-SQLAlchemy.changes   
2015-08-05 06:50:28.0 +0200
@@ -1,0 +2,12 @@
+Tue Jul 21 03:46:14 UTC 2015 - a...@gmx.de
+
+- update to version 1.0.7:
+  * see 
http://docs.sqlalchemy.org/en/latest/changelog/changelog_10.html#change-1.0.7
+
+---
+Mon Jul 13 20:56:07 UTC 2015 - a...@gmx.de
+
+- update to version 1.0.6:
+  * see 
http://docs.sqlalchemy.org/en/latest/changelog/changelog_10.html#change-1.0.6
+
+---

Old:

  SQLAlchemy-1.0.5.tar.gz

New:

  SQLAlchemy-1.0.7.tar.gz



Other differences:
--
++ python3-SQLAlchemy.spec ++
--- /var/tmp/diff_new_pack.2L6bEz/_old  2015-08-05 06:50:29.0 +0200
+++ /var/tmp/diff_new_pack.2L6bEz/_new  2015-08-05 06:50:29.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-SQLAlchemy
-Version:1.0.5
+Version:1.0.7
 Release:0
 Url:http://www.sqlalchemy.org
 Summary:Database Abstraction Library

++ SQLAlchemy-1.0.5.tar.gz - SQLAlchemy-1.0.7.tar.gz ++
 8454 lines of diff (skipped)




commit python3-SQLAlchemy for openSUSE:Factory

2015-05-10 Thread h_root
Hello community,

here is the log from the commit of package python3-SQLAlchemy for 
openSUSE:Factory checked in at 2015-05-10 10:47:37

Comparing /work/SRC/openSUSE:Factory/python3-SQLAlchemy (Old)
 and  /work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new (New)


Package is python3-SQLAlchemy

Changes:

--- /work/SRC/openSUSE:Factory/python3-SQLAlchemy/python3-SQLAlchemy.changes
2015-05-02 21:42:02.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new/python3-SQLAlchemy.changes   
2015-05-10 10:47:38.0 +0200
@@ -1,0 +2,6 @@
+Sat May  9 21:29:59 UTC 2015 - a...@gmx.de
+
+- update to version 1.0.4:
+  * see 
http://docs.sqlalchemy.org/en/latest/changelog/changelog_10.html#change-1.0.4
+  
+---

Old:

  SQLAlchemy-1.0.3.tar.gz

New:

  SQLAlchemy-1.0.4.tar.gz



Other differences:
--
++ python3-SQLAlchemy.spec ++
--- /var/tmp/diff_new_pack.OA6Ot2/_old  2015-05-10 10:47:39.0 +0200
+++ /var/tmp/diff_new_pack.OA6Ot2/_new  2015-05-10 10:47:39.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-SQLAlchemy
-Version:1.0.3
+Version:1.0.4
 Release:0
 Url:http://www.sqlalchemy.org
 Summary:Database Abstraction Library

++ SQLAlchemy-1.0.3.tar.gz - SQLAlchemy-1.0.4.tar.gz ++
 101033 lines of diff (skipped)




commit python3-SQLAlchemy for openSUSE:Factory

2015-05-02 Thread h_root
Hello community,

here is the log from the commit of package python3-SQLAlchemy for 
openSUSE:Factory checked in at 2015-05-02 21:42:01

Comparing /work/SRC/openSUSE:Factory/python3-SQLAlchemy (Old)
 and  /work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new (New)


Package is python3-SQLAlchemy

Changes:

--- /work/SRC/openSUSE:Factory/python3-SQLAlchemy/python3-SQLAlchemy.changes
2015-04-27 07:46:51.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new/python3-SQLAlchemy.changes   
2015-05-02 21:42:02.0 +0200
@@ -1,0 +2,6 @@
+Sat May  2 02:47:31 UTC 2015 - a...@gmx.de
+
+- update to version 1.0.3:
+  * see 
http://docs.sqlalchemy.org/en/latest/changelog/changelog_10.html#change-1.0.3
+
+---

Old:

  SQLAlchemy-1.0.2.tar.gz

New:

  SQLAlchemy-1.0.3.tar.gz



Other differences:
--
++ python3-SQLAlchemy.spec ++
--- /var/tmp/diff_new_pack.R4e8JF/_old  2015-05-02 21:42:02.0 +0200
+++ /var/tmp/diff_new_pack.R4e8JF/_new  2015-05-02 21:42:02.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-SQLAlchemy
-Version:1.0.2
+Version:1.0.3
 Release:0
 Url:http://www.sqlalchemy.org
 Summary:Database Abstraction Library

++ SQLAlchemy-1.0.2.tar.gz - SQLAlchemy-1.0.3.tar.gz ++
 6885 lines of diff (skipped)




commit python3-SQLAlchemy for openSUSE:Factory

2015-04-26 Thread h_root
Hello community,

here is the log from the commit of package python3-SQLAlchemy for 
openSUSE:Factory checked in at 2015-04-27 07:46:49

Comparing /work/SRC/openSUSE:Factory/python3-SQLAlchemy (Old)
 and  /work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new (New)


Package is python3-SQLAlchemy

Changes:

--- /work/SRC/openSUSE:Factory/python3-SQLAlchemy/python3-SQLAlchemy.changes
2015-04-25 11:26:32.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new/python3-SQLAlchemy.changes   
2015-04-27 07:46:51.0 +0200
@@ -1,0 +2,6 @@
+Sat Apr 25 20:37:17 UTC 2015 - a...@gmx.de
+
+- update to version 1.0.2:
+  * see 
http://docs.sqlalchemy.org/en/latest/changelog/changelog_10.html#change-1.0.2
+
+---

Old:

  SQLAlchemy-1.0.1.tar.gz

New:

  SQLAlchemy-1.0.2.tar.gz



Other differences:
--
++ python3-SQLAlchemy.spec ++
--- /var/tmp/diff_new_pack.5FwJeU/_old  2015-04-27 07:46:52.0 +0200
+++ /var/tmp/diff_new_pack.5FwJeU/_new  2015-04-27 07:46:52.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-SQLAlchemy
-Version:1.0.1
+Version:1.0.2
 Release:0
 Url:http://www.sqlalchemy.org
 Summary:Database Abstraction Library

++ SQLAlchemy-1.0.1.tar.gz - SQLAlchemy-1.0.2.tar.gz ++
 5699 lines of diff (skipped)




commit python3-SQLAlchemy for openSUSE:Factory

2015-04-25 Thread h_root
Hello community,

here is the log from the commit of package python3-SQLAlchemy for 
openSUSE:Factory checked in at 2015-04-25 09:54:24

Comparing /work/SRC/openSUSE:Factory/python3-SQLAlchemy (Old)
 and  /work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new (New)


Package is python3-SQLAlchemy

Changes:

--- /work/SRC/openSUSE:Factory/python3-SQLAlchemy/python3-SQLAlchemy.changes
2015-04-21 10:52:19.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new/python3-SQLAlchemy.changes   
2015-04-25 11:26:32.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 24 23:59:50 UTC 2015 - a...@gmx.de
+
+- update to version 1.0.1:
+  see 
http://docs.sqlalchemy.org/en/latest/changelog/changelog_10.html#change-1.0.1
+  for detailed list of changes
+
+---

Old:

  SQLAlchemy-1.0.0.tar.gz

New:

  SQLAlchemy-1.0.1.tar.gz



Other differences:
--
++ python3-SQLAlchemy.spec ++
--- /var/tmp/diff_new_pack.tNPRJD/_old  2015-04-25 11:26:32.0 +0200
+++ /var/tmp/diff_new_pack.tNPRJD/_new  2015-04-25 11:26:32.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-SQLAlchemy
-Version:1.0.0
+Version:1.0.1
 Release:0
 Url:http://www.sqlalchemy.org
 Summary:Database Abstraction Library

++ SQLAlchemy-1.0.0.tar.gz - SQLAlchemy-1.0.1.tar.gz ++
 6514 lines of diff (skipped)




commit python3-SQLAlchemy for openSUSE:Factory

2015-04-21 Thread h_root
Hello community,

here is the log from the commit of package python3-SQLAlchemy for 
openSUSE:Factory checked in at 2015-04-21 10:52:18

Comparing /work/SRC/openSUSE:Factory/python3-SQLAlchemy (Old)
 and  /work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new (New)


Package is python3-SQLAlchemy

Changes:

--- /work/SRC/openSUSE:Factory/python3-SQLAlchemy/python3-SQLAlchemy.changes
2015-03-16 07:01:11.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new/python3-SQLAlchemy.changes   
2015-04-21 10:52:19.0 +0200
@@ -1,0 +2,6 @@
+Sun Apr 19 02:27:29 UTC 2015 - a...@gmx.de
+
+- update to version 1.0.0:
+  * long list of changes, see 
http://docs.sqlalchemy.org/en/latest/changelog/changelog_10.html#change-1.0.0
+
+---

Old:

  SQLAlchemy-0.9.9.tar.gz

New:

  SQLAlchemy-1.0.0.tar.gz



Other differences:
--
++ python3-SQLAlchemy.spec ++
--- /var/tmp/diff_new_pack.hWKkak/_old  2015-04-21 10:52:20.0 +0200
+++ /var/tmp/diff_new_pack.hWKkak/_new  2015-04-21 10:52:20.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-SQLAlchemy
-Version:0.9.9
+Version:1.0.0
 Release:0
 Url:http://www.sqlalchemy.org
 Summary:Database Abstraction Library

++ SQLAlchemy-0.9.9.tar.gz - SQLAlchemy-1.0.0.tar.gz ++
 89545 lines of diff (skipped)




commit python3-SQLAlchemy for openSUSE:Factory

2015-03-16 Thread h_root
Hello community,

here is the log from the commit of package python3-SQLAlchemy for 
openSUSE:Factory checked in at 2015-03-16 07:01:00

Comparing /work/SRC/openSUSE:Factory/python3-SQLAlchemy (Old)
 and  /work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new (New)


Package is python3-SQLAlchemy

Changes:

--- /work/SRC/openSUSE:Factory/python3-SQLAlchemy/python3-SQLAlchemy.changes
2015-02-16 22:13:25.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new/python3-SQLAlchemy.changes   
2015-03-16 07:01:11.0 +0100
@@ -1,0 +2,8 @@
+Wed Mar 11 16:26:38 UTC 2015 - a...@gmx.de
+
+- update to version 0.9.9:
+  * long changelog, see
+http://docs.sqlalchemy.org/en/latest/changelog/changelog_09.html
+for details
+
+---

Old:

  SQLAlchemy-0.9.8.tar.gz

New:

  SQLAlchemy-0.9.9.tar.gz



Other differences:
--
++ python3-SQLAlchemy.spec ++
--- /var/tmp/diff_new_pack.YK6Cyb/_old  2015-03-16 07:01:12.0 +0100
+++ /var/tmp/diff_new_pack.YK6Cyb/_new  2015-03-16 07:01:12.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   python3-SQLAlchemy
-Version:0.9.8
+Version:0.9.9
 Release:0
 Url:http://www.sqlalchemy.org
 Summary:Database Abstraction Library

++ SQLAlchemy-0.9.8.tar.gz - SQLAlchemy-0.9.9.tar.gz ++
 121543 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python3-SQLAlchemy for openSUSE:Factory

2015-02-16 Thread h_root
Hello community,

here is the log from the commit of package python3-SQLAlchemy for 
openSUSE:Factory checked in at 2015-02-16 22:13:23

Comparing /work/SRC/openSUSE:Factory/python3-SQLAlchemy (Old)
 and  /work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new (New)


Package is python3-SQLAlchemy

Changes:

--- /work/SRC/openSUSE:Factory/python3-SQLAlchemy/python3-SQLAlchemy.changes
2013-11-01 17:44:13.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new/python3-SQLAlchemy.changes   
2015-02-16 22:13:25.0 +0100
@@ -1,0 +2,20 @@
+Sat Jan 17 17:58:42 UTC 2015 - a...@gmx.de
+
+- specfile:
+  * update copyright year
+  * Drop SQLAlchemy-import-logging-handlers.patch:
++ test_mapper.py got fixed upstream
++ test_execute.py doesn't use logging anymore
+  * no more README.py3k. removed it from spec file
+  * remove noarch
+  * changed sitelib to sitearch in %files section
+  * removed some 2to3 conversion that is not needed anymore
+
+- update to version 0.9.8:
+
+  Many changes (a few thousand lines), see links below for complete list
+
+  http://docs.sqlalchemy.org/en/latest/changelog/changelog_09.html
+  http://docs.sqlalchemy.org/en/latest/changelog/changelog_08.html
+
+---

Old:

  SQLAlchemy-0.8.3.tar.gz
  SQLAlchemy-import-logging-handlers.patch

New:

  SQLAlchemy-0.9.8.tar.gz



Other differences:
--
++ python3-SQLAlchemy.spec ++
--- /var/tmp/diff_new_pack.Yw3ADa/_old  2015-02-16 22:13:26.0 +0100
+++ /var/tmp/diff_new_pack.Yw3ADa/_new  2015-02-16 22:13:26.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python3-SQLAlchemy
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,21 +17,18 @@
 
 
 Name:   python3-SQLAlchemy
-Version:0.8.3
+Version:0.9.8
 Release:0
 Url:http://www.sqlalchemy.org
 Summary:Database Abstraction Library
 License:MIT
 Group:  Development/Languages/Python
-Source0:
http://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-%{version}.tar.gz
-#Patch0: SQLAlchemy-import-logging-handlers.patch
+Source: 
http://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-%{version}.tar.gz
 BuildRequires:  python3
 BuildRequires:  python3-2to3
 BuildRequires:  python3-devel
-BuildRequires:  python3-setuptools
 BuildRequires:  python3-nose
-#cextension not working yet with py3, so build as noarch
-BuildArch:  noarch
+BuildRequires:  python3-setuptools
 
 %description
 SQLAlchemy is an Object Relational Mappper (ORM) that provides a flexible,
@@ -54,14 +51,9 @@
 
 %prep
 %setup -q -n SQLAlchemy-%{version}
-#%patch0 -p1
 rm -rf doc/build # Remove unnecessary scripts for building documentation
-sed -i 's/\r$//' examples/dynamic_dict/dynamic_dict.py
-2to3 -wvn .
 
 %build
-# Convert tests, examples, source to python3
-python3 sa2to3.py --no-diffs -w lib test examples
 find examples -name *.bak -exec rm -f {} \;
 # Currently the cextension doesn't work with py3
 CFLAGS=%{optflags} -fno-strict-aliasing python3 setup.py build
@@ -75,9 +67,9 @@
 
 %files
 %defattr(-,root,root,-)
-%doc CHANGES LICENSE README.dialects.rst README.rst README.py3k 
README.unittests.rst
-%{python3_sitelib}/sqlalchemy/
-%{python3_sitelib}/SQLAlchemy-%{version}-py%{py3_ver}.egg-info
+%doc CHANGES LICENSE README.dialects.rst README.rst README.unittests.rst
+%{python3_sitearch}/sqlalchemy/
+%{python3_sitearch}/SQLAlchemy-%{version}-py%{py3_ver}.egg-info
 
 %files doc
 %defattr(-,root,root)

++ SQLAlchemy-0.8.3.tar.gz - SQLAlchemy-0.9.8.tar.gz ++
 334634 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit python3-SQLAlchemy for openSUSE:Factory

2013-11-01 Thread h_root
Hello community,

here is the log from the commit of package python3-SQLAlchemy for 
openSUSE:Factory checked in at 2013-11-01 17:44:07

Comparing /work/SRC/openSUSE:Factory/python3-SQLAlchemy (Old)
 and  /work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new (New)


Package is python3-SQLAlchemy

Changes:

--- /work/SRC/openSUSE:Factory/python3-SQLAlchemy/python3-SQLAlchemy.changes
2013-07-18 18:07:25.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python3-SQLAlchemy.new/python3-SQLAlchemy.changes   
2013-11-01 17:44:13.0 +0100
@@ -1,0 +2,16 @@
+Fri Nov  1 10:15:29 UTC 2013 - p.drou...@gmail.com
+
+- Update to version 0.8.3
+  + See 
http://docs.sqlalchemy.org/en/latest/changelog/changelog_08.html#change-0.8.3
+- Fix build on Factory
+
+---
+Sat Oct 26 12:29:28 UTC 2013 - p.drou...@gmail.com
+
+- Update to version 0.8.2
+  + Too numuch changes
+See 
http://docs.sqlalchemy.org/en/latest/changelog/changelog_08.html#change-0.8.2
+- Don't apply SQLAlchemy-import-logging-handlers.patch; sounds fixed
+  by upstream
+
+---

Old:

  SQLAlchemy-0.7.10.tar.gz

New:

  SQLAlchemy-0.8.3.tar.gz



Other differences:
--
++ python3-SQLAlchemy.spec ++
--- /var/tmp/diff_new_pack.D4MPBw/_old  2013-11-01 17:44:14.0 +0100
+++ /var/tmp/diff_new_pack.D4MPBw/_new  2013-11-01 17:44:14.0 +0100
@@ -17,21 +17,19 @@
 
 
 Name:   python3-SQLAlchemy
-Version:0.7.10
+Version:0.8.3
 Release:0
 Url:http://www.sqlalchemy.org
 Summary:Database Abstraction Library
 License:MIT
 Group:  Development/Languages/Python
 Source0:
http://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-%{version}.tar.gz
-Patch0: SQLAlchemy-import-logging-handlers.patch
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+#Patch0: SQLAlchemy-import-logging-handlers.patch
 BuildRequires:  python3
 BuildRequires:  python3-2to3
 BuildRequires:  python3-devel
-BuildRequires:  python3-distribute
+BuildRequires:  python3-setuptools
 BuildRequires:  python3-nose
-Requires:   python(abi) = %{py3_ver}
 #cextension not working yet with py3, so build as noarch
 BuildArch:  noarch
 
@@ -56,7 +54,7 @@
 
 %prep
 %setup -q -n SQLAlchemy-%{version}
-%patch0 -p1
+#%patch0 -p1
 rm -rf doc/build # Remove unnecessary scripts for building documentation
 sed -i 's/\r$//' examples/dynamic_dict/dynamic_dict.py
 2to3 -wvn .
@@ -71,12 +69,13 @@
 %install
 python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
 
-%check
-python3 ./sqla_nose.py
+# Tests fail for all versions
+#%check
+#python3 ./sqla_nose.py
 
 %files
 %defattr(-,root,root,-)
-%doc CHANGES CHANGES_PRE_06 LICENSE README.rst README.py3k README.unittests
+%doc CHANGES LICENSE README.dialects.rst README.rst README.py3k 
README.unittests.rst
 %{python3_sitelib}/sqlalchemy/
 %{python3_sitelib}/SQLAlchemy-%{version}-py%{py3_ver}.egg-info
 

++ SQLAlchemy-0.7.10.tar.gz - SQLAlchemy-0.8.3.tar.gz ++
 263522 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org