1. 01 Apr, 2022 1 commit
  2. 24 Mar, 2022 2 commits
  3. 21 Feb, 2022 2 commits
    • Thomas Goirand's avatar
      Now packaging 8.8.0 · 958b9e90
      Thomas Goirand authored
      958b9e90
    • Thomas Goirand's avatar
      Merge tag '8.8.0' into debian/yoga · 00989490
      Thomas Goirand authored
      oslo.config 8.8.0 release
      
      meta:version: 8.8.0
      meta:diff-start: -
      meta:series: yoga
      meta:release-type: release
      meta:pypi: yes
      meta:first: yes
      meta:release:Author: Daniel Bengtsson <dbengt@redhat.com>
      meta:release:Commit: Daniel Bengtsson <dbengt@redhat.com>
      meta:release:Change-Id: Ibbf537ec08789fa3acc683b59261ba95b361369e
      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>
      00989490
  4. 22 Dec, 2021 2 commits
  5. 21 Dec, 2021 1 commit
  6. 29 Sep, 2021 1 commit
  7. 10 Sep, 2021 2 commits
  8. 02 Sep, 2021 1 commit
    • likui's avatar
      setup.cfg: Replace dashes with underscores · 0c0b7456
      likui 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: Iceaa69d80eef75db5bac67463a59fd615ae0e895
      0c0b7456
  9. 23 Aug, 2021 3 commits
    • Mickael Asseline's avatar
      92c81df0
    • Mickael Asseline's avatar
      Now packaging 8.7.1 (xena) · a75e48fe
      Mickael Asseline authored
      a75e48fe
    • Mickael Asseline's avatar
      Merge tag '8.7.1' into debian/xena · 8739d47c
      Mickael Asseline authored
      oslo.config 8.7.1 release
      
      meta:version: 8.7.1
      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: Ia291a5d496ae3fb71e41a6d7fc0b885d5a3c8aab
      meta:release:Code-Review+2: Elod Illes <elod.illes@est.tech>
      meta:release:Code-Review+2: Thierry Carrez <thierry@openstack.org>
      meta:release:Workflow+1: Thierry Carrez <thierry@openstack.org>
      8739d47c
  10. 20 Aug, 2021 1 commit
  11. 19 Aug, 2021 1 commit
  12. 16 Aug, 2021 1 commit
  13. 03 Jun, 2021 1 commit
  14. 02 Jun, 2021 1 commit
  15. 01 Jun, 2021 1 commit
  16. 27 May, 2021 1 commit
  17. 16 May, 2021 1 commit
    • David Vallee Delisle's avatar
      config-generator yaml format doesn't work with i18n fields · e5fc313e
      David Vallee Delisle authored
      This is because there's no yaml representer for i18n Messages object.
      This patch aims to add this representer and allow the generation of
      configurations using oslo.i18n strings.
      
      One example of this is cinder.
      
      Closes-bug: #1928582
      Change-Id: I70ab87c9bed093cad883b6301b8a09753fc470d9
      e5fc313e
  18. 05 May, 2021 2 commits
  19. 04 May, 2021 2 commits
  20. 29 Apr, 2021 1 commit
    • songwenping's avatar
      setup.cfg: Replace dashes with underscores · ab8a8dd7
      songwenping 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: Icc9b9a3af1c8cf58b3a2b9626065cb2fcd074a42
      ab8a8dd7
  21. 26 Apr, 2021 1 commit
  22. 25 Apr, 2021 1 commit
  23. 22 Apr, 2021 1 commit
    • Hervé Beraud's avatar
      Adding the missing HostDomain config option · bb5e4cbe
      Hervé Beraud authored
      The ``HostDomain`` config type have been added few months ago [1]
      however the config option have been forgotten and this new type
      isn't importable.
      
      When we try to import this type without defining a new related cfg
      option we get the following issue:
      
      ```
      AttributeError: module 'oslo_config.cfg' has no attribute 'HostDomain'
      ```
      
      These changes allow us to import this new type and allow us to use
      it in our configs:
      
      ```
      >>> from oslo_config import cfg
      >>> foo = cfg.HostDomain('foo')
      >>> foo.type.__call__("1")
      ...
      During handling of the above exception, another exception occurred:
      
      Traceback (most recent call last):
        File "<stdin>", line 1, in <module>
        File "~/oslo.config/oslo_config/types.py", line 893, in __call__
           raise ValueError(
      ValueError: 1 is not a valid host address
      >>> foo.type.__call__("host_name")
      'host_name'
      ```
      
      Also properly initialize HostDomain because The HostDomain class wasn't
      calling super in it's __init__() method, which resulted in the type_name not
      being set properly for instances of that class.
      
      [1] https://opendev.org/openstack/oslo.config/commit/6480356928c9ae6169ea1e5a5b5f1df3d6e0dc75
      
      Change-Id: Ie947803f61ba0ef080018e0447de894a400d7975
      Closes-Bug: 1924283
      bb5e4cbe
  24. 21 Apr, 2021 1 commit
  25. 16 Apr, 2021 3 commits
  26. 15 Apr, 2021 2 commits
  27. 14 Apr, 2021 1 commit
  28. 12 Apr, 2021 1 commit
  29. 23 Mar, 2021 1 commit