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
GITHUB_APP["WEBHOOK_TYPE"]
setting to configure async/sync handler selection.
- Removed automatic detection of webhook type from URL configuration.
- Added
SyncWebhookView
, a synchronous counterpart toAsyncWebhookView
for Django applications running under WSGI. Works withSyncGitHubAPI
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.
AsyncGitHubAPI
andSyncGitHubAPI
clients can now take an instance ofInstallation
using theinstallation
kwarg, in addition to the previous behavior of providing theinstallation_id
. One or the other must be used for authenticated requests, not both.
- Added
SyncGitHubAPI
, a synchronous implementation ofgidgethub.abc.GitHubAPI
for Django applications running under WSGI. Maintains the familiar gidgethub interface without requiring async/await.
github import-app
management command is now wrapped in an atomic transaction, in case any import steps fail.
- Added
acreate_from_gh_data
/create_from_gh_data
manager methods toInstallation
andRepository
models. - Added new methods to
Installation
model:get_gh_client
for retrieving aGitHubAPI
client preconfigured for anInstallation
instance.aget_repos
/get_repos
for retrieving all repositories accessible to an app installation.
- Added
get_gh_client
model method toInstallation
model. - Added
aget_repos
/get_repos
model method toinstallation
- Added
arefresh_from_gh
/refresh_from_gh
model methods toInstallation
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.
- Created initial models for GitHub App integration:
EventLog
to store webhook eventsInstallation
to manage GitHub App installations and generate access tokensRepository
to interact with GitHub repositories and track issues
- Created
AsyncWebhookView
to integrategidgethub
webhook handling with Django. - Created webhook event routing system using
gidgethub.routing.Router
. - Integrated
gidgethub.abc.GitHubAPI
client withInstallation
authentication.
- Josh Thomas [email protected] (maintainer)