Skip to content

Commit e75b092

Browse files
[ci] release
1 parent 6a56d1b commit e75b092

File tree

8 files changed

+49
-50
lines changed

8 files changed

+49
-50
lines changed

.changeset/calm-cobras-breathe.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

.changeset/red-monkeys-tickle.md

Lines changed: 0 additions & 32 deletions
This file was deleted.

examples/basics/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"astro": "astro"
1212
},
1313
"dependencies": {
14-
"@astrojs/starlight": "^0.32.6",
14+
"@astrojs/starlight": "^0.33.0",
1515
"astro": "^5.5.3",
1616
"sharp": "^0.32.5"
1717
}

examples/markdoc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
},
1313
"dependencies": {
1414
"@astrojs/markdoc": "^0.12.4",
15-
"@astrojs/starlight": "^0.32.6",
15+
"@astrojs/starlight": "^0.33.0",
1616
"@astrojs/starlight-markdoc": "^0.3.0",
1717
"astro": "^5.5.3",
1818
"sharp": "^0.32.5"

examples/tailwind/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"astro": "astro"
1212
},
1313
"dependencies": {
14-
"@astrojs/starlight": "^0.32.6",
14+
"@astrojs/starlight": "^0.33.0",
1515
"@astrojs/starlight-tailwind": "^3.0.1",
1616
"@astrojs/tailwind": "^5.1.4",
1717
"astro": "^5.5.3",

packages/starlight/CHANGELOG.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,47 @@
11
# @astrojs/starlight
22

3+
## 0.33.0
4+
5+
### Minor Changes
6+
7+
- [#3026](https://github.com/withastro/starlight/pull/3026) [`82deb84`](https://github.com/withastro/starlight/commit/82deb847418aedb9c01e05bb9de4b9bd10a1a885) Thanks [@HiDeoo](https://github.com/HiDeoo)! - Fixes a potential list styling issue if the last element of a list item is a `<script>` tag.
8+
9+
⚠️ BREAKING CHANGE:
10+
11+
This release drops official support for Chromium-based browsers prior to version 105 (released 30 August 2022) and Firefox-based browsers prior to version 121 (released 19 December 2023). You can find a list of currently supported browsers and their versions using this [browserslist query](https://browsersl.ist/#q=%3E+0.5%25%2C+not+dead%2C+Chrome+%3E%3D+105%2C+Edge+%3E%3D+105%2C+Firefox+%3E%3D+121%2C+Safari+%3E%3D+15.4%2C+iOS+%3E%3D+15.4%2C+not+op_mini+all).
12+
13+
With this release, Starlight-generated sites will still work fine on those older browsers except for this small detail in list item styling, but future releases may introduce further breaking changes for impacted browsers, including in patch releases.
14+
15+
- [#2924](https://github.com/withastro/starlight/pull/2924) [`6a56d1b`](https://github.com/withastro/starlight/commit/6a56d1b80d9d67e63e930177cf085a25864e1952) Thanks [@HiDeoo](https://github.com/HiDeoo)! - ⚠️ **BREAKING CHANGE:** Ensures that the `<Badge>` and `<Icon>` components no longer render with a trailing space.
16+
17+
In Astro, components that include styles render with a trailing space which can prevent some use cases from working as expected, e.g. when using such components inlined with text. This change ensures that the `<Badge>` and `<Icon>` components no longer render with a trailing space.
18+
19+
If you were previously relying on that implementation detail, you may need to update your code to account for this change. For example, considering the following code:
20+
21+
```mdx
22+
<Badge text="New" />
23+
Feature
24+
```
25+
26+
The rendered text would previously include a space between the badge and the text due to the trailing space automatically added by the component:
27+
28+
```
29+
New Feature
30+
```
31+
32+
Such code will now render the badge and text without a space:
33+
34+
```
35+
NewFeature
36+
```
37+
38+
To fix this, you can add a space between the badge and the text:
39+
40+
```diff
41+
- <Badge text="New" />Feature
42+
+ <Badge text="New" /> Feature
43+
```
44+
345
## 0.32.6
446

547
### Patch Changes

packages/starlight/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@astrojs/starlight",
3-
"version": "0.32.6",
3+
"version": "0.33.0",
44
"description": "Build beautiful, high-performance documentation websites with Astro",
55
"scripts": {
66
"test": "vitest",

pnpm-lock.yaml

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

0 commit comments

Comments
 (0)