1. 21 Feb, 2022 2 commits
    • Thomas Goirand's avatar
      Now packaging 4.3.0 · d1c2cf7b
      Thomas Goirand authored
      d1c2cf7b
    • Thomas Goirand's avatar
      Merge tag '4.3.0' into debian/yoga · 3c2f7095
      Thomas Goirand authored
      oslo.serialization 4.3.0 release
      
      meta:version: 4.3.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: Ia5ee30f53c3eff165dc177e782cac88ab6aa3711
      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>
      3c2f7095
  2. 05 Oct, 2021 1 commit
  3. 29 Sep, 2021 1 commit
  4. 10 Sep, 2021 2 commits
  5. 23 Aug, 2021 2 commits
    • Thomas Goirand's avatar
      Now packaging 4.2.0. · cc9b2d3b
      Thomas Goirand authored
      cc9b2d3b
    • Thomas Goirand's avatar
      Merge tag '4.2.0' into debian/xena · 73b52cb7
      Thomas Goirand authored
      oslo.serialization 4.2.0 release
      
      meta:version: 4.2.0
      meta:diff-start: -
      meta:series: xena
      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: I946c734c8958b641e211453289d7bb3f26bb9700
      meta:release:Code-Review+2: Hervé Beraud <herveberaud.pro@gmail.com>
      meta:release:Code-Review+2: Thierry Carrez <thierry@openstack.org>
      meta:release:Workflow+1: Thierry Carrez <thierry@openstack.org>
      73b52cb7
  6. 16 Aug, 2021 1 commit
  7. 14 May, 2021 1 commit
    • yangyawei's avatar
      setup.cfg: Replace dashes with underscores · 2b94a4f9
      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: Ieac40473f778b971873ce2e5e2c95011a7aa7665
      2b94a4f9
  8. 05 May, 2021 1 commit
    • jiangzhilin's avatar
      setup.cfg: Replace dashes with underscores · 521d4035
      jiangzhilin 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: Ib5e331ca851474bc4db8287d6a8abaafe75724cd
      521d4035
  9. 16 Apr, 2021 4 commits
  10. 15 Apr, 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 4.1.0. · b09287ed
      Thomas Goirand authored
      b09287ed
    • Thomas Goirand's avatar
      Merge tag '4.1.0' into debian/wallaby · 3ddf9f5f
      Thomas Goirand authored
      oslo.serialization 4.1.0 release
      
      meta:version: 4.1.0
      meta:diff-start: -
      meta:series: wallaby
      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: I712e9ad4b4b998b80ca71fe53fea1a6cbf328e3c
      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>
      3ddf9f5f
  14. 19 Feb, 2021 1 commit
  15. 01 Feb, 2021 1 commit
  16. 19 Jan, 2021 3 commits
  17. 18 Jan, 2021 1 commit
    • Sofia Enriquez's avatar
      Fix json to_primitive when using IO OBjects · 02037330
      Sofia Enriquez authored
      
      
      Currently, using Cinder's backup service with RBD the
      backup-create operation gets stuck when logging
      ('use_json=True' must be set in the config file).
      
      The oslo.log JSONFormatter gets stuck when passing an
      RBDVolumeIOWrapper from os-brick. This happens via os-brick's
      utils.trace() method which passes a connector containing
      {'path': RBDVolumeIOWrapper}.
      The oslo.log JSONFormatter format() method calls
      oslo_serialization's jsonutils.to_primitive and passes in
      this RBDVolumeIOWrapper object.
       
      Therefore the to_primitive method eventually calls
      RBDVolumeIOWrapper.read(). In order to fix this the current
      path avoids mapping io.IOBase objects and fallback the wrapper
      RBD volume object.
      
      Co-authored-by: default avatarEric Harney <eharney@redhat.com>
      Closes-Bug: #1908607
      Change-Id: I3c416e855cb5f0dc32d14b2749ba92aba8964574
      02037330
  18. 14 Jan, 2021 1 commit
  19. 18 Dec, 2020 1 commit
  20. 05 Nov, 2020 1 commit
  21. 04 Nov, 2020 1 commit
  22. 16 Oct, 2020 3 commits
  23. 22 Sep, 2020 1 commit
  24. 17 Sep, 2020 1 commit
    • zhoulinhui's avatar
      Fix hacking min version to 3.0.1 · a2b52b13
      zhoulinhui authored
      flake8 new release 3.8.0 added new checks and gate pep8
      job start failing. hacking 3.0.1 fix the pinning of flake8 to
      avoid bringing in a new version with new checks.
      
      Though it is fixed in latest hacking but 2.0 and 3.0 has cap for
      flake8 as <4.0.0 which mean flake8 new version 3.9.0 can also
      break the pep8 job if new check are added.
      
      To avoid similar gate break in future, we need to bump the hacking min
      version.
      
      - http://lists.openstack.org/pipermail/openstack-discuss/2020-May/014828.html
      
      Change-Id: Idc5d70e753953aeb006caeb3ba8f78f5ceeafdf3
      a2b52b13
  25. 13 Sep, 2020 2 commits
    • Thomas Goirand's avatar
      Now packaging 4.0.1 · b28baee7
      Thomas Goirand authored
      b28baee7
    • Thomas Goirand's avatar
      Merge tag '4.0.1' into debian/victoria · 8b23d097
      Thomas Goirand authored
      oslo.serialization 4.0.1 release
      
      meta:version: 4.0.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>
      8b23d097
  26. 11 Sep, 2020 2 commits