Skip to content

Commit 085a6c7

Browse files
authored
fix references to source maps and time range change example (#5051)
1 parent f93653a commit 085a6c7

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

src/docs/product/releases/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ redirect_from:
88
description: "Learn how to provide information to Sentry about your releases to determine regressions and resolve issues quickly."
99
---
1010

11-
A _release_ is a version of your code deployed to an environment. When you notify Sentry about a <SandboxLink scenario="oneRelease" projectSlug="react">release</SandboxLink>, you can easily identify new issues and regressions, whether an issue is resolved in the next release, and apply [source maps](/platforms/javascript/sourcemaps/).
11+
A _release_ is a version of your code deployed to an environment. When you notify Sentry about a <SandboxLink scenario="oneRelease" projectSlug="react">release</SandboxLink>, you can easily identify new issues and regressions, whether an issue is resolved in the next release, and apply source maps.
1212

1313
Releases also offer significant additional features when you fully [configure your SDK](/platform-redirect/?next=/configuration/releases/):
1414

src/docs/product/releases/setup/release-automation/circleci/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,6 @@ For more details about the release management concepts in the snippet above, see
7070
7171
**Notes**:
7272
73-
- If you’re not deploying a JavaScript project or have sent source maps to Sentry using another method, omit the `upload-sourcemaps` line.
73+
- If you’re not deploying a project that requires source maps or you've sent source maps to Sentry using another method, omit the `upload-sourcemaps` line.
7474
- If you can’t install a repository integration, send commit metadata via the [create release endpoint](/product/releases/setup/manual-setup-releases/) or omit the `set-commits` line.
7575
- `sentry-cli releases propose-version` defaults to the commit SHA of the commit being deployed. To set this to a different version, modify `SENTRY_RELEASE` to the preferred version.

src/docs/product/releases/setup/release-automation/github-actions/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ redirect_from:
55
description: "Learn how Sentry and GitHub Actions automate release management and help identify suspect commits."
66
---
77

8-
The [Sentry Release GitHub Action](https://github.com/marketplace/actions/sentry-release) automates Sentry release management in GitHub with just one step. After sending Sentry release information, you'll be able to identify suspect commits that are likely the culprit for new errors. Additionally, releases are used for applying [source maps](/platforms/javascript/sourcemaps/) to minified JavaScript to view original, untransformed source code.
8+
The [Sentry Release GitHub Action](https://github.com/marketplace/actions/sentry-release) automates Sentry release management in GitHub with just one step. After sending Sentry release information, you'll be able to identify suspect commits that are likely the culprit for new errors. Additionally, releases are used for applying source maps to view original, untransformed source code.
99

1010
For more details about Sentry release management concepts, see the full documentation on [releases](/product/releases/).

src/docs/product/releases/setup/release-automation/jenkins/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ pipeline {
8181

8282
**Notes**:
8383

84-
- If you’re not deploying a JavaScript project or have sent source maps to Sentry using another method, omit the `upload-sourcemaps` line.
84+
- If you’re not deploying a project that requires source maps or you've sent source maps to Sentry using another method, omit the `upload-sourcemaps` line.
8585
- If you can’t install a repository integration, send commit metadata via the [create release endpoint](/product/releases/setup/manual-setup-releases/) or omit the `set-commits` line.
8686
- `credentials('sentry-auth-token')` refers to the ID of the credentials just added to Jenkins.
8787
- `sentry-cli releases propose-version` defaults to the commit SHA of the commit being deployed. To set this to a different version, modify `SENTRY_RELEASE` to the preferred version.
@@ -115,6 +115,6 @@ If you're using Freestyle projects, you need to add another build step after dep
115115

116116
**Notes**:
117117

118-
- If you’re not deploying a JavaScript project or have sent source maps to Sentry using another method, omit the `upload-sourcemaps` line.
118+
- If you’re not deploying a project that requires source maps or you've sent source maps to Sentry using another method, omit the `upload-sourcemaps` line.
119119
- If you can’t install a repository integration, send commit metadata via the [create release endpoint](/product/releases/setup/manual-setup-releases/) or omit the `set-commits` line.
120120
- `sentry-cli releases propose-version` defaults to the commit SHA of the commit being deployed. To set this to a different version, modify `SENTRY_RELEASE` to the preferred version.

src/docs/product/releases/setup/release-automation/travis-ci/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,6 @@ For more details about the release management concepts in the snippet above, see
6363
6464
**Notes**:
6565
66-
- If you’re not deploying a JavaScript project or have sent source maps to Sentry using another method, omit the `upload-sourcemaps` line.
66+
- If you’re not deploying a project that requires source maps or you've sent source maps to Sentry using another method, omit the `upload-sourcemaps` line.
6767
- If you can’t install a repository integration, send commit metadata via the [create release endpoint](/product/releases/setup/manual-setup-releases/) or omit the `set-commits` line (`set-commits` is required for suspect commits).
6868
- `sentry-cli releases propose-version` defaults to the commit SHA of the commit being deployed (recommended). To set this to a different version, modify `SENTRY_RELEASE` to the preferred version.

src/docs/product/releases/usage/time-range.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ When you change the date range in **Releases**, Sentry recalculates the values.
88

99
For example, you have seven users that are using your application for seven days and each day one of them experiences a crash. If you select the 24-hour time range, the **Releases** page will show you that every day there were 85.7% crash-free users on the release.
1010

11-
By contrast, let's say you have seven users and each day a different user experiences a crash. If you select the seven-day time range, by the end of the week, the **Releases** page will show you the release had 0% crash-free users.
11+
By contrast, if you have the same conditions but you select the seven-day time range, by the end of the week, the **Releases** page will show you that there were 0% crash-free users on the release.

0 commit comments

Comments
 (0)