Skip to content

Commit 4725012

Browse files
author
markzegarelli
authored
Merge pull request #1373 from segmentio/marcus/ajs
ajs integration updates
2 parents c031a7d + 4e90e49 commit 4725012

File tree

5 files changed

+45
-2
lines changed

5 files changed

+45
-2
lines changed

src/connections/destinations/catalog/braze/changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ title: Braze Destination Changelog
33
hidden: true
44
---
55

6+
### 2021-01-19
7+
8+
Adds support for version 3.1 in the appboy (braze) Web SDK integration.
9+
10+
- https://github.com/segmentio/analytics.js-integrations/pull/542
11+
612
### 2020-04-24
713

814
Braze analytics.js integration now supports new setting `Only Track Known Users`.

src/connections/destinations/catalog/braze/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -433,9 +433,9 @@ end
433433
```
434434

435435
### Migrating to v2 of the Braze Web SDK
436-
There are currently two major [versions](https://github.com/Appboy/appboy-web-sdk/blob/master/CHANGELOG.md#breaking) of this SDK: 1 and 2. Segment currently supports both as migrating to Version 2 requires some important changes to your website.
436+
There are currently three major [versions](https://github.com/Appboy/appboy-web-sdk/blob/master/CHANGELOG.md#breaking) of this SDK: 1, 2, and 3. Segment currently supports both as migrating to Version 2+ requires some important changes to your website.
437437

438-
If you have never implemented Braze on your site, either using Segment or natively, you can ignore this section. If you have had Braze running before and want to migrate to Version 2 **you must ensure you remove all references to `appboy.min.css` from your site.** This is very important as it will cause issues with Version 2 of their SDK. Once you have done this you can select Version 2 using the "Braze Web SDK Version" with your Segment Settings UI.
438+
If you have never implemented Braze on your site, either using Segment or natively, you can ignore this section. If you have had Braze running before and want to migrate to Version 2+ **you must ensure you remove all references to `appboy.min.css` from your site.** This is very important as it will cause issues with Version 2+ of their SDK. Once you have done this you can select Version 2+ using the "Braze Web SDK Version" with your Segment Settings UI.
439439

440440
## Using Braze with Personas
441441

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: Drift Destination Changelog
3+
hidden: true
4+
---
5+
6+
### 2021-01-12
7+
8+
Send analytics integration options to drift identify
9+
10+
- https://github.com/segment-integrations/analytics.js-integration-drift/pull/7

src/connections/destinations/catalog/drift/index.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,22 @@ If you do not pass a `userId`, we will try to fill it in with the `id` or `usern
5050

5151
Keep in mind, we _strongly_ suggest to ensure that the `email` field is passed in the `identify` call.
5252

53+
Integrations options passed to `identify` event will be passed to drift identify as third argument. This can be leveraged for [signed identifies](https://devdocs.drift.com/docs/securing-drift-on-your-site-using-signed-identities).
54+
55+
```javascript
56+
analytics.identify('ksc2303', {
57+
name: 'Tak',
58+
59+
}, {
60+
integrations: {
61+
'All': false,
62+
'Drift': {
63+
// properties to pass to drift identify call.
64+
}
65+
}
66+
});
67+
```
68+
5369
## Track
5470

5571
If you're not familiar with the Segment Specs, take a look to understand what the [Track method](https://segment.com/docs/connections/spec/track/) does. An example call would look like:
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
title: Rockerbox Destination Changelog
3+
hidden: true
4+
---
5+
6+
### 2021-01-12
7+
8+
Add additional options for users to enter a custom domain & disable cross-domain syncing for their Rockerbox tracker.
9+
10+
- https://github.com/segmentio/analytics.js-integrations/pull/525
11+

0 commit comments

Comments
 (0)