Skip to content

Commit a5ab1c1

Browse files
committed
release: 8.40.0
1 parent 522f8da commit a5ab1c1

File tree

11 files changed

+32
-15
lines changed

11 files changed

+32
-15
lines changed

.github/last-release-runid

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
11404022886
1+
11685387200

CHANGELOG.md

+18-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
11
# Changelog
22

3-
## Unreleased
3+
## 8.40.0
4+
5+
### Various fixes & improvements
6+
7+
- chore(deps): bump cocoapods from 1.15.2 to 1.16.2 (#4501) by @dependabot
8+
- fix: Masking text with transparent text color (#4499) by @brustolin
9+
- internal(hybrid): Add Replay Mask options to dict init (#4495) by @krystofwoldrich
10+
- internal(hybrid): Add Replay Mask options to dict init (#4492) by @krystofwoldrich
11+
- fix: Too many navigation breadcrumbs for Session Replay (#4480) by @brustolin
12+
- Fix: Time-of-check time-of-use filesystem race condition (#4473) by @brustolin
13+
- Expose `SentrySessionReplayIntegration-Hybrid.h` as `private` (#4486) by @denrase
14+
- fix: Capture all touches with session replay (#4477) by @brustolin
15+
- feat: Option for uncaught NSExceptions on macOS (#4471) by @philipphofmann
16+
- chore(deps): bump rexml from 3.3.8 to 3.3.9 (#4478) by @dependabot
17+
- ref: Improve frames tracker performance (#4469) by @brustolin
18+
- fix: Build visionOS project with static Sentry SDK (#4462) by @brustolin
19+
- ref(transport): Log a warning when dropping envelopes due to rate-limiting (#4463) by @rwachtler
20+
- chore(deps): bump fastlane from 2.224.0 to 2.225.0 (#4464) by @dependabot
421

522
## Feature
623

Package.swift

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ let package = Package(
1212
targets: [
1313
.binaryTarget(
1414
name: "Sentry",
15-
url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.39.0-beta.1/Sentry.xcframework.zip",
16-
checksum: "0e82bbb2f5714b52249da238cefd5c2ded20e69b52d2c812cc3ac804f02fa0f9" //Sentry-Static
15+
url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.40.0/Sentry.xcframework.zip",
16+
checksum: "aa02c15ed98f2560436ccbcc0d25c848f2e8250c28c6c4a01ff3ac4231eb008b" //Sentry-Static
1717
),
1818
.binaryTarget(
1919
name: "Sentry-Dynamic",
20-
url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.39.0-beta.1/Sentry-Dynamic.xcframework.zip",
21-
checksum: "77822c632e846f5a19f3042ad89713885dcdc3d953ab49f4f1d8631170459598" //Sentry-Dynamic
20+
url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.40.0/Sentry-Dynamic.xcframework.zip",
21+
checksum: "a24eeb1737a531d56c8b4ce6f63b2d1fb1a2a0fd05c4eb85a27ece8fe3e442b5" //Sentry-Dynamic
2222
),
2323
.target ( name: "SentrySwiftUI",
2424
dependencies: ["Sentry", "SentryInternal"],
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
MARKETING_VERSION = 8.39.0
1+
MARKETING_VERSION = 8.40.0

Sentry.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "Sentry"
3-
s.version = "8.39.0-beta.1"
3+
s.version = "8.40.0"
44
s.summary = "Sentry client for cocoa"
55
s.homepage = "https://github.com/getsentry/sentry-cocoa"
66
s.license = "mit"

SentryPrivate.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "SentryPrivate"
3-
s.version = "8.39.0-beta.1"
3+
s.version = "8.40.0"
44
s.summary = "Sentry Private Library."
55
s.homepage = "https://github.com/getsentry/sentry-cocoa"
66
s.license = "mit"

SentrySwiftUI.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "SentrySwiftUI"
3-
s.version = "8.39.0-beta.1"
3+
s.version = "8.40.0"
44
s.summary = "Sentry client for SwiftUI"
55
s.homepage = "https://github.com/getsentry/sentry-cocoa"
66
s.license = "mit"
@@ -19,5 +19,5 @@ Pod::Spec.new do |s|
1919
s.watchos.framework = 'WatchKit'
2020

2121
s.source_files = "Sources/SentrySwiftUI/**/*.{swift,h,m}"
22-
s.dependency 'Sentry', "8.39.0-beta.1"
22+
s.dependency 'Sentry', "8.40.0"
2323
end

Sources/Configuration/SDK.xcconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ DYLIB_INSTALL_NAME_BASE = @rpath
1010
MACH_O_TYPE = mh_dylib
1111
FRAMEWORK_VERSION = A
1212

13-
CURRENT_PROJECT_VERSION = 8.39.0
13+
CURRENT_PROJECT_VERSION = 8.40.0
1414

1515
ALWAYS_SEARCH_USER_PATHS = NO
1616
CLANG_ENABLE_OBJC_ARC = YES

Sources/Configuration/SentrySwiftUI.xcconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PRODUCT_NAME = SentrySwiftUI
2-
CURRENT_PROJECT_VERSION = 8.39.0
2+
CURRENT_PROJECT_VERSION = 8.40.0
33

44
MACOSX_DEPLOYMENT_TARGET = 10.15
55
IPHONEOS_DEPLOYMENT_TARGET = 13.0

Sources/Sentry/SentryMeta.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ @implementation SentryMeta
55
// Don't remove the static keyword. If you do the compiler adds the constant name to the global
66
// symbol table and it might clash with other constants. When keeping the static keyword the
77
// compiler replaces all occurrences with the value.
8-
static NSString *versionString = @"8.39.0-beta.1";
8+
static NSString *versionString = @"8.40.0";
99
static NSString *sdkName = @"sentry.cocoa";
1010

1111
+ (NSString *)versionString

Tests/HybridSDKTest/HybridPod.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ Pod::Spec.new do |s|
1313
s.requires_arc = true
1414
s.frameworks = 'Foundation'
1515
s.swift_versions = "5.5"
16-
s.dependency "Sentry/HybridSDK", "8.39.0-beta.1"
16+
s.dependency "Sentry/HybridSDK", "8.40.0"
1717
s.source_files = "HybridTest.swift"
1818
end

0 commit comments

Comments
 (0)