Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
10 changes: 10 additions & 0 deletions conferences/2025/data.json
Original file line number Diff line number Diff line change
Expand Up @@ -685,6 +685,16 @@
"bluesky": "infoq.bsky.social",
"mastodon": "@infoq@techhub.social"
},
{
"name": "Data 2030 Summit",
"url": "https://data2030summit.com",

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[url] If a year is present in the URL, it should match the event start or end year

"startDate": "2025-10-21",
"endDate": "2025-10-22",
"city": "Stockholm",
"country": "Sweden",
"online": true,
"locales": "EN"
},
{
"name": "International PHP Conference Munich",
"url": "https://phpconference.com/munich",
Expand Down
6 changes: 6 additions & 0 deletions scripts/utils/checkConference.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,12 @@ export default function (year: string, conference: MergedConference, assertField
const year: number = parseInt(urlContainsYear[0]);
const eventStartYear: number = new Date(conference.startDate).getFullYear();
const diffInYears: number = Math.abs(year - eventStartYear);

// Special case for conferences with years in their brand name
if (conference.name.includes(urlContainsYear[0])) {
return; // Skip validation if the year in URL is part of the conference name
}

if (diffInYears == 0 || diffInYears > 5) {
return;
}
Expand Down