-
Notifications
You must be signed in to change notification settings - Fork 144
Bug/sdk 2455/fix sdk for turkish servers #720
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
Merged
pooyaj
merged 14 commits into
segmentio:master
from
CleverTap:bug/SDK-2455/fix_sdk_for_turkish_servers
Jan 10, 2023
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
e64efd1
updates clevertap sdks path
sinhaayush7 b1ddf40
updates clevertap sdk url
sinhaayush7 8291288
updates clevertap version in history.md and package.json
sinhaayush7 d21b070
Merge branch 'master' into bug/SDK-2455/fix_sdk_for_turkish_servers
sinhaayush7 36c3090
updates clevertap sdks path
sinhaayush7 7ec1d23
updates clevertap sdk url
sinhaayush7 7028312
updates clevertap version in history.md and package.json
sinhaayush7 4d828b0
Check for last instance of .js extension in filename (#709)
arielsilvestri ff9ceeb
Add WalkMe SRI (cloned) (#718)
danieljackins ee34b9f
version bump (#719)
danieljackins efe2513
Rebasing with master
sinhaayush7 3213f13
updates tag from http to https
sinhaayush7 afcb537
removes use-https library; loads clevertap over https only
sinhaayush7 0fa0e5b
modifies segment identify to use onUserLogin instead of profile.push
sinhaayush7 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
|
||
1.0.4 / 2022-12-14 | ||
* Updates clevertap sdk url | ||
|
||
1.0.2 / 2017-08-30 | ||
================== | ||
|
||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is a logic further down the code (in
initialize
method) that does this:the
this.load
method usesprotocol
to decide which script to load, but with this change we removed thehttps
script, and therefore, thethis.load
will fail forhttps
cases.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hi @pooyaj , If i understood this right, then the
this.load
will fail for http, since in the tag I've changed it tohttps
now. The intent is to load the script overhttps
only, since most of the people use https.Also I think
use-https
library no longer serves the purpose, so would be removing this due to above stated reasons.Thanks!