From 9b3aee1b1fc18bc6f4f76df4e4c40aaca9f82736 Mon Sep 17 00:00:00 2001 From: Burak Yigit Kaya Date: Wed, 9 Sep 2020 22:30:27 +0300 Subject: [PATCH] ref(self-hosted): More on-premise -> self-hosted (#669) --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- README.md | 2 +- scripts/bump-version.sh | 2 +- sentry/sentry.conf.example.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index aeceea5..eaaf895 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,6 +1,6 @@ --- name: 🐞 Bug Report -about: Report a bug to help improve Sentry On-Premise +about: Report a bug to help improve Self-Hosted Sentry --- ## Version Information diff --git a/README.md b/README.md index d37ed36..8cab9df 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Sentry Nightly On-Premise [![Build Status][build-status-image]][build-status-url] +# Self-Hosted Sentry Nightly [![Build Status][build-status-image]][build-status-url] Official bootstrap for running your own [Sentry](https://sentry.io/) with [Docker](https://www.docker.com/). diff --git a/scripts/bump-version.sh b/scripts/bump-version.sh index 9805678..4172c7e 100644 --- a/scripts/bump-version.sh +++ b/scripts/bump-version.sh @@ -11,7 +11,7 @@ SYMBOLICATOR_VERSION=$(curl -s "https://api.github.com/repos/getsentry/symbolica sed -i -e "s/^SYMBOLICATOR_IMAGE=\([^:]\+\):.\+\$/SYMBOLICATOR_IMAGE=\1:$SYMBOLICATOR_VERSION/" .env sed -i -e "s/^\(SENTRY\|SNUBA\|RELAY\)_IMAGE=\([^:]\+\):.\+\$/\1_IMAGE=\2:$NEW_VERSION/" .env -sed -i -e "s/^\# Sentry .* On-Premise/# Sentry $NEW_VERSION On-Premise/" README.md +sed -i -e "s/^\# Self-Hosted Sentry .*/# Self-Hosted Sentry $NEW_VERSION/" README.md sed -i -e "s/\(Change Date:\s*\)[-0-9]\+\$/\\1$(date +'%Y-%m-%d' -d '3 years')/" LICENSE echo "New version: $NEW_VERSION" diff --git a/sentry/sentry.conf.example.py b/sentry/sentry.conf.example.py index 6645860..9136045 100644 --- a/sentry/sentry.conf.example.py +++ b/sentry/sentry.conf.example.py @@ -80,7 +80,7 @@ SENTRY_OPTIONS["redis.clusters"] = { # Queue # ######### -# See https://docs.getsentry.com/on-premise/server/queue/ for more +# See https://develop.sentry.dev/services/queue/ for more # information on configuring your queue broker and workers. Sentry relies # on a Python framework called Celery to manage queues.