Skip to content

Commit 91c9503

Browse files
authored
Revert "[ci] release (#13427)" (#13448)
This reverts commit c64ae01.
1 parent c64ae01 commit 91c9503

42 files changed

Lines changed: 126 additions & 129 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.changeset/all-suns-report.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
'@astrojs/mdx': patch
3+
'@astrojs/markdown-remark': patch
4+
'astro': patch
5+
---
6+
7+
Upgrade to shiki v3

.changeset/bitter-rockets-pull.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'astro': minor
3+
---
4+
5+
Handle server.allowedHosts when the value is true without attempting to push it into an array.

.changeset/empty-cloths-sort.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'astro': patch
3+
---
4+
5+
Fixes a bug that caused some very large data stores to save incomplete data.

.changeset/free-icons-own.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@astrojs/sitemap': minor
3+
---
4+
5+
Add support for XSL in sitemap-index.xml

.changeset/ninety-cups-decide.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
'astro': patch
3+
---
4+
5+
Adds a new function called `insertPageRoute` to the Astro Container API.
6+
7+
The new function is useful when testing routes that, for some business logic, use `Astro.rewrite`.
8+
9+
For example, if you have a route `/blog/post` and for some business decision there's a rewrite to `/generic-error`, the container API implementation will look like this:
10+
11+
```js
12+
import Post from "../src/pages/Post.astro";
13+
import GenericError from "../src/pages/GenericError.astro";
14+
import { experimental_AstroContainer as AstroContainer } from "astro/container";
15+
16+
const container = await AstroContainer.create();
17+
container.insertPageRoute("/generic-error", GenericError);
18+
const result = await container.renderToString(Post);
19+
console.log(result) // this should print the response from GenericError.astro
20+
```
21+
22+
This new method only works for page routes, which means that endpoints aren't supported.

.changeset/ten-tips-share.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'astro': patch
3+
---
4+
5+
Fixes a bug that caused the `astro add` command to ignore the `--yes` flag for third-party integrations

.changeset/true-moose-report.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'astro': patch
3+
---
4+
5+
Prevent bad value in x-forwarded-host from crashing request

.changeset/wide-carrots-dream.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'astro': patch
3+
---
4+
5+
Fix an issue in the Container API, where the `renderToString` function doesn't render adequately nested slots when they are components.

examples/basics/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
"astro": "astro"
1111
},
1212
"dependencies": {
13-
"astro": "^5.6.0"
13+
"astro": "^5.5.2"
1414
}
1515
}

examples/blog/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
"astro": "astro"
1111
},
1212
"dependencies": {
13-
"@astrojs/mdx": "^4.2.1",
13+
"@astrojs/mdx": "^4.2.0",
1414
"@astrojs/rss": "^4.0.11",
15-
"@astrojs/sitemap": "^3.3.0",
16-
"astro": "^5.6.0"
15+
"@astrojs/sitemap": "^3.2.1",
16+
"astro": "^5.5.2"
1717
}
1818
}

0 commit comments

Comments
 (0)