Skip to content

Commit

Permalink
Release/6.5.2 (#125)
Browse files Browse the repository at this point in the history
Co-authored-by: embrace-ci <embrace-ci@users.noreply.github.com>
  • Loading branch information
NachoEmbrace and embrace-ci authored Nov 15, 2024
1 parent 27ea47c commit 584ee27
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 6.5.2
*Nov 14th, 2024*
* Features
* `EmbraceCrashReporter` now receives a list of signals to be ignored. `SIGTERM` is ignored by default now.
* Fixes
* Fixed network payload capture rules not working.
* Fixed `WebViewCaptureService` preventing the web view delegate from receiving messages.
* Fixed `PushNotificationCaptureService` preventing the user notification delegate from receiving messages.
* Fixed log batching logic.

## 6.5.1
*Oct 29th, 2024*
* Features
Expand Down
2 changes: 1 addition & 1 deletion EmbraceIO.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "EmbraceIO"
spec.version = "6.5.1"
spec.version = "6.5.2"
spec.summary = "Visibility into your users that you didn't have before."
spec.description = <<-DESC
Embrace is the only performance monitoring platform focused solely on mobile. We are built
Expand Down
2 changes: 1 addition & 1 deletion Sources/EmbraceCommonInternal/EmbraceMeta.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
// Do not edit this file manually

public class EmbraceMeta {
public static let sdkVersion = "6.5.1"
public static let sdkVersion = "6.5.2"
}
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class UIViewControllerDidAppearSwizzler: Swizzlable {
try swizzleInstanceMethod { originalImplementation in
return { [weak self] viewController, animated -> Void in
self?.onViewDidAppear?(viewController, animated)
originalImplementation(viewController, UIWindowSendEventSwizzler.selector, animated)
originalImplementation(viewController, Self.selector, animated)
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class UIViewControllerDidDisappearSwizzler: Swizzlable {
try swizzleInstanceMethod { originalImplementation in
return { [weak self] viewController, animated -> Void in
self?.onViewDidDisappear?(viewController, animated)
originalImplementation(viewController, UIWindowSendEventSwizzler.selector, animated)
originalImplementation(viewController, Self.selector, animated)
}
}
}
Expand Down

0 comments on commit 584ee27

Please sign in to comment.