Skip to content

Latest commit

 

History

History
91 lines (62 loc) · 4.03 KB

CHANGELOG.md

File metadata and controls

91 lines (62 loc) · 4.03 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project attempts to adhere to Semantic Versioning.

Added

  • Added GITHUB_APP["WEBHOOK_TYPE"] setting to configure async/sync handler selection.

Removed

  • Removed automatic detection of webhook type from URL configuration.

Added

  • Added SyncWebhookView, a synchronous counterpart to AsyncWebhookView for Django applications running under WSGI. Works with SyncGitHubAPI and synchronous event handlers to provide a fully synchronous workflow for processing GitHub webhooks.
  • Added system check to prevent mixing async and sync webhook views in the same project (django_github_app.E001).
  • Added sync versions of internal event handlers for installation and repository webhooks. The library automatically selects async or sync handlers based on the webhook view type configured in your URLs.

Changed

  • AsyncGitHubAPI and SyncGitHubAPI clients can now take an instance of Installation using the installation kwarg, in addition to the previous behavior of providing the installation_id. One or the other must be used for authenticated requests, not both.

Added

  • Added SyncGitHubAPI, a synchronous implementation of gidgethub.abc.GitHubAPI for Django applications running under WSGI. Maintains the familiar gidgethub interface without requiring async/await.

Fixed

  • github import-app management command is now wrapped in an atomic transaction, in case any import steps fail.

Added

  • Added acreate_from_gh_data/create_from_gh_data manager methods to Installation and Repository models.
  • Added new methods to Installation model:
    • get_gh_client for retrieving a GitHubAPI client preconfigured for an Installation instance.
    • aget_repos/get_repos for retrieving all repositories accessible to an app installation.
  • Added get_gh_client model method to Installation model.
  • Added aget_repos/get_repos model method to installation
  • Added arefresh_from_gh/refresh_from_gh model methods to Installation model for syncing local data with GitHub.
  • Created a new management command namespace, python manage.py github, for all django-github-app management commands.
  • Added a new management command to github namespace, python manage.py github import-app, for importing an existing GitHub App and installation.

Added

  • Created initial models for GitHub App integration:
    • EventLog to store webhook events
    • Installation to manage GitHub App installations and generate access tokens
    • Repository to interact with GitHub repositories and track issues
  • Created AsyncWebhookView to integrate gidgethub webhook handling with Django.
  • Created webhook event routing system using gidgethub.routing.Router.
  • Integrated gidgethub.abc.GitHubAPI client with Installation authentication.

New Contributors