17
0

280 Commits

Author SHA256 Message Date
Tomáš Chvátal
49d42cdf2f Accepting request 677929 from system:homeautomation:home-assistant
- version update to 1.2.17
  https://docs.sqlalchemy.org/en/latest/changelog/changelog_12.html

OBS-URL: https://build.opensuse.org/request/show/677929
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-SQLAlchemy?expand=0&rev=130
2019-02-21 08:54:17 +00:00
Tomáš Chvátal
899a721543 Accepting request 673004 from system:homeautomation:home-assistant
- update to version 1.2.16:
  Bugfix releases, find details at
  https://docs.sqlalchemy.org/en/latest/changelog/changelog_12.html#change-1.2.16
  https://docs.sqlalchemy.org/en/latest/changelog/changelog_12.html#change-1.2.15

OBS-URL: https://build.opensuse.org/request/show/673004
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-SQLAlchemy?expand=0&rev=129
2019-02-09 16:25:41 +00:00
f6bf803e02 Accepting request 659356 from devel:languages:python
- Remove superfluous devel dependency for noarch package

OBS-URL: https://build.opensuse.org/request/show/659356
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-SQLAlchemy?expand=0&rev=58
2018-12-19 12:52:11 +00:00
4609b19577 Remove superfluous devel dependency for noarch package
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-SQLAlchemy?expand=0&rev=127
2018-12-04 14:07:30 +00:00
440414c92b Accepting request 648375 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/648375
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-SQLAlchemy?expand=0&rev=57
2018-11-12 08:45:58 +00:00
Tomáš Chvátal
0e04d7983b Accepting request 648371 from home:apersaud:branches:devel:languages:python
update to latest version

OBS-URL: https://build.opensuse.org/request/show/648371
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-SQLAlchemy?expand=0&rev=125
2018-11-12 07:20:19 +00:00
86f1bdc47f Accepting request 646013 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/646013
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-SQLAlchemy?expand=0&rev=56
2018-11-06 13:28:57 +00:00
Tomáš Chvátal
b32680d085 Accepting request 645961 from home:apersaud:branches:devel:languages:python
update to latest version

OBS-URL: https://build.opensuse.org/request/show/645961
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-SQLAlchemy?expand=0&rev=123
2018-11-02 08:14:26 +00:00
4812136a7c Accepting request 638276 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/638276
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-SQLAlchemy?expand=0&rev=55
2018-09-26 12:24:31 +00:00
Tomáš Chvátal
4bf58cfdb6 Accepting request 638274 from home:apersaud:branches:devel:languages:python
update to latest version

OBS-URL: https://build.opensuse.org/request/show/638274
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-SQLAlchemy?expand=0&rev=121
2018-09-26 03:25:09 +00:00
ad528a2836 Accepting request 631547 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/631547
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-SQLAlchemy?expand=0&rev=54
2018-08-27 10:59:43 +00:00
Tomáš Chvátal
84093b4583 Accepting request 631537 from home:apersaud:branches:devel:languages:python
- update to version 1.2.11:
  * orm declarative
    + [bug] [declarative] [orm] Fixed issue in previously untested use
      case, allowing a declarative mapped class to inherit from a
      classically-mapped class outside of the declarative base,
      including that it accommodates for unmapped intermediate
      classes. An unmapped intermediate class may specify
      __abstract__, which is now interpreted correctly, or the
      intermediate class can remain unmarked, and the classically
      mapped base class will be detected within the hierarchy
      regardless. In order to anticipate existing scenarios which may
      be mixing in classical mappings into existing declarative
      hierarchies, an error is now raised if multiple mapped bases are
      detected for a given class.   References: #4321
  * sql
    + [sql] [bug] Fixed issue that is closely related to #3639 where
      an expression rendered in a boolean context on a non-native
      boolean backend would be compared to 1/0 even though it is
      already an implcitly boolean expression, when
      ColumnElement.self_group() were used. While this does not affect
      the user-friendly backends (MySQL, SQLite) it was not handled by
      Oracle (and possibly SQL Server). Whether or not the expression
      is implicitly boolean on any database is now determined up front
      as an additional check to not generate the integer comparison
      within the compliation of the statement.  References: #4320
    + [sql] [bug] Added missing window function parameters
      WithinGroup.over.range_ and WithinGroup.over.rows parameters to
      the WithinGroup.over() and FunctionFilter.over() methods, to
      correspond to the range/rows feature added to the “over” method
      of SQL functions as part of #3049 in version 1.1.  References:
      #4322
    + [sql] [bug] Fixed bug where the multi-table support for UPDATE
      and DELETE statements did not consider the additional FROM
      elements as targets for correlation, when a correlated SELECT
      were also combined with the statement. This change now includes
      that a SELECT statement in the WHERE clause for such a statement
      will try to auto-correlate back to these additional tables in
      the parent UPDATE/DELETE or unconditionally correlate if
      Select.correlate() is used. Note that auto-correlation raises an
      error if the SELECT statement would have no FROM clauses as a
      result, which can now occur if the parent UPDATE/DELETE
      specifies the same tables in its additional set of tables;
      specify Select.correlate() explicitly to resolve.  References:
      #4313
  * oracle
    + [oracle] [bug] For cx_Oracle, Integer datatypes will now be
      bound to “int”, per advice from the cx_Oracle
      developers. Previously, using cx_Oracle.NUMBER caused a loss in
      precision within the cx_Oracle 6.x series.  References: #4309
  * misc
    + [bug] [py3k] Started importing “collections” from
      “collections.abc” under Python 3.3 and greater for Python 3.8
      compatibility. Pull request courtesy Nathaniel Knight.
    + Fixed issue where the “schema” name used for a SQLite database
      within table reflection would not quote the schema name
      correctly. Pull request courtesy Phillip Cloud.

OBS-URL: https://build.opensuse.org/request/show/631537
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-SQLAlchemy?expand=0&rev=119
2018-08-25 20:12:28 +00:00
06ed68a37d Accepting request 622792 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/622792
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-SQLAlchemy?expand=0&rev=53
2018-07-14 18:26:00 +00:00
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