Skip to content

Commit bc85cb5

Browse files
authored
[DEST-534][CC-4830] Update Braze SDK to v2.3 (#140)
1 parent b410d4c commit bc85cb5

File tree

5 files changed

+18
-5
lines changed

5 files changed

+18
-5
lines changed

.eslintrc

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,15 @@
55
"prettier/prettier": "error",
66
"func-names": "off",
77
"no-multi-assign": "off",
8-
"vars-on-top": "warn"
8+
"vars-on-top": "off",
9+
"no-underscore-dangle": "warn",
10+
"no-prototype-builtins": "warn",
11+
"no-use-before-define": "warn",
12+
"no-loop-func": "warn",
13+
"no-restricted-syntax": "warn",
14+
"no-continue": "warn",
15+
"consistent-return": "warn",
16+
"no-shadow": "warn"
917
},
1018
"overrides": [
1119
{

integrations/appboy/HISTORY.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
1.9.0 / 2019-06-19
2+
==================
3+
4+
* Use Appboy SDK v2.3 for v2.
5+
16
1.7.1 / 2018-08-02
27
==================
38

integrations/appboy/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ Released under the [MIT license](LICENSE).
99

1010

1111
[Analytics.js]: https://segment.com/docs/libraries/analytics.js/
12-
[ci-link]: https://circleci.com/gh/segment-integrations/analytics.js-integration-appboy
13-
[ci-badge]: https://circleci.com/gh/segment-integrations/analytics.js-integration-appboy-nps.svg?style=svg
12+
[ci-link]: https://circleci.com/gh/segmentio/analytics.js-integrations
13+
[ci-badge]: https://circleci.com/gh/segmentio/analytics.js-integrations-nps.svg?style=svg

integrations/appboy/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ var Appboy = (module.exports = integration('Appboy')
3939
)
4040
.tag(
4141
'v2',
42-
'<script src="https://js.appboycdn.com/web-sdk/2.2/appboy.min.js">'
42+
'<script src="https://js.appboycdn.com/web-sdk/2.3/appboy.min.js">'
4343
));
4444

4545
Appboy.prototype.initialize = function() {

integrations/appboy/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@segment/analytics.js-integration-appboy",
33
"description": "The Appboy analytics.js integration.",
4-
"version": "1.8.0",
4+
"version": "1.9.0",
55
"keywords": [
66
"analytics.js",
77
"analytics.js-integration",

0 commit comments

Comments
 (0)