Skip to content

Commit

Permalink
Update dependencies (#127)
Browse files Browse the repository at this point in the history
* Update dependencies versions

* Remove unused TreasureData-Prefix.pch

* Update README to remove support for Server Side Upload Timestamp
  • Loading branch information
tung-vu-td committed Apr 29, 2024
1 parent 9e82e47 commit 11fc284
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 57 deletions.
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ let package = Package(
targets: ["TreasureData_iOS_SDK"]),
],
dependencies: [
.package(url: "https://github.com/treasure-data/KeenClient-iOS.git", .exact("4.1.0")),
.package(url: "https://github.com/nicklockwood/GZIP.git", .upToNextMajor(from: "1.3.1"))
.package(url: "https://github.com/treasure-data/KeenClient-iOS.git", .exact("4.1.1")),
.package(url: "https://github.com/nicklockwood/GZIP.git", .exact("1.3.2"))
],
targets: [
.target(
Expand Down
4 changes: 2 additions & 2 deletions Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ platform :ios, '12.0'
use_frameworks!

target 'TreasureData' do
pod 'KeenClientTD', '= 4.1.0'
pod 'GZIP', '= 1.3.1'
pod 'KeenClientTD', '= 4.1.1'
pod 'GZIP', '= 1.3.2'
end

target 'TreasureDataTests' do
Expand Down
20 changes: 10 additions & 10 deletions Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
PODS:
- GZIP (1.3.1)
- KeenClientTD (4.1.0):
- KeenClientTD/keen_sqlite (= 4.1.0)
- KeenClientTD/keen_sqlite (4.1.0)
- GZIP (1.3.2)
- KeenClientTD (4.1.1):
- KeenClientTD/keen_sqlite (= 4.1.1)
- KeenClientTD/keen_sqlite (4.1.1)

DEPENDENCIES:
- GZIP (= 1.3.1)
- KeenClientTD (= 4.1.0)
- GZIP (= 1.3.2)
- KeenClientTD (= 4.1.1)

SPEC REPOS:
https://cdn.cocoapods.org/:
- GZIP
- KeenClientTD

SPEC CHECKSUMS:
GZIP: e6922ed5bdd1d77d84589d50821ac34ea0c38d4b
KeenClientTD: 29a0bee0f807574996e24e88cadd9d9fecdf368c
GZIP: 3c0abf794bfce8c7cb34ea05a1837752416c8868
KeenClientTD: 6370a6861a152aa8bac2108f68e540dc9b5f72bf

PODFILE CHECKSUM: 1977e78896f93ea727fb9fd6f65fc45cf74b1f89
PODFILE CHECKSUM: c7c56130903936173a7ecee314611a525c115504

COCOAPODS: 1.14.3
COCOAPODS: 1.15.2
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Also, there is an alternative SDK written in Swift [https://github.com/recruit-l
Version 1 has major changes that are not backward compatible with previous versions. If you are upgrading from version 0.9.0 or earlier, your code will not run correctly without doing these following steps:
- API endpoint has changed to Ingestion Endpoint. The default value is https://us01.records.in.treasuredata.com.
- `initializeApiEndpoint:` API is no longer available, please use `initializeWithApiKey:apiEndpoint:` instead.
- Server side upload timestamp feature is removed. If you need this feature, please contact our support team.
- Server side upload timestamp feature is removed.
- New `enableAutoAppendLocalTimestamp` and `disableAutoAppendLocalTimestamp` to help automatically track local timestamp.
- `uuid` is now reserved column name. If you try to add value to event's `uuid` key, you won't see the column show up in the database.

Expand Down
30 changes: 15 additions & 15 deletions TreasureData-iOS-SDK.podspec
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
Pod::Spec.new do |s|
s.name = "TreasureData-iOS-SDK"
s.version = "1.1.0"
s.summary = "TreasureData SDK for iOS."
s.license = "Apache"
s.authors = { "mitsu" => "mitsu@treasure-data.com",
"huylenq" => "huy.lenq@gmail.com",
"tung-vu-td" => "tung.vu@treasure-data.com" }
s.platforms = { :ios => "12.0", :tvos => "12.0" }
s.homepage = "https://github.com/treasure-data/td-ios-sdk"
s.source = { :git => "https://github.com/treasure-data/td-ios-sdk.git", :tag => s.version.to_s }
s.source_files = ['TreasureData', "TreasureDataInternal"]
s.resources = "PrivacyInfo.xcprivacy"
s.name = 'TreasureData-iOS-SDK'
s.version = '1.1.0'
s.summary = 'TreasureData SDK for iOS'
s.license = 'Apache'
s.authors = { 'mitsu': 'mitsu@treasure-data.com',
'huylenq': 'huy.lenq@gmail.com',
'tung-vu-td': 'tung.vu@treasure-data.com' }
s.platforms = { ios: '12.0', tvos: '12.0' }
s.homepage = 'https://github.com/treasure-data/td-ios-sdk'
s.source = { git: 'https://github.com/treasure-data/td-ios-sdk.git', tag: s.version.to_s }
s.source_files = 'TreasureData', 'TreasureDataInternal'
s.resources = 'PrivacyInfo.xcprivacy'
s.library = 'z'
s.frameworks = 'Security', 'StoreKit'
s.public_header_files = ["TreasureData/TreasureData.h", "TreasureData/TDClient.h", "TreasureData/TDRequestOptionsKey.h"]
s.dependency "KeenClientTD", '= 4.1.0'
s.dependency "GZIP", '= 1.3.0'
s.public_header_files = 'TreasureData/TreasureData.h', 'TreasureData/TDClient.h', 'TreasureData/TDRequestOptionsKey.h'
s.dependency 'KeenClientTD', '= 4.1.1'
s.dependency 'GZIP', '= 1.3.2'
s.requires_arc = true
end
24 changes: 6 additions & 18 deletions TreasureData.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@
644A82FEB7ABBA6EEE825324 /* Pods-TreasureDataTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TreasureDataTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-TreasureDataTests/Pods-TreasureDataTests.release.xcconfig"; sourceTree = "<group>"; };
6B73808E192A09160097D56E /* libTreasureData.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libTreasureData.a; sourceTree = BUILT_PRODUCTS_DIR; };
6B738091192A09160097D56E /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
6B738095192A09160097D56E /* TreasureData-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "TreasureData-Prefix.pch"; sourceTree = "<group>"; };
6B738096192A09160097D56E /* TreasureData.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TreasureData.h; sourceTree = "<group>"; };
6B738098192A09160097D56E /* TreasureData.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TreasureData.m; sourceTree = "<group>"; };
6B73809E192A09160097D56E /* TreasureDataTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = TreasureDataTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
Expand Down Expand Up @@ -227,19 +226,10 @@
6B738098192A09160097D56E /* TreasureData.m */,
6BF8C9321A3E9B76005B1804 /* TDClient.h */,
6BF8C9331A3E9B76005B1804 /* TDClient.m */,
6B738094192A09160097D56E /* Supporting Files */,
);
path = TreasureData;
sourceTree = "<group>";
};
6B738094192A09160097D56E /* Supporting Files */ = {
isa = PBXGroup;
children = (
6B738095192A09160097D56E /* TreasureData-Prefix.pch */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
6B7380A7192A09160097D56E /* TreasureDataTests */ = {
isa = PBXGroup;
children = (
Expand Down Expand Up @@ -667,8 +657,8 @@
CLANG_ENABLE_MODULES = YES;
CLANG_MODULES_AUTOLINK = YES;
DSTROOT = /tmp/TreasureData.dst;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "TreasureData/TreasureData-Prefix.pch";
GCC_PRECOMPILE_PREFIX_HEADER = NO;
GCC_PREFIX_HEADER = "";
HEADER_SEARCH_PATHS = "$(inherited)/**";
IPHONEOS_DEPLOYMENT_TARGET = "$(inherited)";
OTHER_CFLAGS = "$(inherited)";
Expand All @@ -687,8 +677,8 @@
CLANG_ENABLE_MODULES = YES;
CLANG_MODULES_AUTOLINK = YES;
DSTROOT = /tmp/TreasureData.dst;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "TreasureData/TreasureData-Prefix.pch";
GCC_PRECOMPILE_PREFIX_HEADER = NO;
GCC_PREFIX_HEADER = "";
HEADER_SEARCH_PATHS = "$(inherited)/**";
IPHONEOS_DEPLOYMENT_TARGET = "$(inherited)";
OTHER_CFLAGS = "$(inherited)";
Expand All @@ -710,8 +700,7 @@
"$(DEVELOPER_FRAMEWORKS_DIR)",
"$(inherited)",
);
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "TreasureData/TreasureData-Prefix.pch";
GCC_PRECOMPILE_PREFIX_HEADER = NO;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
Expand Down Expand Up @@ -740,8 +729,7 @@
"$(DEVELOPER_FRAMEWORKS_DIR)",
"$(inherited)",
);
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "TreasureData/TreasureData-Prefix.pch";
GCC_PRECOMPILE_PREFIX_HEADER = NO;
INFOPLIST_FILE = "TreasureDataTests/TreasureDataTests-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = "$(inherited)";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
Expand Down
9 changes: 0 additions & 9 deletions TreasureData/TreasureData-Prefix.pch

This file was deleted.

0 comments on commit 11fc284

Please sign in to comment.