Skip to content

Commit 6091fa9

Browse files
committed
Merge remote-tracking branch 'origin/ep2025' into ep2025-speakers
2 parents 3eda497 + b05dd26 commit 6091fa9

37 files changed

+1430
-334
lines changed

.github/dependabot.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,15 @@ updates:
33
- package-ecosystem: "npm"
44
directory: "/"
55
schedule:
6-
interval: "weekly"
6+
interval: "monthly"
7+
groups:
8+
react-dependencies:
9+
patterns:
10+
- "react"
11+
- "react-dom"
12+
- "@types/react"
713

814
- package-ecosystem: "github-actions"
915
directory: "/"
1016
schedule:
11-
interval: "weekly"
17+
interval: "monthly"

astro.config.mjs

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import path from "path";
22
import { defineConfig } from "astro/config";
33
import mdx from "@astrojs/mdx";
4-
import { h } from "hastscript";
54
import sitemap from "@astrojs/sitemap";
65
import react from "@astrojs/react";
76
import tailwind from "@astrojs/tailwind";
@@ -45,24 +44,22 @@ export default defineConfig({
4544
[
4645
rehypeAutolinkHeadings,
4746
{
48-
behavior: "append",
49-
content() {
50-
return [h("span.heading-link", "#")];
51-
},
47+
behavior: "wrap",
5248
},
5349
],
5450
],
5551
},
5652
site: process.env.SITE_URL || "https://ep2025.europython.eu",
5753
redirects: {
5854
"/c-api-summit/": "/programme/c-api-summit/",
59-
"/programme/cfp/": "/programme/cfp/",
55+
"/cfp/": "/programme/cfp/",
6056
"/planning/": "https://forms.gle/riw6CvML8ck94A4V9",
6157
"/reviewers/": "https://forms.gle/4GTJjwZ1nHBGetM18",
6258
"/rust-summit/": "/programme/rust-summit/",
6359
"/sponsor/": "/sponsorship/sponsor/",
6460
"/voting/": "/programme/voting/",
6561
"/wasm-summit/": "/programme/wasm-summit/",
62+
"/sessions/": "/programme/sessions/",
6663
},
6764
integrations: [
6865
mdx(),
@@ -84,5 +81,6 @@ export default defineConfig({
8481
},
8582
experimental: {
8683
responsiveImages: true,
84+
svg: true,
8785
},
8886
});

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
"dependencies": {
1616
"@astro-community/astro-embed-youtube": "^0.5.6",
1717
"@astrojs/check": "^0.9.4",
18-
"@astrojs/mdx": "^4.2.1",
19-
"@astrojs/react": "^4.2.1",
18+
"@astrojs/mdx": "^4.2.3",
19+
"@astrojs/react": "^4.2.3",
2020
"@astrojs/sitemap": "^3.3.0",
2121
"@astrojs/tailwind": "^5.1.4",
2222
"@fontsource-variable/inter": "^5.1.1",
2323
"@tailwindcss/typography": "^0.5.16",
24-
"@types/react": "^19.0.12",
25-
"@types/react-dom": "^19.0.4",
24+
"@types/react": "^19.1.0",
25+
"@types/react-dom": "^19.1.1",
2626
"astro": "^5.1.6",
2727
"astro-delete-unused-images": "^1.0.3",
2828
"astro-meta-tags": "^0.3.1",
@@ -34,14 +34,14 @@
3434
"js-yaml": "^4.1.0",
3535
"marked": "^15.0.7",
3636
"pagefind": "^1.3.0",
37-
"react": "^19.0.0",
38-
"react-dom": "^19.0.0",
37+
"react": "^19.1.0",
38+
"react-dom": "^19.1.0",
3939
"rehype-autolink-headings": "^7.1.0",
4040
"rehype-slug": "^6.0.0",
4141
"remark-toc": "^9.0.0",
42-
"sharp": "^0.33.5",
42+
"sharp": "^0.34.0",
4343
"tailwindcss": "^3.4.17",
44-
"typescript": "^5.7.3"
44+
"typescript": "^5.8.3"
4545
},
4646
"devDependencies": {
4747
"@types/js-yaml": "^4.0.9",

0 commit comments

Comments
 (0)