File tree 2 files changed +5
-4
lines changed 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Unreleased
2
+ - Fix ` pod lib lint GoogleUtilities.podspec --use-libraries ` regression. (#2130 )
2
3
3
4
# 5.3.6
4
5
- Fix nullability issues. (#2079 )
11
12
12
13
# 5.3.4
13
14
- Fixed a crash caused by unprotected access to sessions in
14
- ` GULNetworkURLSession ` (#1964 ).
15
+ ` GULNetworkURLSession ` . (#1964 )
15
16
16
17
# 5.3.3
17
18
- Fixed an issue where GoogleUtilities would leak instances of ` NSURLSession ` .
Original file line number Diff line number Diff line change @@ -37,6 +37,9 @@ @implementation GULNetworkURLSession {
37
37
#pragma clang diagnostic ignored "-Wunguarded-availability"
38
38
// / The session configuration. NSURLSessionConfiguration' is only available on iOS 7.0 or newer.
39
39
NSURLSessionConfiguration *_sessionConfig;
40
+
41
+ // / The current NSURLSession.
42
+ NSURLSession *__weak _Nullable _URLSession;
40
43
#pragma clang diagnostic pop
41
44
42
45
// / The path to the directory where all temporary files are stored before uploading.
@@ -50,9 +53,6 @@ @implementation GULNetworkURLSession {
50
53
51
54
// / The current request.
52
55
NSURLRequest *_request;
53
-
54
- // / The current NSURLSession.
55
- NSURLSession *__weak _Nullable _URLSession;
56
56
}
57
57
58
58
#pragma mark - Init
You can’t perform that action at this time.
0 commit comments