{% extends "sentry/projects/manage.html" %} {% load i18n %} {% load sentry_helpers %} {% load sentry_plugins %} {% block title %}{% trans "Release Tracking" %} | {{ block.super }}{% endblock %} {% block main %}
Configure release tracking for this project to automatically record new releases of your application.
Start by binding the release
attribute in your application:
// See SDK documentation for language specific usage. Raven.config('your dsn', { release: '0e4fdef81448dcfa0e16ecc4433ff3997aa53572' });
This will annotate each event with the version of your application, as well as automatically create a release entity in the system the first time it's seen.
In addition you may configure a release hook (or use our API) to push a release and include additional metadata with it.
You can notify Sentry when you release new versions of your application via our HTTP API.
See the Releases API documentation for more information.