Skip to content

Commit f250566

Browse files
authored
Merge branch 'main' into alwx/bug/5187
2 parents 3eca3a5 + 6a70a7e commit f250566

File tree

33 files changed

+196
-118
lines changed

33 files changed

+196
-118
lines changed

.github/workflows/buildandtest.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,17 @@ jobs:
6767
clang --version
6868
clang-format --version
6969
70+
- name: Install Swiftly
71+
run: |
72+
SWIFTLY_FILE="swiftly-$(uname -m).tar.gz"
73+
curl -sL https://download.swift.org/swiftly/linux/swiftly-x86_64.tar.gz -o $SWIFTLY_FILE
74+
tar zxf $SWIFTLY_FILE
75+
76+
./swiftly init --quiet-shell-followup
77+
. "${SWIFTLY_HOME_DIR:-$HOME/.local/share/swiftly}/env.sh"
78+
hash -r
79+
sudo apt-get -y install libcurl4-openssl-dev
80+
7081
- name: Lint
7182
run: yarn lint
7283

.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@192325c86100d080feab897ff886c34abd4c83a3 # [email protected]
47+
uses: github/codeql-action/init@3599b3baa15b485a2e49ef411a7a4bb2452e7f93 # [email protected]
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@192325c86100d080feab897ff886c34abd4c83a3 # [email protected]
58+
uses: github/codeql-action/autobuild@3599b3baa15b485a2e49ef411a7a4bb2452e7f93 # [email protected]
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@192325c86100d080feab897ff886c34abd4c83a3 # [email protected]
69+
uses: github/codeql-action/analyze@3599b3baa15b485a2e49ef411a7a4bb2452e7f93 # [email protected]

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,3 +91,6 @@ node_modules.bak
9191
# Sentry React Native Monorepo
9292
/packages/core/README.md
9393
.env.sentry-build-plugin
94+
95+
# SwiftLint
96+
swiftlint/*

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,17 @@
88
99
## Unreleased
1010

11+
### Dependencies
12+
13+
- Bump Cocoa SDK from v8.56.1 to v8.56.2 ([#5214](https://github.com/getsentry/sentry-react-native/pull/5214))
14+
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8562)
15+
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.56.1...8.56.2)
16+
- Bump Android SDK from v8.21.1 to v8.22.0 ([#5193](https://github.com/getsentry/sentry-react-native/pull/5193), [#5194](https://github.com/getsentry/sentry-react-native/pull/5194))
17+
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#8220)
18+
- [diff](https://github.com/getsentry/sentry-java/compare/8.21.1...8.22.0)
19+
20+
## 7.2.0
21+
1122
### Features
1223

1324
- Enable logs on native side of iOS ([#5190](https://github.com/getsentry/sentry-react-native/pull/5190))
@@ -16,6 +27,16 @@
1627
### Fixes
1728

1829
- Vendor `metro/countLines` function to avoid issues with the private import ([#5185](https://github.com/getsentry/sentry-react-native/pull/5185))
30+
- Fix baseJSBundle and bundleToString TypeErrors with Metro 0.83.2 ([#5206](https://github.com/getsentry/sentry-react-native/pull/5206))
31+
32+
### Dependencies
33+
34+
- Bump CLI from v2.53.0 to v2.55.0 ([#5179](https://github.com/getsentry/sentry-react-native/pull/5179))
35+
- [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#2550)
36+
- [diff](https://github.com/getsentry/sentry-cli/compare/2.53.0...2.55.0)
37+
- Bump Cocoa SDK from v8.56.0 to v8.56.1 ([#5197](https://github.com/getsentry/sentry-react-native/pull/5197))
38+
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8561)
39+
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.56.0...8.56.1)
1940

2041
## 7.1.0
2142

dev-packages/e2e-tests/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sentry-react-native-e2e-tests",
3-
"version": "7.1.0",
3+
"version": "7.2.0",
44
"private": true,
55
"description": "Sentry React Native End to End Tests Library",
66
"main": "dist/index.js",
@@ -14,7 +14,7 @@
1414
"@babel/preset-env": "^7.25.3",
1515
"@babel/preset-typescript": "^7.18.6",
1616
"@sentry/core": "10.12.0",
17-
"@sentry/react-native": "7.1.0",
17+
"@sentry/react-native": "7.2.0",
1818
"@types/node": "^20.9.3",
1919
"@types/react": "^18.2.64",
2020
"appium": "2.4.1",

dev-packages/type-check/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "sentry-react-native-type-check",
33
"private": true,
4-
"version": "7.1.0",
4+
"version": "7.2.0",
55
"scripts": {
66
"type-check": "./run-type-check.sh"
77
}

dev-packages/utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sentry-react-native-samples-utils",
3-
"version": "7.1.0",
3+
"version": "7.2.0",
44
"description": "Internal Samples Utils",
55
"main": "index.js",
66
"license": "MIT",

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
3-
"version": "7.1.0",
3+
"version": "7.2.0",
44
"packages": [
55
"packages/*",
66
"dev-packages/*",

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,8 @@
2828
"set-version-samples": "lerna run set-version"
2929
},
3030
"devDependencies": {
31-
"@expo/swiftlint": "^0.57.1",
3231
"@naturalcycles/ktlint": "^1.13.0",
33-
"@sentry/cli": "2.53.0",
32+
"@sentry/cli": "2.55.0",
3433
"downlevel-dts": "^0.11.0",
3534
"google-java-format": "^1.4.0",
3635
"lerna": "^8.1.8",

packages/core/RNSentry.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Pod::Spec.new do |s|
4646

4747
s.compiler_flags = other_cflags
4848

49-
s.dependency 'Sentry/HybridSDK', '8.56.0'
49+
s.dependency 'Sentry/HybridSDK', '8.56.2'
5050

5151
if defined? install_modules_dependencies
5252
# Default React Native dependencies for 0.71 and above (new and legacy architecture)

0 commit comments

Comments
 (0)