Skip to content

Commit 9ace483

Browse files
markzegarelliJasonSooterforstisabelladependabot[bot]
authored
Fix regional-supporting connections table (#2542)
* fix(content): remove inaccurate hourly sync note Action taken based on Slack thread with Personas team: - https://segment.slack.com/archives/C7F3N3RV4/p1645832290653749?thread_ts=1643117377.166500&cid=C7F3N3RV4 * fix(content): modify info note to clarify initial vs. frequency * Bump nokogiri from 1.12.5 to 1.13.3 (#2540) Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.12.5 to 1.13.3. - [Release notes](https://github.com/sparklemotion/nokogiri/releases) - [Changelog](https://github.com/sparklemotion/nokogiri/blob/main/CHANGELOG.md) - [Commits](sparklemotion/nokogiri@v1.12.5...v1.13.3) --- updated-dependencies: - dependency-name: nokogiri dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * regen list of destinations Co-authored-by: Jason Sooter <[email protected]> Co-authored-by: Jason Sooter <[email protected]> Co-authored-by: forstisabella <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent ef58284 commit 9ace483

File tree

9 files changed

+2111
-62
lines changed

9 files changed

+2111
-62
lines changed

Gemfile.lock

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,14 @@ GEM
102102
rb-fsevent (~> 0.10, >= 0.10.3)
103103
rb-inotify (~> 0.9, >= 0.9.10)
104104
mercenary (0.4.0)
105+
mini_portile2 (2.8.0)
105106
multipart-post (2.1.1)
106-
nokogiri (1.12.5-x86_64-darwin)
107+
nokogiri (1.13.3)
108+
mini_portile2 (~> 2.8.0)
107109
racc (~> 1.4)
108-
nokogiri (1.12.5-x86_64-linux)
110+
nokogiri (1.13.3-x86_64-darwin)
111+
racc (~> 1.4)
112+
nokogiri (1.13.3-x86_64-linux)
109113
racc (~> 1.4)
110114
pathutil (0.16.2)
111115
forwardable-extended (~> 2.6)

scripts/catalog_papi.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ const updateSources = async () => {
296296

297297
// output = "# AUTOGENERATED LIST OF CONNECTIONS THAT SUPPORT REGIONAL\n"
298298
// output += "# Last updated " + todayDate + " \n";
299-
output += yaml.dump({
299+
output = yaml.dump({
300300
sources: regionalSourcesUpdated
301301
}, options)
302302
fs.appendFileSync(path.resolve(__dirname, `../src/_data/catalog/regional-supported.yml`), output);
@@ -552,7 +552,7 @@ const updateWarehouses = async () => {
552552
fs.writeFileSync(path.resolve(__dirname,`../src/_data/catalog/regional-supported.yml`),output);
553553
console.log("warehouses done")
554554
}
555-
updateSources()
556555
updateWarehouses()
556+
updateSources()
557557
updateDestinations()
558558

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 2022-02-23
2+
# destination categories last updated 2022-02-28
33
items:
44
- display_name: A/B Testing
55
slug: a-b-testing

src/_data/catalog/destinations.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 data last updated 2022-02-23
2+
# destination data last updated 2022-02-28
33
items:
44
- destination_id: 60b5d0a01f3726b85dc05aab
55
display_name: 2mee

0 commit comments

Comments
 (0)