Skip to content

Commit b5ee68f

Browse files
authored
Merge pull request #699 from PaperMC/chore/deps
chore: bump dependencies
2 parents edb55c9 + cb6e3f6 commit b5ee68f

File tree

8 files changed

+830
-858
lines changed

8 files changed

+830
-858
lines changed

package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -13,36 +13,36 @@
1313
},
1414
"dependencies": {
1515
"@ascorbic/feed-loader": "^2.0.1",
16-
"@astrojs/markdown-remark": "^6.3.8",
17-
"@astrojs/starlight": "^0.36.1",
18-
"@astrojs/svelte": "^7.2.0",
19-
"@expressive-code/plugin-collapsible-sections": "^0.41.3",
20-
"@expressive-code/plugin-line-numbers": "^0.41.3",
16+
"@astrojs/markdown-remark": "^6.3.10",
17+
"@astrojs/starlight": "^0.37.1",
18+
"@astrojs/svelte": "^7.2.4",
19+
"@expressive-code/plugin-collapsible-sections": "^0.41.5",
20+
"@expressive-code/plugin-line-numbers": "^0.41.5",
2121
"@fontsource/jetbrains-mono": "^5.2.8",
2222
"@fontsource/poppins": "^5.2.7",
23-
"astro": "^5.14.7",
23+
"astro": "^5.16.6",
2424
"astro-d2": "^0.8.1",
25-
"sharp": "^0.34.4",
26-
"starlight-contributor-list": "^0.3.0",
27-
"starlight-links-validator": "^0.19.0",
25+
"sharp": "^0.34.5",
26+
"starlight-contributor-list": "^0.3.1",
27+
"starlight-links-validator": "^0.19.2",
2828
"starlight-sidebar-topics": "^0.6.2",
29-
"starlight-sidebar-topics-dropdown": "^0.5.1",
30-
"svelte": "^5.41.1",
29+
"starlight-sidebar-topics-dropdown": "^0.5.2",
30+
"svelte": "^5.46.0",
3131
"typescript": "^5.9.3",
3232
"unist-util-visit": "^5.0.0",
33-
"yaml": "^2.8.1"
33+
"yaml": "^2.8.2"
3434
},
3535
"devDependencies": {
3636
"@types/mdast": "^4.0.4",
37-
"@types/node": "^24.9.0",
37+
"@types/node": "^25.0.3",
3838
"dead-or-alive": "^1.0.4",
39-
"prettier": "3.6.2",
39+
"prettier": "3.7.4",
4040
"prettier-plugin-astro": "0.14.1",
4141
"prettier-plugin-organize-imports": "^4.3.0",
42-
"prettier-plugin-svelte": "^3.4.0"
42+
"prettier-plugin-svelte": "^3.4.1"
4343
},
4444
"engines": {
4545
"node": ">=22.x"
4646
},
47-
"packageManager": "pnpm@10.18.3+sha512.bbd16e6d7286fd7e01f6b3c0b3c932cda2965c06a908328f74663f10a9aea51f1129eea615134bf992831b009eabe167ecb7008b597f40ff9bc75946aadfb08d"
47+
"packageManager": "pnpm@10.26.1+sha512.664074abc367d2c9324fdc18037097ce0a8f126034160f709928e9e9f95d98714347044e5c3164d65bd5da6c59c6be362b107546292a8eecb7999196e5ce58fa"
4848
}

pnpm-lock.yaml

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

pnpm-workspace.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
patchedDependencies:
2-
'@astrojs/starlight@0.36.1': patches/@astrojs__starlight@0.36.1.patch
2+
'@astrojs/starlight@0.37.1': patches/@astrojs__starlight@0.37.1.patch
33

44
onlyBuiltDependencies:
55
- esbuild

src/content/docs/adventure/serializer/ansi.mdx

Lines changed: 1 addition & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ slug: adventure/serializer/ansi
44
description: Serializing components to ANSI.
55
---
66

