Skip to content

Release 25.32.1 #7825

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
merged 40 commits into from
Aug 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
8e085dd
Facebook Custom Audiences update
varadarajan-tw Jul 28, 2025
3006aea
Trait encrihment updates
varadarajan-tw Jul 28, 2025
4b6134c
Userpilot mobile destination
motasem-userpilot Jul 28, 2025
8f81a2c
Update index.md
wilwong-twilio Jul 30, 2025
576fc6c
Update index.md
wilwong-twilio Jul 30, 2025
7b659ca
📝 Update index.md
motasem-userpilot Jul 31, 2025
729e3aa
fix: add empty array check to defaultValue
arnav777dev Jul 31, 2025
b2cded3
fixedit
forstisabella Aug 1, 2025
1b30ccc
Update src/connections/destinations/catalog/actions-facebook-custom-a…
varadarajan-tw Aug 4, 2025
42b7884
Update src/connections/destinations/catalog/actions-facebook-custom-a…
varadarajan-tw Aug 4, 2025
ef0002a
Update src/connections/destinations/catalog/actions-facebook-custom-a…
varadarajan-tw Aug 4, 2025
7da05d2
📝 Add Segment Destination ID
motasem-userpilot Aug 4, 2025
cc3bc1c
Merge pull request #7798 from segmentio/facebook-custom-audiences
forstisabella Aug 4, 2025
ae96240
Supporting RCS channel for Twilio Messaging Destination
joe-ayoub-segment Aug 5, 2025
f2e9f57
comma added
sade-wusi Aug 5, 2025
cd789c7
Merge pull request #7811 from segmentio/twilio-messaging-rcs
joe-ayoub-segment Aug 5, 2025
c8081f0
New Destination - Nextdoor
joe-ayoub-segment Aug 5, 2025
b99a151
Merge pull request #7808 from segmentio/STRATCONN-6101/wrong-description
stayseesong Aug 5, 2025
9f87520
Update index.md
motasem-userpilot Aug 6, 2025
c8572d0
Update actions.md
wilwong-twilio Aug 6, 2025
e4f822b
Update src/engage/audiences/index.md
wilwong-twilio Aug 6, 2025
3d36b6b
Merge pull request #7817 from segmentio/master
forstisabella Aug 6, 2025
2e7fadc
Clarifying how Page events are sent to Optimizely
sade-wusi Aug 6, 2025
892539f
Add Data Graph YT Video
stayseesong Aug 6, 2025
51c760a
update rule creation steps
pwseg Aug 7, 2025
117a42b
comment some stuff out
pwseg Aug 7, 2025
9f8ae16
add some screenshots + comment out some code [netlify-build]
pwseg Aug 7, 2025
5f5666d
update front matter
pwseg Aug 7, 2025
390f0fa
Merge pull request #7812 from segmentio/nextdoor-docs
pwseg Aug 7, 2025
9608a59
move screenshots to right folder [netlify-build]
pwseg Aug 7, 2025
fae3f47
Update src/connections/destinations/catalog/optimizely-web/index.md
sade-wusi Aug 7, 2025
aa5d6e3
Got rid of last sentence
sade-wusi Aug 7, 2025
2db534d
Merge pull request #7821 from segmentio/auto-instrumentation-configur…
pwseg Aug 7, 2025
5e04fb1
Merge pull request #7820 from segmentio/DOC-1162
stayseesong Aug 7, 2025
504ea71
Merge pull request #7819 from segmentio/optimizely-page-events
sade-wusi Aug 7, 2025
d4fd0de
catalog update + script fixes 7 august 2025
pwseg Aug 7, 2025
6508635
Merge pull request #7824 from segmentio/playing-with-the-catalog
pwseg Aug 7, 2025
e4c6806
Merge pull request #7818 from segmentio/wilwong-twilio-patch-2
stayseesong Aug 7, 2025
82d31f1
Merge pull request #7804 from segmentio/wilwong-twilio-patch-1
stayseesong Aug 7, 2025
444e384
Merge pull request #7800 from motasem-userpilot/mobile-docs
stayseesong Aug 7, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/catalog/updateSources.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const updateSources = async () => {
while (nextPageToken !== undefined) {
const res = await getCatalog(`${PAPI_URL}/catalog/sources/`, nextPageToken);
sources = sources.concat(res.data.sourcesCatalog);
nextPageToken = res.data.pagination.next;
nextPageToken = res.data.pagination?.next;
}

// Sort the sources alphabetically
Expand Down
14 changes: 8 additions & 6 deletions scripts/catalog/utilities.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,17 +47,19 @@ const getCatalog = async (url, page_token = "MA==") => {
'Content-Type': 'application/json',
'Authorization': `Bearer ${process.env.PAPI_TOKEN}`
},
data: {
"pagination": {
"count": 200,
"cursor": page_token
}
params: {
"pagination.count": 200,
"pagination.cursor": page_token
}
});

return res.data;
} catch (error) {
console.log("Something went wrong with the request to the Public API.\nIf you're updating a private destination, ensure the ID is correct.");
console.log("Something went wrong with the request to the Public API.");
console.log("Error:", error.message);
console.log("Status:", error.response?.status);
console.log("Data:", error.response?.data);
throw error;
}
};

Expand Down
2 changes: 1 addition & 1 deletion src/_data/catalog/destination_categories.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# AUTOGENERATED FROM PUBLIC API. DO NOT EDIT
# destination categories last updated 2025-07-31
# destination categories last updated 2025-08-07
items:
- display_name: A/B Testing
slug: a-b-testing
Expand Down
Loading
Loading