Skip to content

Commit

Permalink
Merge pull request #684 from adjust/v4352
Browse files Browse the repository at this point in the history
Version 4.35.2
  • Loading branch information
uerceg authored Oct 9, 2023
2 parents 9abd400 + d3de075 commit 20c2666
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 14 deletions.
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.35.1"
s.version = "4.35.2"
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" => "[email protected]" }
s.source = { :git => "https://github.com/adjust/ios_sdk.git", :tag => "v4.35.1" }
s.source = { :git => "https://github.com/adjust/ios_sdk.git", :tag => "v4.35.2" }
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '9.0'
s.framework = 'SystemConfiguration'
Expand Down
8 changes: 7 additions & 1 deletion Adjust/ADJActivityPackage.m
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,13 @@ @implementation ADJActivityPackage

- (NSString *)extendedString {
NSMutableString *builder = [NSMutableString string];
NSArray *excludedKeys = @[@"secret_id", @"app_secret", @"signature", @"headers_id", @"native_version", @"event_callback_id", @"adj_signing_id"];
NSArray *excludedKeys = @[
@"secret_id",
@"app_secret",
@"signature",
@"headers_id",
@"native_version",
@"adj_signing_id"];

[builder appendFormat:@"Path: %@\n", self.path];
[builder appendFormat:@"ClientSdk: %@\n", self.clientSdk];
Expand Down
7 changes: 4 additions & 3 deletions Adjust/ADJRequestHandler.m
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,14 @@ - (id)initWithResponseCallback:(id<ADJResponseCallback>)responseCallback
self.logger = ADJAdjustFactory.logger;
self.defaultSessionConfiguration = [NSURLSessionConfiguration defaultSessionConfiguration];

self.exceptionKeys =
[NSHashTable hashTableWithOptions:NSHashTableStrongMemory];
[self.exceptionKeys addObject:@"event_callback_id"];
self.exceptionKeys = [NSHashTable hashTableWithOptions:NSHashTableStrongMemory];
[self.exceptionKeys addObject:@"secret_id"];
[self.exceptionKeys addObject:@"signature"];
[self.exceptionKeys addObject:@"headers_id"];
[self.exceptionKeys addObject:@"native_version"];
[self.exceptionKeys addObject:@"algorithm"];
[self.exceptionKeys addObject:@"app_secret"];
[self.exceptionKeys addObject:@"adj_signing_id"];

return self;
}
Expand Down Expand Up @@ -659,6 +658,8 @@ - (void)signWithSigV2Plugin:(ADJActivityPackage *)activityPackage {
return;
}

[activityPackage.parameters removeObjectForKey:@"app_secret"];
[activityPackage.parameters removeObjectForKey:@"secret_id"];
NSMutableDictionary *parameters = activityPackage.parameters;
const char *activityKindChar = [[ADJActivityKindUtil activityKindToString:activityPackage.activityKind] UTF8String];
const char *sdkVersionChar = [activityPackage.clientSdk UTF8String];
Expand Down
2 changes: 1 addition & 1 deletion 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.35.1";
static NSString * const kClientSdk = @"ios4.35.2";
static NSString * const kDeeplinkParam = @"deep_link=";
static NSString * const kSchemeDelimiter = @"://";
static NSString * const kDefaultScheme = @"AdjustUniversalScheme";
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.35.1
// V4.35.2
// 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.35.1';
return 'web-bridge4.35.2';
}
},
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.35.2 (9th October 2023)
#### Added
- Added sending of `event_callback_id` parameter (if set) with the event payload.

---

### Version 4.35.1 (2nd October 2023)
#### Fixed
- Fixed issue with signing requests post ATT delay timer exipry.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.35.1
4.35.2
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.35.1):
- Adjust/Core (= 4.35.1)
- Adjust/Core (4.35.1)
- Adjust (4.35.2):
- Adjust/Core (= 4.35.2)
- Adjust/Core (4.35.2)

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

SPEC CHECKSUMS:
Adjust: 63c56c81b420738f927fbc19e5cf4f34fd39d572
Adjust: cac836ba910f868b38d0350045aaf498f794719a

PODFILE CHECKSUM: 4c79da456db9adb90cdd42adc7f721c7bb6490cd

Expand Down

0 comments on commit 20c2666

Please sign in to comment.