We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9645fe commit a7a3ca5Copy full SHA for a7a3ca5
2 files changed
.github/workflows/sentry.yml
@@ -16,6 +16,11 @@ jobs:
16
17
- name: Build project
18
run: npm run build
19
+
20
+ - name: Extract version from build/version.js
21
+ id: get_version
22
+ run: echo "MCP_VERSION=$(grep -oE "'[0-9]+\.[0-9]+\.[0-9]+'" build/version.js | tr -d "'")" >> $GITHUB_OUTPUT
23
24
- name: Create Sentry release
25
uses: getsentry/action-release@v3
26
env:
@@ -24,4 +29,5 @@ jobs:
29
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
30
with:
31
environment: production
27
- sourcemaps: "./build"
32
+ sourcemaps: "./build"
33
+ version: ${{ steps.get_version.outputs.MCP_VERSION }}
CHANGELOG.md
@@ -1,5 +1,8 @@
1
# Changelog
2
3
+## [v1.3.3] - 2025-05-04
4
+- Added Sentry opt-out functionality
5
6
## [v1.3.1] - 2025-05-03
7
- Added Sentry integration for error reporting
8
0 commit comments