7-
import { TabItem, Tabs } from "@astrojs/starlight/components";
87
import Dependency from "/src/components/Dependency.astro";
98
import { LATEST_ANSI_RELEASE, LATEST_ADVENTURE_API_RELEASE } from "/src/utils/versions";
109

@@ -58,40 +57,7 @@ converter for any kind of component, not just those by Adventure.
5857

5958
Declaring the dependency:
6059

61-
{/* TODO: Replace with Dependency component */}
62-
<Tabs syncKey="build-system">
63-
<TabItem label="Gradle (Kotlin)">
64-
```kts replace
65-
repositories {
66-
mavenCentral()
67-
}
68-
69-
dependencies {
70-
implementation("net.kyori:ansi:\{LATEST_ANSI_RELEASE}")
71-
}
72-
```
73-
</TabItem>
74-
<TabItem label="Gradle (Groovy)">
75-
```groovy replace
76-
repositories {
77-
mavenCentral()
78-
}
79-
80-
dependencies {
81-
implementation 'net.kyori:ansi:\{LATEST_ANSI_RELEASE}'
82-
}
83-
```
84-
</TabItem>
85-
<TabItem label="Maven">
86-
```xml replace
87-
<dependency>
88-
<groupId>net.kyori</groupId>
89-
<artifactId>ansi/artifactId>
90-
<version>\{LATEST_ANSI_RELEASE}</version>
91-
</dependency>
92-
```
93-
</TabItem>
94-
</Tabs>
60+
<Dependency group="net.kyori" name="ansi" version={LATEST_ANSI_RELEASE} />
9561

9662
### Implementation usage
9763

src/content/docs/adventure/serializer/gson.mdx

Lines changed: 3 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ slug: adventure/serializer/gson
44
description: Serializing components to JSON with Gson.
55
---
66

7-
import { TabItem, Tabs } from "@astrojs/starlight/components";
7+
import Dependency from "/src/components/Dependency.astro";
8+
import { LATEST_ADVENTURE_API_RELEASE } from "/src/utils/versions";
89

910
The Gson text serializer converts chat components to their JSON representation
1011
and back using the Gson library. If you are interested in sending a chat component
@@ -17,40 +18,7 @@ component from an external source - serialization is done automatically by the
1718

1819
Declaring the dependency:
1920

20-
{/* TODO: Replace with Dependency component */}
21-
<Tabs syncKey="build-system">
22-
<TabItem label="Gradle (Kotlin)">
23-
```kts replace
24-
repositories {
25-
mavenCentral()
26-
}
27-
28-
dependencies {
29-
implementation("net.kyori:adventure-text-serializer-gson:\{LATEST_ADVENTURE_API_RELEASE}")
30-
}
31-
```
32-
</TabItem>
33-
<TabItem label="Gradle (Groovy)">
34-
```groovy replace
35-
repositories {
36-
mavenCentral()
37-
}
38-
39-
dependencies {
40-
implementation 'net.kyori:adventure-text-serializer-gson:\{LATEST_ADVENTURE_API_RELEASE}'
41-
}
42-
```
43-
</TabItem>
44-
<TabItem label="Maven">
45-
```xml replace
46-
<dependency>
47-
<groupId>net.kyori</groupId>
48-
<artifactId>adventure-text-serializer-gson</artifactId>
49-
<version>\{LATEST_ADVENTURE_API_RELEASE}</version>
50-
</dependency>
51-
```
52-
</TabItem>
53-
</Tabs>
21+
<Dependency group="net.kyori" name="adventure-text-serializer-gson" version={LATEST_ADVENTURE_API_RELEASE} />
5422

5523
## Usage
5624

src/content/docs/adventure/serializer/legacy.mdx

Lines changed: 3 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ slug: adventure/serializer/legacy
44
description: (Deprecated) Serializing components to legacy format.
55
---
66

