From 61b43258d6e97e59ee8f84b0c9a3531203e0a6b1 Mon Sep 17 00:00:00 2001 From: dukebody Date: Thu, 23 Jul 2026 07:00:56 +0200 Subject: [PATCH 1/2] fix(jobs): use Vite 8-compatible glob for job markdown Co-authored-by: Cursor --- src/components/JobsPage.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/JobsPage.astro b/src/components/JobsPage.astro index 28c4acb..99109be 100644 --- a/src/components/JobsPage.astro +++ b/src/components/JobsPage.astro @@ -12,7 +12,7 @@ const t = jobsTexts[(lang || 'es') as keyof typeof jobsTexts] const menuT = menuTexts[(lang || 'es') as keyof typeof menuTexts] const locale = (lang || 'es') as TLocale -const jobModules = Object.values(import.meta.glob('../data/jobs/!(_*).md', { eager: true })) as { +const jobModules = Object.values(import.meta.glob(['../data/jobs/*.md'], { eager: true })) as { frontmatter: IJob }[] From 113d33a8a7cca9b651443a5b8b618720de626bff Mon Sep 17 00:00:00 2001 From: Francesc Arpi Roca Date: Thu, 23 Jul 2026 07:17:23 +0200 Subject: [PATCH 2/2] chore: update version to 1.17.6 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4af761a..0291885 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "2026.es.pycon.org", - "version": "1.17.5", + "version": "1.17.6", "description": "", "main": "index.js", "scripts": {