1. 29 Sep, 2021 1 commit
  2. 23 Aug, 2021 4 commits
  3. 16 Aug, 2021 1 commit
  4. 26 May, 2021 1 commit
  5. 14 May, 2021 1 commit
    • yangyawei's avatar
      setup.cfg: Replace dashes with underscores · 64842a1d
      yangyawei authored
      Setuptools v54.1.0 introduces a warning that the use of dash-separated
      options in 'setup.cfg' will not be supported in a future version [1].
      Get ahead of the issue by replacing the dashes with underscores. Without
      this, we see 'UserWarning' messages like the following on new enough
      versions of setuptools:
      
        UserWarning: Usage of dash-separated 'description-file' will not be
        supported in future versions. Please use the underscore name
        'description_file' instead
      
      [1] https://github.com/pypa/setuptools/commit/a2e9ae4cb
      
      Change-Id: I4400fcf1bdcdedfa8dccf806f99ded36660e276e
      64842a1d
  6. 06 May, 2021 1 commit
  7. 21 Apr, 2021 1 commit
  8. 16 Apr, 2021 4 commits
  9. 15 Apr, 2021 2 commits
  10. 29 Mar, 2021 1 commit
  11. 23 Mar, 2021 1 commit
  12. 18 Mar, 2021 2 commits
  13. 08 Mar, 2021 2 commits
    • Thomas Goirand's avatar
      Now packaging 3.2.0. · 47e2406d
      Thomas Goirand authored
      47e2406d
    • Thomas Goirand's avatar
      Merge tag '3.2.0' into debian/wallaby · 59fe2040
      Thomas Goirand authored
      oslo.context 3.2.0 release
      
      meta:version: 3.2.0
      meta:diff-start: -
      meta:series: wallaby
      meta:release-type: release
      meta:pypi: yes
      meta:first: yes
      meta:release:Author: Hervé Beraud <hberaud@redhat.com>
      meta:release:Commit: Hervé Beraud <hberaud@redhat.com>
      meta:release:Change-Id: I4bca5c0ae21428d83dcd156d05bcd49b22f2f631
      meta:release:Code-Review+2: Hervé Beraud <hberaud@redhat.com>
      meta:release:Code-Review+2: Sean McGinnis <sean.mcginnis@gmail.com>
      meta:release:Workflow+1: Sean McGinnis <sean.mcginnis@gmail.com>
      59fe2040
  14. 19 Feb, 2021 1 commit
  15. 01 Feb, 2021 1 commit
  16. 29 Jan, 2021 1 commit
    • Ben Nemec's avatar
      Switch to collections.abc.MutableMapping · 0d028663
      Ben Nemec authored
      collections.MutableMapping has been deprecated since Python 3.3 and
      is removed in Python 3.10. The functionality should be identical.
      
      Change-Id: Ic9b2f8a89a92ac3a5fa5f49bb19f13e547d12eda
      0d028663
  17. 18 Dec, 2020 1 commit
  18. 04 Nov, 2020 2 commits
  19. 15 Oct, 2020 3 commits
  20. 22 Sep, 2020 1 commit
  21. 13 Sep, 2020 2 commits
    • Thomas Goirand's avatar
      Now packaging 3.1.1 · 4a559dc8
      Thomas Goirand authored
      4a559dc8
    • Thomas Goirand's avatar
      Merge tag '3.1.1' into debian/victoria · 71457e72
      Thomas Goirand authored
      oslo.context 3.1.1 release
      
      meta:version: 3.1.1
      meta:diff-start: -
      meta:series: victoria
      meta:release-type: release
      meta:pypi: yes
      meta:first: no
      meta:release:Author: Ben Nemec <bnemec@redhat.com>
      meta:release:Commit: Ben Nemec <bnemec@redhat.com>
      meta:release:Change-Id: I3ae7c0913864b949dfb01fd31e1c7567fc4b7fd7
      meta:release:Code-Review+2: Hervé Beraud <hberaud@redhat.com>
      meta:release:Code-Review+2: Sean McGinnis <sean.mcginnis@gmail.com>
      meta:release:Workflow+1: Sean McGinnis <sean.mcginnis@gmail.com>
      71457e72
  22. 11 Sep, 2020 2 commits
  23. 09 Sep, 2020 2 commits
    • Thomas Goirand's avatar
      Now packaging 3.1.0 · 1e4cd35e
      Thomas Goirand authored
      1e4cd35e
    • Thomas Goirand's avatar
      Merge tag '3.1.0' into debian/victoria · 12c407e4
      Thomas Goirand authored
      oslo.context 3.1.0 release
      
      meta:version: 3.1.0
      meta:diff-start: -
      meta:series: victoria
      meta:release-type: release
      meta:pypi: yes
      meta:first: yes
      meta:release:Author: Ben Nemec <bnemec@redhat.com>
      meta:release:Commit: Ben Nemec <bnemec@redhat.com>
      meta:release:Change-Id: I21a5e8a7ca283f4739bf9ead31a66d54f3d7cf82
      meta:release:Code-Review+2: Hervé Beraud <hberaud@redhat.com>
      meta:release:Code-Review+2: Thierry Carrez <thierry@openstack.org>
      meta:release:Workflow+1: Thierry Carrez <thierry@openstack.org>
      12c407e4
  24. 08 Sep, 2020 1 commit
    • Hervé Beraud's avatar
      Adding pre-commit · 3b6da997
      Hervé Beraud authored
      Introduced changes:
      - pre-commit config and rules.
      - Add pre-commit to pep8 gate, Flake8 is covered in the pre-commit hooks.
      - Applying fixes for pre-commit compliance in all code.
      
      Also commit hash will be used instead of version tags in pre-commit to
      prevend arbitrary code from running in developer's machines.
      
      pre-commit will be used to:
      - trailing whitespace;
      - Replaces or checks mixed line ending (mixed-line-ending);
      - Forbid files which have a UTF-8 byte-order marker
        (check-byte-order-marker);
      - Checks that non-binary executables have a proper
        shebang (check-executables-have-shebangs);
      - Check for files that contain merge conflict strings
        (check-merge-conflict);
      - Check for debugger imports and py37+ breakpoint()
        calls in python source (debug-statements);
      - Attempts to load all yaml files to verify syntax (check-yaml);
      - Run flake8 checks (flake8) (local)
      
      For further details about tests please refer to:
      https://github.com/pre-commit/pre-commit-hooks
      
      
      
      Change-Id: I4473e5e96419e4da9c8922d5832249da23c61acd
      Signed-off-by: default avatarMoisés Guimarães de Medeiros <moguimar@redhat.com>
      3b6da997
  25. 17 Aug, 2020 1 commit