7-
import { TabItem, Tabs } from "@astrojs/starlight/components";
7+
import Dependency from "/src/components/Dependency.astro";
8+
import { LATEST_ADVENTURE_API_RELEASE } from "/src/utils/versions";
89

910
The legacy text serializer converts text to and from the traditional chat format used
1011
in Minecraft prior to Minecraft 1.7, and continues to be used to this day for its
@@ -19,40 +20,7 @@ using [MiniMessage](/adventure/minimessage).
1920

2021
Declaring the dependency:
2122

22-
{/* TODO: Replace with Dependency component */}
23-
<Tabs syncKey="build-system">
24-
<TabItem label="Gradle (Kotlin)">
25-
```kts replace
26-
repositories {
27-
mavenCentral()
28-
}
29-
30-
dependencies {
31-
implementation("net.kyori:adventure-text-serializer-legacy:\{LATEST_ADVENTURE_API_RELEASE}")
32-
}
33-
```
34-
</TabItem>
35-
<TabItem label="Gradle (Groovy)">
36-
```groovy replace
37-
repositories {
38-
mavenCentral()
39-
}
40-
41-
dependencies {
42-
implementation 'net.kyori:adventure-text-serializer-legacy:\{LATEST_ADVENTURE_API_RELEASE}'
43-
}
44-
```
45-
</TabItem>
46-
<TabItem label="Maven">
47-
```xml replace
48-
<dependency>
49-
<groupId>net.kyori</groupId>
50-
<artifactId>adventure-text-serializer-legacy</artifactId>
51-
<version>\{LATEST_ADVENTURE_API_RELEASE}</version>
52-
</dependency>
53-
```
54-
</TabItem>
55-
</Tabs>
23+
<Dependency group="net.kyori" name="adventure-text-serializer-legacy" version={LATEST_ADVENTURE_API_RELEASE} />
5624

5725
## Usage
5826

src/content/docs/adventure/serializer/plain.mdx

Lines changed: 3 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ slug: adventure/serializer/plain
44
description: Retrieving plain text content from components.
55
---
66

7-
import { TabItem, Tabs } from "@astrojs/starlight/components";
7+
import Dependency from "/src/components/Dependency.astro";
8+
import { LATEST_ADVENTURE_API_RELEASE } from "/src/utils/versions";
89

910
The plain text serializer converts chat components to their plain-text representation
1011
and back. It is thus the simplest text serializer in Adventure. This serializer is
@@ -18,40 +19,7 @@ consider using [MiniMessage](/adventure/minimessage).
1819

1920
Declaring the dependency:
2021

21-
{/* TODO: Replace with Dependency component */}
22-
<Tabs syncKey="build-system">
23-
<TabItem label="Gradle (Kotlin)">
24-
```kts replace
25-
repositories {
26-
mavenCentral()
27-
}
28-
29-
dependencies {
30-
implementation("net.kyori:adventure-text-serializer-plain:\{LATEST_ADVENTURE_API_RELEASE}")
31-
}
32-
```
33-
</TabItem>
34-
<TabItem label="Gradle (Groovy)">
35-
```groovy replace
36-
repositories {
37-
mavenCentral()
38-
}
39-
40-
dependencies {
41-
implementation 'net.kyori:adventure-text-serializer-plain:\{LATEST_ADVENTURE_API_RELEASE}'
42-
}
43-
```
44-
</TabItem>
45-
<TabItem label="Maven">
46-
```xml replace
47-
<dependency>
48-
<groupId>net.kyori</groupId>
49-
<artifactId>adventure-text-serializer-plain</artifactId>
50-
<version>\{LATEST_ADVENTURE_API_RELEASE}</version>
51-
</dependency>
52-
```
53-
</TabItem>
54-
</Tabs>
22+
<Dependency group="net.kyori" name="adventure-text-serializer-plain" version={LATEST_ADVENTURE_API_RELEASE} />
5523

5624
## Usage
5725

0 commit comments

Comments
 (0)