Revisions of python-pygit2

Dirk Mueller's avatar Dirk Mueller (dirkmueller) accepted request 1004945 from Stephan Kulow's avatar Stephan Kulow (coolo) (revision 70)
- Update to 1.10.1
  - Fix segfault in ``Signature`` repr
    `#1155 <https://github.com/libgit2/pygit2/pull/1155>`_
  - Linux and macOS wheels for Python 3.11
    `#1154 <https://github.com/libgit2/pygit2/pull/1154>`_
  - Upgrade to libgit2 1.5
  - Add support for ``GIT_OPT_GET_OWNER_VALIDATION`` and
    ``GIT_OPT_SET_OWNER_VALIDATION``
    `#1150 <https://github.com/libgit2/pygit2/pull/1150>`_
  - New ``untracked_files`` and ``ignored`` optional arguments for
    ``Repository.status(...)``
    `#1151 <https://github.com/libgit2/pygit2/pull/1151>`_
- Remove support-libgit-1.5.patch no longer needed
buildservice-autocommit accepted request 990575 from Steve Kowalik's avatar Steve Kowalik (StevenK) (revision 69)
baserev update by copy to link target
Steve Kowalik's avatar Steve Kowalik (StevenK) committed (revision 68)
- Add patch support-libgit-1.5.patch:
  * Suppot libgit 1.5.0
Steve Kowalik's avatar Steve Kowalik (StevenK) committed (revision 67)
- Update to 1.9.2:
  * New Repository.create_commit_string(...) and
    Repository.create_commit_with_signature(...) #1142
  * Linux and macOS wheels updated to libgit2 v1.4.3
  * Remove redundant line #1139
buildservice-autocommit accepted request 965070 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 66)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) committed (revision 65)
- update to 1.9.1:
  - Type hints: added to C code and Branches/References
  - New ``Signature`` supports ``str()`` and ``repr()``
  - Fix ODB backend's read in big endian architectures
  - Fix install with poetry
  - Wheels: update to libgit2 v1.4.2
  - Tests: fix testing ``parse_diff``
  - CI: various fixes after migration to libgit2 v1.4
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 957975 from Petr Gajdos's avatar Petr Gajdos (pgajdos) (revision 64)
- version update to 1.9.0
  1.9.0 (2022-02-22)
  -------------------------
  - Upgrade to libgit2 v1.4
  - Documentation, new recipes for committing and cloning
    `#1125 <https://github.com/libgit2/pygit2/pull/1125>`_
  1.8.0 (2022-02-04)
  -------------------------
  - Rename ``RemoteCallbacks.progress(...)`` callback to ``.sideband_progress(...)``
    `#1120 <https://github.com/libgit2/pygit2/pull/1120>`_
  - New ``Repository.merge_base_many(...)`` and ``Repository.merge_base_octopus(...)``
    `#1112 <https://github.com/libgit2/pygit2/pull/1112>`_
  - New ``Repository.listall_stashes()``
    `#1117 <https://github.com/libgit2/pygit2/pull/1117>`_
  - Code cleanup
    `#1118 <https://github.com/libgit2/pygit2/pull/1118>`_
  Backward incompatible changes:
  - The ``RemoteCallbacks.progress(...)`` callback has been renamed to
    ``RemoteCallbacks.sideband_progress(...)``. This matches the documentation,
    but may break existing code that still uses the old name.
  1.7.2 (2021-12-06)
  -------------------------
  - Universal wheels for macOS
    `#1109 <https://github.com/libgit2/pygit2/pull/1109>`_
  1.7.1 (2021-11-19)
  -------------------------
  - New ``Repository.amend_commit(...)``
    `#1098 <https://github.com/libgit2/pygit2/pull/1098>`_
  - New ``Commit.message_trailers``
    `#1101 <https://github.com/libgit2/pygit2/pull/1101>`_
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 926494 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 63)
- Update to 1.7.0:
  - Upgrade to libgit2 1.3.0
  - Add support for Python 3.10
  - Drop support for Python 3.6
  - New `pygit2.GIT_CHECKOUT_SKIP_LOCKED_DIRECTORIES`
  - New optional argument ``location`` in
    ``Repository.applies(..)`` and ``Repository.apply(..)``
  - Fix: Now the `flags` argument in `Repository.blame()` is
    passed through
  - CI: Stop using Travis, move to GitHub actions
  - Fix a number of reference leaks
  - Review custom object backends
  - In custom backends the callbacks have been renamed from ``read`` to
    ``read_cb``, ``write`` to ``write_cb``, and so on.
  - New optional ``proxy`` argument in ``Remote`` methods
  - New GIT_MERGE_PREFERENCE constants
  - Don't require cached-property with Python 3.8 or later
  - Refactored build and CI, new ``build.sh`` script
  - Remove deprecated ``GIT_CREDTYPE_XXX`` contants, use
    ``GIT_CREDENTIAL_XXX`` instead.
  - Remove deprecated ``Patch.patch`` getter, use ``Patch.text``
    instead.
  - New ``PackBuilder`` class and ``Repository.pack(...)``
  - New ``Config.delete_multivar(...)``
  - New ``Repository.is_shallow``
  - New optional ``message`` argument in
    ``Repository.create_reference(...)``
  - Fix truncated diff when there are nulls
  - Fix ``Index.add(...)`` raise ``TypeError`` instead of
    ``AttributeError`` when arguments are of unexpected type
  - Upgrade to libgit2 1.1, new ``GIT_BLAME_IGNORE_WHITESPACE`` constant
  - Drop support for PyPy3 7.2
  - New optional ``flags`` argument in ``Repository.__init__(...)``,
    new ``GIT_REPOSITORY_OPEN_*`` constants
- Remove upstreamed libgit2_1.patch.
buildservice-autocommit accepted request 845686 from Markéta Machová's avatar Markéta Machová (mcalabkova) (revision 62)
baserev update by copy to link target
Markéta Machová's avatar Markéta Machová (mcalabkova) committed (revision 61)
fix changelog
Markéta Machová's avatar Markéta Machová (mcalabkova) accepted request 845218 from John Vandenberg's avatar John Vandenberg (jayvdb) (revision 60)
- Add libgit2_1_1.patch for compatibility with libgit 1.1.0
- Update to v1.3.0
buildservice-autocommit accepted request 800601 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 59)
baserev update by copy to link target
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) committed (revision 58)
- Update to 1.2.1:
  * Drop python2 support
  * Various crash fixes
buildservice-autocommit accepted request 753142 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 57)
baserev update by copy to link target
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) accepted request 753135 from Julio González Gil's avatar Julio González Gil (juliogonzalezgil) (revision 55)
- Fix building for s390x (bsc#1158198)

NOTE: SLE15SP2 build results are only possible by copypacking libgit2
buildservice-autocommit accepted request 730403 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 54)
baserev update by copy to link target
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) committed (revision 52)
- Update to 0.28.2:
  * Fix crash in reflog iteration #901
  * Support symbolic references in branches.with_commit(..) #910
  * Documentation updates #909
  * Test updates #911
buildservice-autocommit accepted request 703238 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 51)
baserev update by copy to link target
Displaying revisions 21 - 40 of 90
openSUSE Build Service is sponsored by