Skip to content

Commit f02cd65

Browse files
authored
Merge pull request #5080 from segmentio/develop
Release 23.30.2
2 parents d8ac334 + 6e4bb69 commit f02cd65

File tree

31 files changed

+3025
-188
lines changed

31 files changed

+3025
-188
lines changed

.github/styles/Vocab/Docs/accept.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ aws
3535
background(?:ed|ing)
3636
Bento
3737
Bing
38+
Blackbaud
3839
Blitzllama
3940
blocklist
4041
Bluedot

scripts/catalog/utilities.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ const slugify = (displayName, type) => {
1616
.replace('-&-', '-')
1717
.replace('/', '-')
1818
.replace(/[\(\)]/g, '')
19-
.replace('.', '-');
19+
.replace('.', '-')
20+
.replace(/'/g, '');
2021

2122
let overrides = "";
2223
if (type == "sources") {
@@ -128,7 +129,7 @@ const doesCatalogItemExist = (item) => {
128129
const docsPath = `src/${item.url}`;
129130

130131
if (!fs.existsSync(docsPath)) {
131-
console.log(`${item.slug} does not exist: ${docsPath}`);
132+
console.log(`${item.slug} (id: ${item.id}) does not exist: ${docsPath}`);
132133
let content = `---\ntitle: '${item.display_name} Source'\nhidden: true\n---`;
133134

134135
if (!docsPath.includes('/sources/')) {

src/_data/catalog/destination_categories.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# AUTOGENERATED FROM PUBLIC API. DO NOT EDIT
2-
# destination categories last updated 2023-07-25
2+
# destination categories last updated 2023-07-27
33
items:
44
- display_name: A/B Testing
55
slug: a-b-testing

0 commit comments

Comments
 (0)