Skip to content

Commit 891a2e2

Browse files
Merge pull request #117 from Kommunicate-io/dev
Release 1.2.6
2 parents f1863e9 + 3aabec8 commit 891a2e2

File tree

184 files changed

+1036
-949
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

184 files changed

+1036
-949
lines changed
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
name: iOS Linter Build Check Workflow
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- dev
7+
- master
8+
types:
9+
- opened
10+
- synchronize
11+
- reopened
12+
13+
concurrency:
14+
group: pr-${{ github.event.pull_request.number }}
15+
cancel-in-progress: true
16+
17+
jobs:
18+
build-and-lint:
19+
name: Build and Lint
20+
runs-on: macos-latest
21+
timeout-minutes: 10
22+
23+
steps:
24+
- name: Checkout Repository
25+
uses: actions/checkout@v3
26+
27+
- name: Set up Xcode
28+
uses: maxim-lobanov/setup-xcode@v1
29+
with:
30+
xcode-version: '16.1.0'
31+
32+
- name: Run Linter Check
33+
run: |
34+
pod lib lint --allow-warnings
35+
36+
- name: Debug Environment Variables (Optional)
37+
run: echo "Environment variables set successfully."
38+
39+
- name: Post Lint Test Results to PR
40+
if: github.event_name == 'pull_request' && success()
41+
uses: actions/github-script@v6
42+
with:
43+
script: |
44+
const comment = `✅ **iOS Lint Test Result**\nCongratulations! Linter Check Passed Successfully 🎉`;
45+
await github.rest.issues.createComment({
46+
issue_number: context.issue.number,
47+
owner: context.repo.owner,
48+
repo: context.repo.repo,
49+
body: comment,
50+
});
51+
52+
- name: Post Lint Failure Result to PR
53+
if: github.event_name == 'pull_request' && failure()
54+
uses: actions/github-script@v6
55+
with:
56+
script: |
57+
const comment = `❌ **iOS Lint Test Result**\nOops! Linter Check Failed. Please fix the issues.`;
58+
await github.rest.issues.createComment({
59+
issue_number: context.issue.number,
60+
owner: context.repo.owner,
61+
repo: context.repo.repo,
62+
body: comment,
63+
});

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# CHANGELOG
22

33
The changelog for [KommunicateCore-iOS-SDK](https://github.com/Kommunicate-io/KommunicateCore-iOS-SDK). Also see the [releases](https://github.com/Kommunicate-io/KommunicateCore-iOS-SDK/releases) on Github.
4+
## [1.2.6] 2025-03-18
5+
- Internal code refactor.
46
## [1.2.5] 2024-12-24
57
- SSL Pinning Enable Disable Configuration Added.
68
## [1.2.4] 2024-12-02

Example/Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PODS:
2-
- KommunicateCore-iOS-SDK (1.2.5)
2+
- KommunicateCore-iOS-SDK (1.2.6)
33

44
DEPENDENCIES:
55
- KommunicateCore-iOS-SDK (from `../`)
@@ -9,7 +9,7 @@ EXTERNAL SOURCES:
99
:path: "../"
1010

1111
SPEC CHECKSUMS:
12-
KommunicateCore-iOS-SDK: 5dc0d852f3e49c37b33a808d73556cf683b2f6c0
12+
KommunicateCore-iOS-SDK: 0d93451165eef64c95aa97c7db4db49f849b0a49
1313

1414
PODFILE CHECKSUM: 7027d57d0977da2f7eeddd9ce9eb5c4b46250a39
1515

Example/Pods/Local Podspecs/KommunicateCore-iOS-SDK.podspec.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Manifest.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Pods.xcodeproj/project.pbxproj

Lines changed: 672 additions & 654 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/Pods-KommunicateCore-iOS-SDK_Example/Pods-KommunicateCore-iOS-SDK_Example.debug.xcconfig

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/Pods-KommunicateCore-iOS-SDK_Example/Pods-KommunicateCore-iOS-SDK_Example.release.xcconfig

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

KommunicateCore-iOS-SDK.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'KommunicateCore-iOS-SDK'
3-
s.version = '1.2.5'
3+
s.version = '1.2.6'
44
s.summary = 'KommunicateCore-iOS SDK pod'
55
s.description = <<-DESC
66
The KommunicateCore-iOS SDK helps you build your own custom UI in your iOS app

Sources/JWT/ALJWT.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// ApplozicCore
44
//
55
// Created by apple on 12/03/21.
6-
// Copyright © 2021 applozic Inc. All rights reserved.
6+
// Copyright © 2021 kommunicate. All rights reserved.
77
//
88

99
#import "ALJWT.h"
@@ -154,7 +154,7 @@ + (ALJWT * _Nullable)decodeWithJwt:(NSString *)jwtValue
154154
return jWTObj;
155155
} @catch (NSException *exception) {
156156
NSString *exceptionMessage = exception.reason;
157-
*error = [NSError errorWithDomain:@"Applozic"
157+
*error = [NSError errorWithDomain:@"KMCore"
158158
code:1
159159
userInfo:@{NSLocalizedDescriptionKey : exceptionMessage}];
160160
}

0 commit comments

Comments
 (0)