Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 4.33.6 #670

Merged
merged 6 commits into from
Jul 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Adjust.podspec
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Pod::Spec.new do |s|
s.name = "Adjust"
s.version = "4.33.5"
s.version = "4.33.6"
s.summary = "This is the iOS SDK of adjust. You can read more about it at http://adjust.com."
s.homepage = "https://github.com/adjust/ios_sdk"
s.license = { :type => 'MIT', :file => 'MIT-LICENSE' }
s.author = { "Adjust" => "sdk@adjust.com" }
s.source = { :git => "https://github.com/adjust/ios_sdk.git", :tag => "v4.33.5" }
s.source = { :git => "https://github.com/adjust/ios_sdk.git", :tag => "v4.33.6" }
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '9.0'
s.framework = 'SystemConfiguration'
Expand Down
11 changes: 6 additions & 5 deletions Adjust/ADJUtil.m
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
static NSRegularExpression *shortUniversalLinkRegex = nil;
static NSRegularExpression *excludedDeeplinkRegex = nil;

static NSString * const kClientSdk = @"ios4.33.5";
static NSString * const kClientSdk = @"ios4.33.6";
static NSString * const kDeeplinkParam = @"deep_link=";
static NSString * const kSchemeDelimiter = @"://";
static NSString * const kDefaultScheme = @"AdjustUniversalScheme";
Expand Down Expand Up @@ -1191,7 +1191,7 @@ + (int)attStatus {
NSMethodSignature *msAuthorization = [appTrackingClass methodSignatureForSelector:selAuthorization];
NSInvocation *invAuthorization = [NSInvocation invocationWithMethodSignature:msAuthorization];
[invAuthorization setSelector:selAuthorization];
[invAuthorization invokeWithTarget:appTrackingClass];
[invAuthorization setTarget:appTrackingClass];
[invAuthorization invoke];
NSUInteger status;
[invAuthorization getReturnValue:&status];
Expand Down Expand Up @@ -1431,9 +1431,10 @@ + (NSMutableDictionary *)deepCopyOfDictionary:(NSMutableDictionary *)dictionary
return nil;
}

NSMutableDictionary *deepCopy = (__bridge NSMutableDictionary *)CFPropertyListCreateDeepCopy(NULL,
(__bridge CFDictionaryRef)dictionary,
kCFPropertyListMutableContainersAndLeaves);
NSMutableDictionary *deepCopy =
(NSMutableDictionary *)CFBridgingRelease(CFPropertyListCreateDeepCopy(kCFAllocatorDefault,
(CFDictionaryRef)dictionary,
kCFPropertyListMutableContainersAndLeaves));
return deepCopy;
}

Expand Down
2 changes: 1 addition & 1 deletion Adjust/Adjust.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Adjust.h
// Adjust SDK
//
// V4.33.5
// V4.33.6
// Created by Christian Wellenbrock (@wellle) on 23rd July 2013.
// Copyright (c) 2012-2021 Adjust GmbH. All rights reserved.
//
Expand Down
2 changes: 1 addition & 1 deletion AdjustBridge/AdjustBridgeRegister.m
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ + (NSString *)adjust_js {
if (this.sdkPrefix) {
return this.sdkPrefix;
} else {
return 'web-bridge4.33.5';
return 'web-bridge4.33.6';
}
},
setTestOptions: function(testOptions) {
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
### Version 4.33.6 (25th July 2023)
#### Fixed
- Fixed memory leak occurrences when tracking events (https://github.com/adjust/ios_sdk/issues/668).

---

### Version 4.33.5 (13th July 2023)
#### Changed
- Replaced the usage of `drand48()` with `arc4random_uniform` method.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.33.5
4.33.6
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,13 @@
ReferencedContainer = "container:AdjustExample-ObjC.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
<AdditionalOptions>
<AdditionalOption
key = "MallocScribble"
value = ""
isEnabled = "YES">
</AdditionalOption>
</AdditionalOptions>
</LaunchAction>
<ProfileAction
buildConfiguration = "Release"
Expand Down
8 changes: 4 additions & 4 deletions examples/AdjustExample-Swift/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PODS:
- Adjust (4.33.5):
- Adjust/Core (= 4.33.5)
- Adjust/Core (4.33.5)
- Adjust (4.33.6):
- Adjust/Core (= 4.33.6)
- Adjust/Core (4.33.6)

DEPENDENCIES:
- Adjust (from `../../`)
Expand All @@ -11,7 +11,7 @@ EXTERNAL SOURCES:
:path: "../../"

SPEC CHECKSUMS:
Adjust: 4690e07ea401ee56d4d3f4f5bdad86c94f51903f
Adjust: c3b6c3734928a617fefce81dc223fd5f104162be

PODFILE CHECKSUM: 4c79da456db9adb90cdd42adc7f721c7bb6490cd

Expand Down