Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat:Sentry integration #38

Open
wants to merge 30 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
c017be3
feat: Sentry Integration
khareyash05 Sep 6, 2024
a92cedb
merge from main
khareyash05 Sep 9, 2024
dffc7fe
add sentry logging to all necessary functions
khareyash05 Sep 9, 2024
13d5109
Merge branch 'main' into sentry-integration
khareyash05 Sep 9, 2024
256c390
fix conflicts
khareyash05 Sep 9, 2024
00bee40
pass sentry credentials for production purposes
khareyash05 Sep 9, 2024
5f18472
Merge branch 'main' into sentry-integration
khareyash05 Sep 10, 2024
05af3c7
rename SentryInstance
khareyash05 Sep 10, 2024
ffe397f
Merge branch 'main' into sentry-integration
khareyash05 Sep 11, 2024
505de46
fix merge conflicts
khareyash05 Sep 11, 2024
7a4d5c0
fix redeclared variables
khareyash05 Sep 11, 2024
d372f96
fix merge conflicts
khareyash05 Sep 13, 2024
38493ce
add signinwith others
khareyash05 Sep 13, 2024
03ce300
Merge branch 'main' into sentry-integration
khareyash05 Sep 16, 2024
e348460
Merge branch 'main' into sentry-integration
khareyash05 Sep 18, 2024
434f0dc
Merge remote-tracking branch 'origin/main' into sentry-integration
khareyash05 Sep 19, 2024
83860e4
fix conflicts
khareyash05 Sep 20, 2024
600b5a5
feat: Sentry with Rollup + Basic Tracing
khareyash05 Sep 24, 2024
a709e30
add sentry auth token to CI
khareyash05 Sep 24, 2024
122f140
Merge branch 'main' into sentry-integration
khareyash05 Sep 30, 2024
949a2a4
Merge branch 'main' into sentry-integration
shivamsouravjha Sep 30, 2024
4de705f
Merge remote-tracking branch 'origin/main' into sentry-integration
khareyash05 Oct 1, 2024
a6f3b3c
Merge remote-tracking branch 'origin/main' into sentry-integration
khareyash05 Oct 7, 2024
668a5c8
Merge branch 'main' into sentry-integration
khareyash05 Oct 7, 2024
9c24276
fix conflicts
khareyash05 Oct 7, 2024
840ba80
Merge branch 'main' into sentry-integration
khareyash05 Oct 8, 2024
174ab3b
fix: degrade vscode version type
khareyash05 Oct 8, 2024
fcd3bee
updated package-lock
khareyash05 Oct 8, 2024
e1ffbb3
revert package lock version name
khareyash05 Oct 8, 2024
63a9a97
Merge branch 'main' into sentry-integration
khareyash05 Oct 10, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ jobs:

- name: Publish to Visual Studio Marketplace
uses: HaaLeo/publish-vscode-extension@v1
env:
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
with:
pat: ${{ secrets.VS_MARKETPLACE_TOKEN }}
registryUrl: https://marketplace.visualstudio.com
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,8 @@ jobs:
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
with:
tag_name: ${{ steps.create-tag.outputs.tag }}
release_name: Release ${{ needs.package.outputs.version }}
Expand Down
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,7 @@ node_modules
intellijpublish.yml
*.log
out
# Sentry Config File
.env.sentry-build-plugin
coverage
keploy-logs.txt
keploy-logs.txt
Loading
Loading