Tomáš Chvátal
86baab65d2
Accepting request 622522 from home:apersaud:branches:devel:languages:python
...
update to latest version
OBS-URL: https://build.opensuse.org/request/show/622522
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-SQLAlchemy?expand=0&rev=117
2018-07-14 09:00:08 +00:00
3b737fd1f0
Accepting request 620083 from devel:languages:python
...
OBS-URL: https://build.opensuse.org/request/show/620083
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-SQLAlchemy?expand=0&rev=52
2018-07-02 21:33:09 +00:00
0cf291d7da
Accepting request 620059 from home:apersaud:branches:devel:languages:python
...
update to latest version
OBS-URL: https://build.opensuse.org/request/show/620059
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-SQLAlchemy?expand=0&rev=115
2018-07-01 21:24:33 +00:00
a9622eea1f
Accepting request 619112 from devel:languages:python
...
- add upstream fix_test_reflection.patch to fix tests with new sqlite (forwarded request 619105 from mimi_vx)
OBS-URL: https://build.opensuse.org/request/show/619112
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-SQLAlchemy?expand=0&rev=51
2018-06-27 08:22:07 +00:00
27c2b295e7
Accepting request 619105 from home:mimi_vx:branches:devel:languages:python
...
- add upstream fix_test_reflection.patch to fix tests with new sqlite
OBS-URL: https://build.opensuse.org/request/show/619105
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-SQLAlchemy?expand=0&rev=113
2018-06-26 07:48:41 +00:00
99f17ae0aa
Accepting request 618391 from home:frispete:python
...
- update to version 1.2.8:
* orm
+ [orm] [bug] Fixed regression in 1.2.7 caused by #4228 , which
itself was fixing a 1.2-level regression, where the query_cls
callable passed to a Session was assumed to be a subclass of
Query with class method availability, as opposed to an
arbitrary callable. In particular, the dogpile caching example
illustrates query_cls as a function and not a Query subclass.
References: #4256
+ [orm] [bug] Fixed a long-standing regression that occurred in
version 1.0, which prevented the use of a custom MapperOption
that alters the _params of a Query object for a lazy load,
since the lazy loader itself would overwrite those parameters.
This applies to the “temporal range” example on the wiki. Note
however that the Query.populate_existing() method is now
required in order to rewrite the mapper options associated with
an object already loaded in the identity map.
As part of this change, a custom defined MapperOption will now
cause lazy loaders related to the target object to use a non-
baked query by default unless the
MapperOption._generate_cache_key() method is implemented. In
particular, this repairs one regression which occured when
using the dogpile.cache “advanced” example, which was not
returning cached results and instead emitting SQL due to an
incompatibility with the baked query loader; with the change,
the RelationshipCache option included for many releases in the
dogpile example will disable the “baked” query altogether. Note
that the dogpile example is also modernized to avoid both of
these issues as part of issue #4258 . References: #4128
+ [orm] [bug] Fixed bug where the new
OBS-URL: https://build.opensuse.org/request/show/618391
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-SQLAlchemy?expand=0&rev=112
2018-06-22 06:00:40 +00:00
fa42b4bc65
Accepting request 599639 from devel:languages:python
...
OBS-URL: https://build.opensuse.org/request/show/599639
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-SQLAlchemy?expand=0&rev=50
2018-04-26 11:37:26 +00:00
Tomáš Chvátal
f0d5538ef0
Accepting request 599630 from home:apersaud:branches:devel:languages:python
...
update to latest version
OBS-URL: https://build.opensuse.org/request/show/599630
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-SQLAlchemy?expand=0&rev=110
2018-04-21 19:41:16 +00:00
b1a8c00df2
Accepting request 594667 from devel:languages:python
...
OBS-URL: https://build.opensuse.org/request/show/594667
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-SQLAlchemy?expand=0&rev=49
2018-04-11 11:58:06 +00:00
Tomáš Chvátal
8c88b3c8d2
Accepting request 594666 from home:apersaud:branches:devel:languages:python
...
- specfile:
* run spec-cleaner
- update to version 1.2.6:
* orm
+ [orm] [bug] Fixed bug where using Mutable.associate_with() or
Mutable.as_mutable() in conjunction with a class that has non-
primary mappers set up with alternatively-named attributes would
produce an attribute error. Since non-primary mappers are not
used for persistence, the mutable extension now excludes
non-primary mappers from its instrumentation steps. References:
#4215
* engine
+ [engine] [bug] Fixed bug in connection pool where a connection
could be present in the pool without all of its “connect” event
handlers called, if a previous “connect” handler threw an
exception; note that the dialects themselves have connect
handlers that emit SQL, such as those which set transaction
isolation, which can fail if the database is in a non-available
state, but still allows a connection. The connection is now
invalidated first if any of the connect handlers fail.
References: #4225
* sql
+ [sql] [bug] Fixed a regression that occurred from the previous
fix to #4204 in version 1.2.5, where a CTE that refers to itself
after the CTE.alias() method has been called would not refer to
iself correctly. References: #4204
* postgresql
+ [postgresql] [feature] Added support for “PARTITION BY” in
Postgresql table definitions, using
“postgresql_partition_by”. Pull request courtesy Vsevolod
Solovyov.
* mssql
+ [mssql] [bug] Adjusted the SQL Server version detection for
pyodbc to only allow for numeric tokens, filtering out
non-integers, since the dialect does tuple- numeric comparisons
with this value. This is normally true for all known SQL Server
/ pyodbc drivers in any case. References: #4227
* oracle
+ [oracle] [bug] The minimum cx_Oracle version supported is 5.2
(June 2015). Previously, the dialect asserted against version
5.0 but as of 1.2.2 we are using some symbols that did not
appear until 5.2. References: #4211
* misc
+ [bug] [declarative] Removed a warning that would be emitted when
calling upon __table_args__, __mapper_args__ as named with a
@declared_attr method, when called from a non-mapped declarative
mixin. Calling these directly is documented as the approach to
use when one is overidding one of these methods on a mapped
class. The warning still emits for regular attribute names.
References: #4221
OBS-URL: https://build.opensuse.org/request/show/594666
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-SQLAlchemy?expand=0&rev=108
2018-04-08 17:58:08 +00:00
d7afbda037
Accepting request 584214 from devel:languages:python
...
OBS-URL: https://build.opensuse.org/request/show/584214
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-SQLAlchemy?expand=0&rev=48
2018-03-09 09:44:42 +00:00
Tomáš Chvátal
fbe463bb45
Accepting request 584191 from home:apersaud:branches:devel:languages:python
...
update to latest version
OBS-URL: https://build.opensuse.org/request/show/584191
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-SQLAlchemy?expand=0&rev=106
2018-03-08 08:50:26 +00:00
a22fe987aa
Accepting request 579760 from devel:languages:python
...
OBS-URL: https://build.opensuse.org/request/show/579760
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-SQLAlchemy?expand=0&rev=47
2018-02-25 10:46:56 +00:00
Tomáš Chvátal
eb79aa6624
Accepting request 579683 from home:apersaud:branches:devel:languages:python
...
update to latest version
OBS-URL: https://build.opensuse.org/request/show/579683
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-SQLAlchemy?expand=0&rev=104
2018-02-24 07:36:10 +00:00
16262faea3
Accepting request 577965 from devel:languages:python
...
OBS-URL: https://build.opensuse.org/request/show/577965
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-SQLAlchemy?expand=0&rev=46
2018-02-20 16:54:38 +00:00
Tomáš Chvátal
7768e53734
Accepting request 577789 from home:apersaud:branches:devel:languages:python
...
update to latest version
OBS-URL: https://build.opensuse.org/request/show/577789
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-SQLAlchemy?expand=0&rev=102
2018-02-19 08:14:00 +00:00
244be20f11
Accepting request 570418 from devel:languages:python
...
OBS-URL: https://build.opensuse.org/request/show/570418
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-SQLAlchemy?expand=0&rev=45
2018-01-29 13:58:55 +00:00
2693e7c1ca
Accepting request 570408 from home:apersaud:branches:devel:languages:python
...
update to latest version
OBS-URL: https://build.opensuse.org/request/show/570408
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-SQLAlchemy?expand=0&rev=100
2018-01-28 23:54:28 +00:00
af64dd3eff
Accepting request 566980 from devel:languages:python
...
OBS-URL: https://build.opensuse.org/request/show/566980
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-SQLAlchemy?expand=0&rev=44
2018-01-20 10:26:44 +00:00
Tomáš Chvátal
85cdb2ebd2
Accepting request 566976 from home:apersaud:branches:devel:languages:python
...
update to latest version
OBS-URL: https://build.opensuse.org/request/show/566976
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-SQLAlchemy?expand=0&rev=98
2018-01-17 19:19:50 +00:00
22032b605e
Accepting request 561265 from devel:languages:python
...
OBS-URL: https://build.opensuse.org/request/show/561265
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-SQLAlchemy?expand=0&rev=43
2018-01-03 12:40:07 +00:00
abb152255f
Accepting request 561250 from home:apersaud:branches:devel:languages:python
...
- specfile:
* updated test requirements
- update to version 1.2.0:
* See https://docs.sqlalchemy.org/en/latest/changelog/changelog_12.html
OBS-URL: https://build.opensuse.org/request/show/561250
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-SQLAlchemy?expand=0&rev=96
2018-01-03 06:46:12 +00:00
c13287334b
Accepting request 528894 from devel:languages:python
...
1
OBS-URL: https://build.opensuse.org/request/show/528894
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-SQLAlchemy?expand=0&rev=42
2017-09-27 14:55:29 +00:00
bcb392153a
Accepting request 528859 from home:apersaud:branches:devel:languages:python
...
update to latest version
OBS-URL: https://build.opensuse.org/request/show/528859
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-SQLAlchemy?expand=0&rev=94
2017-09-27 05:53:07 +00:00
ab42fea4e4
Accepting request 515249 from devel:languages:python
...
1
OBS-URL: https://build.opensuse.org/request/show/515249
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-SQLAlchemy?expand=0&rev=41
2017-08-10 12:06:04 +00:00
d3e628f45a
Accepting request 515248 from home:tbechtold:branches:devel:languages:python
...
- update to 1.1.12:
* See http://docs.sqlalchemy.org/en/latest/changelog/changelog_11.html#change-1.1.12
OBS-URL: https://build.opensuse.org/request/show/515248
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-SQLAlchemy?expand=0&rev=92
2017-08-08 19:49:02 +00:00
e5cdc82eba
Accepting request 509133 from devel:languages:python
...
1
OBS-URL: https://build.opensuse.org/request/show/509133
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-SQLAlchemy?expand=0&rev=40
2017-07-11 06:27:25 +00:00
e2f0f6705f
Accepting request 508851 from home:tbechtold:branches:devel:languages:python
...
- Update to 1.1.11:
* See http://docs.sqlalchemy.org/en/latest/changelog/changelog_11.html#change-1.1.11
- Update to 1.1.10:
* See http://docs.sqlalchemy.org/en/latest/changelog/changelog_11.html#change-1.1.10
OBS-URL: https://build.opensuse.org/request/show/508851
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-SQLAlchemy?expand=0&rev=90
2017-07-10 10:44:13 +00:00
5293a4a5b1
Accepting request 493131 from devel:languages:python
...
1
OBS-URL: https://build.opensuse.org/request/show/493131
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-SQLAlchemy?expand=0&rev=39
2017-05-06 16:31:15 +00:00
Todd R
a7f63d76f8
Accepting request 493120 from home:TheBlackCat:branches:devel:languages:python
...
Don't provide python2-sqlalchemy, singlespec packages should use correct name.
OBS-URL: https://build.opensuse.org/request/show/493120
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-SQLAlchemy?expand=0&rev=88
2017-05-06 04:25:35 +00:00
22185547f7
Accepting request 492343 from devel:languages:python
...
1
OBS-URL: https://build.opensuse.org/request/show/492343
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-SQLAlchemy?expand=0&rev=38
2017-05-03 13:56:49 +00:00
Todd R
cdee2ae190
Accepting request 492342 from home:TheBlackCat:branches:devel:languages:python
...
Add literal python-sqlalchemy provides.
OBS-URL: https://build.opensuse.org/request/show/492342
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-SQLAlchemy?expand=0&rev=86
2017-05-01 19:00:13 +00:00
bc9261a3da
Accepting request 489145 from devel:languages:python
...
1
OBS-URL: https://build.opensuse.org/request/show/489145
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-SQLAlchemy?expand=0&rev=37
2017-04-28 08:41:09 +00:00
Todd R
4d59b93d9d
Accepting request 489144 from home:TheBlackCat:branches:devel:languages:python
...
- Update to 1.1.9
- Implement single-spec version.
OBS-URL: https://build.opensuse.org/request/show/489144
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-SQLAlchemy?expand=0&rev=84
2017-04-18 16:10:52 +00:00
e58a7bb352
Accepting request 428019 from devel:languages:python
...
1
OBS-URL: https://build.opensuse.org/request/show/428019
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-SQLAlchemy?expand=0&rev=36
2016-10-10 14:19:46 +00:00
Todd R
cc861aecd9
Accepting request 428018 from home:TheBlackCat:branches:devel:languages:python
...
Update to 1.0.15
OBS-URL: https://build.opensuse.org/request/show/428018
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-SQLAlchemy?expand=0&rev=82
2016-09-15 23:29:32 +00:00
e0765301e8
Accepting request 400455 from devel:languages:python
...
- fix source url
- update to 1.0.13:
* see http://docs.sqlalchemy.org/en/latest/changelog/changelog_10.html#change-1.0.12
and http://docs.sqlalchemy.org/en/latest/changelog/changelog_10.html#change-1.0.13
Remove 0001-fix-sqlite3.10.0-test.patch. Applied upstream.
OBS-URL: https://build.opensuse.org/request/show/400455
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-SQLAlchemy?expand=0&rev=35
2016-06-07 21:50:38 +00:00
52809a728b
- fix source url
...
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-SQLAlchemy?expand=0&rev=80
2016-06-06 11:51:14 +00:00
00f9254901
Accepting request 399999 from home:tbechtold:branches:devel:languages:python
...
- update to 1.0.13:
* see http://docs.sqlalchemy.org/en/latest/changelog/changelog_10.html#change-1.0.12
and http://docs.sqlalchemy.org/en/latest/changelog/changelog_10.html#change-1.0.13
Remove 0001-fix-sqlite3.10.0-test.patch. Applied upstream.
OBS-URL: https://build.opensuse.org/request/show/399999
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-SQLAlchemy?expand=0&rev=79
2016-06-06 11:13:22 +00:00
6d23279490
Accepting request 358855 from devel:languages:python
...
1
OBS-URL: https://build.opensuse.org/request/show/358855
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-SQLAlchemy?expand=0&rev=34
2016-02-17 09:24:32 +00:00
9bdebf9a74
Accepting request 358854 from home:aplanas:branches:devel:languages:python
...
- Add 0001-fix-sqlite3.10.0-test.patch
Backport fix after SQLite3.10 upgrade
OBS-URL: https://build.opensuse.org/request/show/358854
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-SQLAlchemy?expand=0&rev=77
2016-02-11 12:53:19 +00:00
b73e8054e8
Accepting request 353053 from devel:languages:python
...
1
OBS-URL: https://build.opensuse.org/request/show/353053
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-SQLAlchemy?expand=0&rev=33
2016-01-11 18:12:19 +00:00
4108551712
Accepting request 353014 from Cloud:OpenStack:Master
...
- update to 1.0.11:
* see http://docs.sqlalchemy.org/en/latest/changelog/changelog_10.html#change-1.0.11
OBS-URL: https://build.opensuse.org/request/show/353014
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-SQLAlchemy?expand=0&rev=75
2016-01-11 10:57:31 +00:00
235e624be1
Accepting request 336459 from devel:languages:python
...
1
OBS-URL: https://build.opensuse.org/request/show/336459
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-SQLAlchemy?expand=0&rev=32
2015-10-06 11:27:43 +00:00
Michal Čihař
bda3775629
Accepting request 336274 from Cloud:OpenStack:Master
...
- update to 1.0.8:
* see http://docs.sqlalchemy.org/en/latest/changelog/changelog_10.html#change-1.0.8
OBS-URL: https://build.opensuse.org/request/show/336274
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-SQLAlchemy?expand=0&rev=73
2015-10-05 07:54:39 +00:00
Stephan Kulow
7ee6ea3f86
Accepting request 312318 from devel:languages:python
...
1
OBS-URL: https://build.opensuse.org/request/show/312318
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-SQLAlchemy?expand=0&rev=31
2015-06-17 14:16:27 +00:00
2e7fd90439
Accepting request 312257 from home:bruno_friedmann:branches:devel:languages:python
...
Update python2 packaging according to python3 package
OBS-URL: https://build.opensuse.org/request/show/312257
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-SQLAlchemy?expand=0&rev=71
2015-06-16 19:01:22 +00:00
6be94932ba
Accepting request 308523 from devel:languages:python
...
1
OBS-URL: https://build.opensuse.org/request/show/308523
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-SQLAlchemy?expand=0&rev=30
2015-05-25 09:13:56 +00:00
Denisart Benjamin
92ad822a0c
Accepting request 308522 from home:bruno_friedmann:branches:devel:languages:python
...
Upgrade to last upstream version so be equal to python3-SQLAlchemy
Added full changelog
OBS-URL: https://build.opensuse.org/request/show/308522
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-SQLAlchemy?expand=0&rev=69
2015-05-24 15:57:32 +00:00
7c1f2bba1f
Accepting request 298601 from devel:languages:python
...
1
OBS-URL: https://build.opensuse.org/request/show/298601
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-SQLAlchemy?expand=0&rev=29
2015-04-23 06:04:54 +00:00