Skip to content

Commit 2bfd1ba

Browse files
authored
Merge branch 'main' into alwx/experiment/native-logs
2 parents 2182293 + d4d1a1d commit 2bfd1ba

File tree

4 files changed

+15
-9
lines changed

4 files changed

+15
-9
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444

4545
# Initializes the CodeQL tools for scanning.
4646
- name: Initialize CodeQL
47-
uses: github/codeql-action/init@45cbd0c69e560cd9e7cd7f8c32362050c9b7ded2 # pin@v4.32.2
47+
uses: github/codeql-action/init@9e907b5e64f6b83e7804b09294d44122997950d6 # pin@v4.32.3
4848
with:
4949
languages: ${{ matrix.language }}
5050
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -55,7 +55,7 @@ jobs:
5555
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5656
# If this step fails, then you should remove it and run the build manually (see below)
5757
- name: Autobuild
58-
uses: github/codeql-action/autobuild@45cbd0c69e560cd9e7cd7f8c32362050c9b7ded2 # pin@v4.32.2
58+
uses: github/codeql-action/autobuild@9e907b5e64f6b83e7804b09294d44122997950d6 # pin@v4.32.3
5959

6060
# ℹ️ Command-line programs to run using the OS shell.
6161
# 📚 https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
@@ -66,4 +66,4 @@ jobs:
6666
# make bootstrap
6767
# make release
6868
- name: Perform CodeQL Analysis
69-
uses: github/codeql-action/analyze@45cbd0c69e560cd9e7cd7f8c32362050c9b7ded2 # pin@v4.32.2
69+
uses: github/codeql-action/analyze@9e907b5e64f6b83e7804b09294d44122997950d6 # pin@v4.32.3

packages/core/android/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,5 @@ dependencies {
5656
compileOnly files('libs/replay-stubs.jar')
5757
implementation 'com.facebook.react:react-native:+'
5858
api 'io.sentry:sentry-android:8.32.0'
59+
debugImplementation 'io.sentry:sentry-spotlight:8.32.0'
5960
}

samples/react-native-macos/Gemfile.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ GEM
9292
ethon (0.16.0)
9393
ffi (>= 1.15.0)
9494
excon (0.112.0)
95-
faraday (1.10.4)
95+
faraday (1.10.5)
9696
faraday-em_http (~> 1.0)
9797
faraday-em_synchrony (~> 1.0)
9898
faraday-excon (~> 1.1)
@@ -108,11 +108,11 @@ GEM
108108
faraday (>= 0.8.0)
109109
http-cookie (~> 1.0.0)
110110
faraday-em_http (1.0.0)
111-
faraday-em_synchrony (1.0.0)
111+
faraday-em_synchrony (1.0.1)
112112
faraday-excon (1.1.0)
113113
faraday-httpclient (1.0.1)
114-
faraday-multipart (1.0.4)
115-
multipart-post (~> 2)
114+
faraday-multipart (1.2.0)
115+
multipart-post (~> 2.0)
116116
faraday-net_http (1.0.2)
117117
faraday-net_http_persistent (1.2.0)
118118
faraday-patron (1.0.0)

scripts/update-android.sh

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,13 @@ get-repo)
1818
echo "https://github.com/getsentry/sentry-java.git"
1919
;;
2020
set-version)
21-
newValue="${BASH_REMATCH[1]}$2"
22-
echo "${content/${BASH_REMATCH[0]}/$newValue}" >$file
21+
# Update all io.sentry dependencies to the same version
22+
newContent="$content"
23+
# Update sentry-android
24+
newContent=$(echo "$newContent" | sed -E "s/(io\.sentry:sentry-android:)([0-9\.]+)/\1$2/g")
25+
# Update sentry-spotlight
26+
newContent=$(echo "$newContent" | sed -E "s/(io\.sentry:sentry-spotlight:)([0-9\.]+)/\1$2/g")
27+
echo "$newContent" >$file
2328
;;
2429
*)
2530
echo "Unknown argument $1"

0 commit comments

Comments
 (0)