Skip to content

Commit b526a6a

Browse files
Hongyan JiangGitHub Enterprise
authored andcommitted
workaround XCode 26.4 RC issue (#102)
1 parent d792c1e commit b526a6a

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

Changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## 1.9.7
4+
- workaround XCode 26.4 RC issue
5+
36
## 1.9.6
47
- increase timeoutInterval for beacon flushing URLRequest to 2 minutes and also configurable
58

InstanaAgent.podspec

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

1818
s.name = "InstanaAgent"
19-
s.version = "1.9.6"
19+
s.version = "1.9.7"
2020
s.summary = "Instana iOS agent."
2121

2222
# This description is used to generate tags and improve search results.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
struct VersionConfig {
2-
static let agentVersion = "1.9.6"
2+
static let agentVersion = "1.9.7"
33
}

Sources/InstanaAgent/Monitors/Metric/MetricMonitor.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ class MetricMonitor: NSObject, MXMetricManagerSubscriber {
5656
///
5757
#if os(iOS)
5858
@available(iOS 13.0, *)
59-
public func didReceive(_ payloads: [MXMetricPayload]) {}
59+
// workaround XCode 26.4 RC issue
60+
// public func didReceive(_ payloads: [MXMetricPayload]) {}
6061
#endif
6162

6263
///

Tests/InstanaAgentTests/Configuration/InstanaSystemUtilsTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ class InstanaSystemUtilsTests: InstanaTestCase {
55

66
func test_AgentVersion() {
77
// Then
8-
AssertTrue(InstanaSystemUtils.agentVersion == "1.9.6")
8+
AssertTrue(InstanaSystemUtils.agentVersion == "1.9.7")
99
}
1010

1111
func test_systemVersion() {

0 commit comments

Comments
 (0)