Skip to content

Commit be9dc3e

Browse files
committed
Bump 1.2.2
1 parent 952bc2b commit be9dc3e

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

Changelog.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
# Changelog
22

3+
# 1.2.2
4+
- Do not forward urlSession(_ session: dataTask: didReceive:completionHandler) anymore (Response might get lost)
5+
36
## 1.2.1
47
- Make compatible with older Xcode versions (prior 12.1)
58
- Clean up tests and CI pipeline
69
- Add AFNetworking and Alamofire to demo project
710

811
## 1.2.0
9-
- Added new flag `collectionEnabled` to set up Instana without data collection. Instrumentation can be enabled later using this property. This allows apps to start Instana with a delay if users are asked for consent beforehand.
12+
- Added new flag `collectionEnabled` to set up Instana without data collection. Instrumentation can be enabled later using this property. This allows apps to start Instana with a delay if users are asked for consent beforehand.
1013

1114
## 1.1.18
1215
- Fix setting responseSize
@@ -29,7 +32,7 @@
2932
- Use specific URLSession Tasks
3033
- Update tests
3134

32-
## 1.1.12
35+
## 1.1.12
3336
- Improve example project
3437
- Add capability for macOS (AppKit)
3538
- Align carrier type and effective connection type with Android and Web

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.2.1"
19+
s.version = "1.2.2"
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.2.1"
2+
static let agentVersion = "1.2.2"
33
}

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.2.1")
8+
AssertTrue(InstanaSystemUtils.agentVersion == "1.2.2")
99
}
1010

1111
func test_systemVersion() {

0 commit comments

Comments
 (0)