Skip to content

Commit 402c45b

Browse files
authored
Upgrade packages (#1402)
1 parent 7162c2a commit 402c45b

File tree

8 files changed

+1081
-1335
lines changed

8 files changed

+1081
-1335
lines changed

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515
"@astrojs/check": "^0.9.4",
1616
"@astrojs/mdx": "^4.3.0",
1717
"@astrojs/sitemap": "^3.4.1",
18-
"@astrojs/svelte": "^7.0.13",
18+
"@astrojs/svelte": "^7.1.0",
1919
"@astrojs/ts-plugin": "^1.10.4",
2020
"@fortawesome/fontawesome-free": "^6.7.2",
21-
"@nanostores/persistent": "^1.0.0",
21+
"@nanostores/persistent": "^1.1.0",
2222
"@tailwindcss/typography": "^0.5.16",
2323
"@tailwindcss/vite": "^4.1.11",
24-
"astro": "^5.8.0",
24+
"astro": "^5.11.0",
2525
"astro-compress": "^2.3.8",
2626
"astro-delete-unused-images": "^1.0.3",
2727
"astro-meta-tags": "^0.3.2",
@@ -41,16 +41,16 @@
4141
"rehype-slug": "^6.0.0",
4242
"remark-toc": "^9.0.0",
4343
"sharp": "^0.34.2",
44-
"svelte": "^5.34.9",
45-
"tailwindcss": "^4.1.8",
44+
"svelte": "^5.35.4",
45+
"tailwindcss": "^4.1.11",
4646
"typescript": "^5.8.3",
4747
"vite": "^6.3.5"
4848
},
4949
"devDependencies": {
5050
"@types/js-yaml": "^4.0.9",
51-
"prettier": "^3.5.3",
51+
"prettier": "^3.6.2",
5252
"prettier-plugin-astro": "^0.14.1",
53-
"puppeteer": "^24.9.0",
53+
"puppeteer": "^24.12.0",
5454
"tsx": "^4.20.3",
5555
"typescript": "^5.8.3"
5656
},

pnpm-lock.yaml

Lines changed: 1064 additions & 1320 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/GoogleCalendar.astro

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@ const mobileEmbedUrl = `https://calendar.google.com/calendar/embed?src=${encodeU
4343
src={embedUrl}
4444
class="hidden md:block w-full max-w-4xl rounded-lg shadow-lg border-0"
4545
style={`border: 0; width: ${width}px; height: ${height}px;`}
46-
frameborder="0"
47-
scrolling="no"
4846
title={title}
4947
loading="lazy"
5048
></iframe>
@@ -54,8 +52,6 @@ const mobileEmbedUrl = `https://calendar.google.com/calendar/embed?src=${encodeU
5452
src={mobileEmbedUrl}
5553
class="block md:hidden w-full rounded-lg shadow-lg border-0"
5654
style="height: 400px;"
57-
frameborder="0"
58-
scrolling="no"
5955
title={`${title} - Mobile View`}
6056
loading="lazy"
6157
></iframe>

src/components/SprintCard.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const { data, body } = sprint;
1616
// <a href={`/sprints/${slug}`} id={slug} class="text-blue-600 hover:text-blue-800 hover:underline"></a>
1717
---
1818

19-
<article class=`${data.draft?"draft2":""} sprint-card bg-white border border-gray-200 rounded-lg p-6 mb-8 shadow-sm hover:shadow-md transition-shadow duration-200` data-python-level={data.pythonLevel} data-room={data.room}>
19+
<article class=`${data.draft?"draft2":""} sprint-card bg-white border border-gray-200 rounded-lg p-6 mb-8 shadow-sm hover:shadow-md transition-shadow duration-200` data-python-level={data.pythonLevel} >
2020
<header class="mb-4">
2121
<h3 class="text-2xl font-semibold mb-2">
2222
{data.title}

src/components/sections/hero/hero.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ const action2 = "/sponsorship/sponsor/";
136136
alt="EuroPython 2025 Conference"
137137
layout='full-width'
138138
formats={['avif', 'webp', 'jpeg']}
139-
class="w-full max-w-5xl lg:max-w-full h-auto lg:h-full rounded-2xl shadow-xl"
139+
class="max-w-5xl lg:max-w-full h-auto lg:h-full rounded-2xl shadow-xl"
140140
loading="eager"
141141
priority={true}
142142
/>

src/content/pages/sprints_info.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,12 @@ To submit a project for the sprints, head to
3939
add your project as a markdown file in the folder `src/content/sprints`. Use the
4040
file `_sprints_template.md` as the template for your project file.
4141

42+
💡 **Quick tip:** You can quickly edit and prepare your changes directly in the
43+
browser using
44+
[github web-based editor](https://github.dev/EuroPython/website/blob/ep2025/src/content/sprints/_sprints_template.md).
45+
46+
Once your file is added, submit a Pull Request — and you're done!
47+
4248
<!-- ## Location of the sprints venue
4349
The Rajska Building (RB), [Žižkov Campus, VŠE](https://maps.app.goo.gl/azRTAczu8B5ma1XFA) (Prague University of Economics and Business) is the home of our sprints again this year.
4450

src/pages/api/media/sponsors/posts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { getCollection, getEntry } from "astro:content";
1+
import { getCollection } from "astro:content";
22
import type { APIRoute } from "astro";
33

44
export const GET: APIRoute = async () => {

src/pages/sprints.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const sprints = await getCollection("sprints", ({ data }) => {
2222
2323
---
2424

25-
<Layout title=`${entry.data.title}` description=`${entry.data.description}` toc=true>
25+
<Layout title=`${entry.data.title}` description=`${entry.data.subtitle}` toc=true>
2626

2727
<Markdown content={entry.body} />
2828
<div class="flex flex-wrap gap-8 justify-center my-8">

0 commit comments

Comments
 (0)