Skip to content

Releases: packit/ogr

0.10.0

28 Jan 14:04
3718bed
Compare
Choose a tag to compare

0.10.0

New Features

  • Listing of the issues now supports filtering by author/assignee.
  • It is now possible to list files in the remote repository.
  • Github project class have a get_tags method.
  • Issue and pull-request can be edited via properties.

Fixes

  • Fork of the repository contains correct name and namespace after the forking.
  • Pagure's project_create* was improved.

0.9.0

06 Dec 13:30
ef947cd
Compare
Choose a tag to compare

0.9.0

New Features

  • General restructure of the classes thanks to the
    Red Hat Open Source Contest
    project done by @mfocko.
    • Classes are better linked together.
    • Functionality is moved to the classes from the GitProject classes.
    • You can now use the properties (setters) to modify objects.
    • Old behaviour should work as before, but will raise deprecation warnings.

Fixes

  • Creating of the GitHub pull-requests from the forked repository was fixed. (@sakalosj)

0.8.0

01 Oct 19:58
64a9207
Compare
Choose a tag to compare

0.8.0

New Features

Fixes

  • GitHub pull-requests are no longer listed in issue methods. (@mfocko)

Minor

  • Implementations of the full_repo_name property were improved. (@mfocko)
  • New quickstart example added to the README. (@rpitonak)

0.7.0

12 Sep 07:48
7eec533
Compare
Choose a tag to compare

0.7.0

New Features

  • Introduced a first version of GitLab support. (Implementation is not completed yet.) (@lbarcziova)
  • Added a method for loading services from dictionary. (@lachmanfrantisek)
  • Release objects have a method for editing. (@lbarcziova)
  • Added a function for getting all commits from specific PR. (@phracek)

Fixes

  • Fix creating pull-request from fork to upstream on new versions of Pagure. (@lachmanfrantisek)
  • Use web url in Pagure issue. (@dustymabe)

Minor

0.6.0

25 Jul 07:50
f67718b
Compare
Choose a tag to compare

0.6.0

New Features

  • Possibility to authenticate via github-app. (@lachmanfrantisek)
  • New method get_latest_release() for projects. (@marusinm)
  • New method for creating releases in GitHub. (@lbarcziova)
  • Add method for getting releases for Pagure. (@lbarcziova)
  • Add labels for GitHub pull-requests. (@marusinm)
  • New methods for getting pull-request/issue permissions (who_can_marge_pr, who_can_close_issue, can_close_issue and can_merge_pr). (@marusinm)
  • New methods to get project's owners and permissions of various users. (@marusinm)
  • Link GitTag to Release object. (@lbarcziova)
  • Add method for creating projects/services from url. (@lachmanfrantisek)
  • Creating/closing/commenting Pagure Issues. (@marusinm)

Fixes

  • Correct status handling for Github pull-requests. (@marusinm)
  • Fix error 404 on get_file_content. (@lbarcziova)

Minor

0.5.0

28 Jun 09:44
0b292e8
Compare
Choose a tag to compare

0.5.0

New Features

Fixes

Minor

  • Write mode in testing is determined whether a respective offline file exists or not. (@lachmanfrantisek)
  • Allow saving sequence of responses during tests. (@lachmanfrantisek)

0.4.0

11 Jun 14:09
0881582
Compare
Choose a tag to compare

0.4.0

  • Ogr no longer uses libpagure and calls Pagure API directly.
  • PersistentObjectStorage can serialize data into yaml file after calling store().

0.3.1

14 May 14:55
6b98071
Compare
Choose a tag to compare

0.3.1

Fixes

  • Added missing module ogr.services.mock

0.3.0

14 May 10:20
e66d53a
Compare
Choose a tag to compare

0.3.0

New Features

  • Mocking of GitHub and Pagure APIs for testing ogr and packit has been greatly improved.
  • GithubProject now implements adding of PR comments and also comments and status on a commit.

0.2.0

28 Mar 09:21
1a68f34
Compare
Choose a tag to compare

0.2.0

New Features

  • GithubProject now fully supports all the forking-related methods.
  • GitProject class now has a parent property to get the original GitProject of
    a fork.
  • Methods related to forking received usability updates: they should be now
    easier to work with and you'll need to write less code.
  • The upstream project now has a CONTRIBUTING.md file. All your contributions are
    welcome!

Fixes

  • New github pull request now link to the URL on web interface instead of API.

Minor

  • We have implemented multiple tools to increate code quality: coverage, black, pre-commit, mypy, flake8
    • All of them run in CI as well.