1. 24 Feb, 2022 1 commit
  2. 21 Feb, 2022 2 commits
    • Thomas Goirand's avatar
      Now packaging 11.2.0 · 600e5db5
      Thomas Goirand authored
      600e5db5
    • Thomas Goirand's avatar
      Merge tag '11.2.0' into debian/yoga · 9b0705bf
      Thomas Goirand authored
      oslo.db 11.2.0 release
      
      meta:version: 11.2.0
      meta:diff-start: -
      meta:series: yoga
      meta:release-type: release
      meta:pypi: yes
      meta:first: no
      meta:release:Author: Daniel Bengtsson <dbengt@redhat.com>
      meta:release:Commit: Daniel Bengtsson <dbengt@redhat.com>
      meta:release:Change-Id: Ibf4f08679a5a14a774bb0ee0e4da66ac00befb54
      meta:release:Code-Review+2: Hervé Beraud <herveberaud.pro@gmail.com>
      meta:release:Code-Review+2: Elod Illes <elod.illes@est.tech>
      meta:release:Workflow+1: Elod Illes <elod.illes@est.tech>
      9b0705bf
  3. 08 Feb, 2022 1 commit
  4. 02 Feb, 2022 2 commits
  5. 21 Dec, 2021 1 commit
  6. 19 Nov, 2021 1 commit
  7. 15 Nov, 2021 2 commits
  8. 12 Nov, 2021 6 commits
  9. 29 Sep, 2021 1 commit
  10. 24 Sep, 2021 1 commit
  11. 10 Sep, 2021 2 commits
  12. 23 Aug, 2021 3 commits
    • Thomas Goirand's avatar
      Updated (build-)depends for this release. · 6de42b82
      Thomas Goirand authored
      6de42b82
    • Thomas Goirand's avatar
      Now packaging 11.0.0 (Xena). · c3832605
      Thomas Goirand authored
      c3832605
    • Thomas Goirand's avatar
      Merge tag '11.0.0' into debian/xena · b7b37a0e
      Thomas Goirand authored
      oslo.db 11.0.0 release
      
      meta:version: 11.0.0
      meta:diff-start: -
      meta:series: xena
      meta:release-type: release
      meta:pypi: yes
      meta:first: no
      meta:release:Author: Hervé Beraud <hberaud@redhat.com>
      meta:release:Commit: Hervé Beraud <hberaud@redhat.com>
      meta:release:Change-Id: Icc048cb736d1e73737b98f6134e955d22bf46cf7
      meta:release:Code-Review+2: Hervé Beraud <herveberaud.pro@gmail.com>
      meta:release:Code-Review+2: Elod Illes <elod.illes@est.tech>
      meta:release:Workflow+1: Elod Illes <elod.illes@est.tech>
      b7b37a0e
  13. 20 Aug, 2021 2 commits
    • Michal Arbet's avatar
      Release to unstable · f83220fd
      Michal Arbet authored
      f83220fd
    • Michal Arbet's avatar
      Merge tag '8.5.1' into debian/wallaby · 9ccd8d8c
      Michal Arbet authored
      oslo.db 8.5.1 release
      
      meta:version: 8.5.1
      meta:diff-start: -
      meta:series: wallaby
      meta:release-type: release
      meta:pypi: yes
      meta:first: no
      meta:release:Author: Stephen Finucane <sfinucan@redhat.com>
      meta:release:Commit: Stephen Finucane <sfinucan@redhat.com>
      meta:release:Change-Id: I333a89a2990861b75ee28539839c7134a3f809ab
      meta:release:Code-Review+1: Brin Zhang <zhangbailin@inspur.com>
      meta:release:Code-Review+2: Hervé Beraud <herveberaud.pro@gmail.com>
      meta:release:Code-Review+2: Elod Illes <elod.illes@est.tech>
      meta:release:Workflow+1: Elod Illes <elod.illes@est.tech>
      9ccd8d8c
  14. 19 Aug, 2021 1 commit
  15. 16 Aug, 2021 2 commits
  16. 10 Aug, 2021 12 commits
    • Stephen Finucane's avatar
      Remove use of Session.begin.subtransactions flag · cd5f697a
      Stephen Finucane authored
      
      
      Resolve the following RemovedIn20Warning warning:
      
        The Session.begin.subtransactions flag is deprecated and will be
        removed in SQLAlchemy version 2.0.  See the documentation at
        session_subtransactions for background on a compatible alternative
        pattern.
      
      Change-Id: Ib2537bae77861ee60d17a48a72c57b88e043553e
      Signed-off-by: default avatarStephen Finucane <stephenfin@redhat.com>
      cd5f697a
    • Stephen Finucane's avatar
      Don't rely on implicit autocommit · b3a56b35
      Stephen Finucane authored
      
      
      Resolve the following RemovedIn20Warning warning:
      
        The current statement is being autocommitted using implicit
        autocommit, which will be removed in SQLAlchemy 2.0. Use the .begin()
        method of Engine or Connection in order to use an explicit transaction
        for DML and DDL statements.
      
      Change-Id: Ib789cd4d11a3d5dd01fcdb99822025b11bbc234e
      Signed-off-by: default avatarStephen Finucane <stephenfin@redhat.com>
      b3a56b35
    • Stephen Finucane's avatar
      Replace use of 'Engine.execute()' · df901a1c
      Stephen Finucane authored
      
      
      Resolve the following RemovedIn20Warning warning:
      
        The Engine.execute() method is considered legacy as of the 1.x series
        of SQLAlchemy and will be removed in 2.0. All statement execution in
        SQLAlchemy 2.0 is performed by the Connection.execute() method of
        Connection, or in the ORM by the Session.execute() method of Session.
      
      Change-Id: I4c47a690a94abcb3b4b6fb087a1bf86c5350b523
      Signed-off-by: default avatarStephen Finucane <stephenfin@redhat.com>
      df901a1c
    • Stephen Finucane's avatar
      Don't call mapper() outside of declarative registry · ecb15c4a
      Stephen Finucane authored
      
      
      Resolve the following RemovedIn20Warning:
      
        Calling the mapper() function directly outside of a declarative
        registry is deprecated. Please use the
        sqlalchemy.orm.registry.map_imperatively() function for a classical
        mapping.
      
      Change-Id: I92a7ccdd48eedd4c788384033743daf50a9dc113
      Signed-off-by: default avatarStephen Finucane <stephenfin@redhat.com>
      ecb15c4a
    • Stephen Finucane's avatar
      Don't pass kwargs to connection.execute() · e1039e08
      Stephen Finucane authored
      
      
      Resolve the following RemovedIn20Warning warning:
      
        The connection.execute() method in SQLAlchemy 2.0 will accept
        parameters as a single dictionary or a single sequence of dictionaries
        only. Parameters passed as keyword arguments, tuples or positionally
        oriented dictionaries and/or tuples will no longer be accepted.
      
      Change-Id: I44675fce86337696b6494abc03e8058af32686c6
      Signed-off-by: default avatarStephen Finucane <stephenfin@redhat.com>
      e1039e08
    • Stephen Finucane's avatar
      Replace use of Executable.execute method · 62d77fc6
      Stephen Finucane authored
      
      
      Resolve the following RemovedIn20Warning warning:
      
        The Executable.execute() method is considered legacy as of the 1.x
        series of SQLAlchemy and will be removed in 2.0. All statement
        execution in SQLAlchemy 2.0 is performed by the Connection.execute()
        method of Connection, or in the ORM by the Session.execute() method of
        Session.
      
      Change-Id: Ie0acba4a315c85ec7236e44a22449e0ad920ca9b
      Signed-off-by: default avatarStephen Finucane <stephenfin@redhat.com>
      62d77fc6
    • Stephen Finucane's avatar
      Remove unnecessary warning filter · c320df47
      Stephen Finucane authored
      
      
      Looks like we solved this along the way.
      
      Change-Id: I50469e58fe3fae695316cb344fea44ec18fffe60
      Signed-off-by: default avatarStephen Finucane <stephenfin@redhat.com>
      c320df47
    • Stephen Finucane's avatar
      Replace use of Engine.scalar() · fadc0ef9
      Stephen Finucane authored
      
      
      Resolve the following RemovedIn20Warning warning:
      
        The Engine.scalar() method is considered legacy as of the 1.x series
        of SQLAlchemy and will be removed in 2.0. All statement execution in
        SQLAlchemy 2.0 is performed by the Connection.execute() method of
        Connection, or in the ORM by the Session.execute() method of Session;
        the Result.scalar() method can then be used to return a scalar result.
      
      Change-Id: Ic3c9c5bb008b6299f2ed9a59bda0329fab9d554d
      Signed-off-by: default avatarStephen Finucane <stephenfin@redhat.com>
      fadc0ef9
    • Stephen Finucane's avatar
      Don't use the 'Row.keys()' method · 8772fcc3
      Stephen Finucane authored
      
      
      Resolve the following RemovedIn20Warning warning:
      
        The Row.keys() method is considered legacy as of the 1.x series of
        SQLAlchemy and will be removed in 2.0. Use the namedtuple standard
        accessor Row._fields, or for full mapping behavior use
        row._mapping.keys()
      
      Change-Id: I647a57909df56fec7b570ae29efbc731126df14d
      Signed-off-by: default avatarStephen Finucane <stephenfin@redhat.com>
      8772fcc3
    • Stephen Finucane's avatar
      Don't use dict-style attribute accesses · 5544f103
      Stephen Finucane authored
      
      
      Resolve the following RemovedIn20Warning warning:
      
        Using non-integer/slice indices on Row is deprecated and will be
        removed in version 2.0; please use row._mapping[<key>], or the
        mappings() accessor on the Result object.
      
      Change-Id: I3a4845216914635e5802a70c2b1be757d82b7a49
      Signed-off-by: default avatarStephen Finucane <stephenfin@redhat.com>
      5544f103
    • Stephen Finucane's avatar
      Don't use plain string SQL statements · 8e7454c2
      Stephen Finucane authored
      
      
      Resolve the following RemovedIn20Warning warning:
      
        Using plain strings to indicate SQL statements without using the
        text() construct is  deprecated and will be removed in version 2.0.
        Ensure plain SQL statements are passed using the text() construct.
      
      Change-Id: I8acdb54d168afa1a7eac270ad6165faa287311ec
      Signed-off-by: default avatarStephen Finucane <stephenfin@redhat.com>
      8e7454c2
    • Stephen Finucane's avatar
      Update import of declarative_base() · 0816efca
      Stephen Finucane authored
      
      
      Resolve the following MovedIn20Warning:
      
        The ``declarative_base()`` function is now available as
        sqlalchemy.orm.declarative_base()
      
      Change-Id: I5fd707c62d0bfad6e54150c4a3b87aadadbeedb3
      Signed-off-by: default avatarStephen Finucane <stephenfin@redhat.com>
      0816efca