Skip to content

Commit

Permalink
feat(commit-context): Allow all orgs access to suspect commits via bl…
Browse files Browse the repository at this point in the history
…ame (#65346)

This PR allows all organizations access to commit context (suspect
commits via Git Blame). A follow up PR will remove the plan restrictions
from getsentry, and a follow up follow up will get rid of the feature
flag entirely.
  • Loading branch information
leeandher committed Mar 4, 2024
1 parent 9bc3d0b commit ccc8977
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/sentry/conf/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -1483,7 +1483,7 @@ def custom_parameter_sort(parameter: dict) -> tuple[str, int]:
# The overall flag for codecov integration, gated by plans.
"organizations:codecov-integration": False,
# Enable the Commit Context feature
"organizations:commit-context": False,
"organizations:commit-context": True,
# Enable alerting based on crash free sessions/users
"organizations:crash-rate-alerts": True,
# Enable creating organizations within sentry
Expand Down
1 change: 1 addition & 0 deletions tests/sentry/api/serializers/test_organization.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ def test_simple(self):
assert result["features"] == {
"advanced-search",
"change-alerts",
"commit-context",
"crash-rate-alerts",
"custom-symbol-sources",
"data-forwarding",
Expand Down

0 comments on commit ccc8977

Please sign in to comment.