Skip to content

Commit 2e2c889

Browse files
fix(core): fix issue with closure minification of referring link expiry (#911)
Changelog: - fix(core) : Fix issue with closure minification of referring link expiry
1 parent 389d74c commit 2e2c889

File tree

7 files changed

+13
-10
lines changed

7 files changed

+13
-10
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ All notable changes to the Branch Web SDK will be documented here.
33
The Branch Web SDK adheres to [Semantic Versioning](http://semver.org/).
44

55
## [VERSION] - unreleased
6+
## [2.75.0] - 2023-07-03
7+
- SDK-1996 Fix issue with closure minification of referring link expiry
8+
69
## [2.74.0] - 2023-04-04
710
- INTENG-18040 Convert percentage banner height to pixels
811

dist/build.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1072,7 +1072,7 @@ goog.json.Serializer.prototype.serializeObject_ = function(a, b) {
10721072
b.push("}");
10731073
};
10741074
// Input 2
1075-
var config = {app_service_endpoint:"https://app.link", link_service_endpoint:"https://bnc.lt", api_endpoint:"https://api2.branch.io", version:"2.74.0"};
1075+
var config = {app_service_endpoint:"https://app.link", link_service_endpoint:"https://bnc.lt", api_endpoint:"https://api2.branch.io", version:"2.75.0"};
10761076
// Input 3
10771077
var safejson = {parse:function(a) {
10781078
a = String(a);

dist/build.min.js

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

package-lock.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.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "branch-sdk",
3-
"version": "2.74.0",
3+
"version": "2.75.0",
44
"description": "Branch Metrics Deep Linking/Smart Banner Web SDK",
55
"main": "dist/build.min.js",
66
"files": [

src/0_config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ goog.provide('config');
66
config.app_service_endpoint = 'https://app.link';
77
config.link_service_endpoint = 'https://bnc.lt';
88
config.api_endpoint = 'https://api2.branch.io';
9-
config.version = '2.74.0';
9+
config.version = '2.75.0';

test/web-config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ goog.provide('config');
66
config.app_service_endpoint = 'https://app.link';
77
config.link_service_endpoint = 'https://bnc.lt';
88
config.api_endpoint = 'https://api.branch.io';
9-
config.version = '2.74.0';
9+
config.version = '2.75.0';

0 commit comments

Comments
 (0)