-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
484 changed files
with
9,596 additions
and
3,870 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@astrojs/mdx': patch | ||
--- | ||
|
||
Fixes stack trace location when failed to parse an MDX file with frontmatter |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
'astro': major | ||
--- | ||
|
||
Refactor the exported types from the `astro` module. There should normally be no breaking changes, but if you relied on some previously deprecated types, these might now have been fully removed. | ||
|
||
In most cases, updating your code to move away from previously deprecated APIs in previous versions of Astro should be enough to fix any issues. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
--- | ||
'astro': major | ||
--- | ||
|
||
Fixes attribute rendering for non-[boolean HTML attributes](https://developer.mozilla.org/en-US/docs/Glossary/Boolean/HTML) with boolean values to match proper attribute handling in browsers. | ||
|
||
Previously, non-boolean attributes may not have included their values when rendered to HTML. In Astro v5.0, the values are now explicitly rendered as `="true"` or `="false"` | ||
|
||
In the following `.astro` examples, only `allowfullscreen` is a boolean attribute: | ||
|
||
```astro | ||
<!-- src/pages/index.astro --> | ||
<!-- `allowfullscreen` is a boolean attribute --> | ||
<p allowfullscreen={true}></p> | ||
<p allowfullscreen={false}></p> | ||
<!-- `inherit` is *not* a boolean attribute --> | ||
<p inherit={true}></p> | ||
<p inherit={false}></p> | ||
<!-- `data-*` attributes are not boolean attributes --> | ||
<p data-light={true}></p> | ||
<p data-light={false}></p> | ||
``` | ||
|
||
Astro v5.0 now preserves the full data attribute with its value when rendering the HTML of non-boolean attributes: | ||
|
||
```diff | ||
<p allowfullscreen></p> | ||
<p></p> | ||
|
||
<p inherit="true"></p> | ||
- <p inherit></p> | ||
+ <p inherit="false"></p> | ||
|
||
- <p data-light></p> | ||
+ <p data-light="true"></p> | ||
- <p></p> | ||
+ <p data-light="false"></p> | ||
``` | ||
|
||
If you rely on attribute values, for example to locate elements or to conditionally render, update your code to match the new non-boolean attribute values: | ||
|
||
```diff | ||
- el.getAttribute('inherit') === '' | ||
+ el.getAttribute('inherit') === 'false' | ||
|
||
- el.hasAttribute('data-light') | ||
+ el.dataset.light === 'true' | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'astro': patch | ||
--- | ||
|
||
Simplifies path operations of `astro sync` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
import fs from 'node:fs/promises'; | ||
import { loremIpsumMd } from './_util.js'; | ||
|
||
/** | ||
* @param {URL} projectDir | ||
*/ | ||
export async function run(projectDir) { | ||
await fs.rm(projectDir, { recursive: true, force: true }); | ||
await fs.mkdir(new URL('./src/pages/blog', projectDir), { recursive: true }); | ||
await fs.mkdir(new URL('./src/content/blog', projectDir), { recursive: true }); | ||
await fs.copyFile(new URL('./image.jpg', import.meta.url), new URL('./src/image.jpg', projectDir)); | ||
|
||
const promises = []; | ||
|
||
|
||
for (let i = 0; i < 10000; i++) { | ||
const content = `\ | ||
# Article ${i} | ||
${loremIpsumMd} | ||
![image ${i}](../../image.jpg) | ||
`; | ||
promises.push( | ||
fs.writeFile(new URL(`./src/content/blog/article-${i}.md`, projectDir), content, 'utf-8') | ||
); | ||
} | ||
|
||
|
||
await fs.writeFile( | ||
new URL(`./src/pages/blog/[...slug].astro`, projectDir), | ||
`\ | ||
--- | ||
import { getCollection } from 'astro:content'; | ||
export async function getStaticPaths() { | ||
const blogEntries = await getCollection('blog'); | ||
return blogEntries.map(entry => ({ | ||
params: { slug: entry.slug }, props: { entry }, | ||
})); | ||
} | ||
const { entry } = Astro.props; | ||
const { Content } = await entry.render(); | ||
--- | ||
<h1>{entry.data.title}</h1> | ||
<Content /> | ||
`, | ||
'utf-8' | ||
); | ||
|
||
await Promise.all(promises); | ||
|
||
await fs.writeFile( | ||
new URL('./astro.config.js', projectDir), | ||
`\ | ||
import { defineConfig } from 'astro/config'; | ||
export default defineConfig({ | ||
});`, | ||
'utf-8' | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
import fs from 'node:fs/promises'; | ||
import { loremIpsumMd } from './_util.js'; | ||
|
||
/** | ||
* @param {URL} projectDir | ||
*/ | ||
export async function run(projectDir) { | ||
await fs.rm(projectDir, { recursive: true, force: true }); | ||
await fs.mkdir(new URL('./src/pages/blog', projectDir), { recursive: true }); | ||
await fs.mkdir(new URL('./data/blog', projectDir), { recursive: true }); | ||
await fs.mkdir(new URL('./src/content', projectDir), { recursive: true }); | ||
await fs.copyFile(new URL('./image.jpg', import.meta.url), new URL('./image.jpg', projectDir)); | ||
|
||
const promises = []; | ||
|
||
for (let i = 0; i < 10000; i++) { | ||
const content = `\ | ||
# Article ${i} | ||
${loremIpsumMd} | ||
![image ${i}](../../image.jpg) | ||
`; | ||
promises.push( | ||
fs.writeFile(new URL(`./data/blog/article-${i}.md`, projectDir), content, 'utf-8') | ||
); | ||
} | ||
|
||
await fs.writeFile( | ||
new URL(`./src/content/config.ts`, projectDir), | ||
/*ts */ ` | ||
import { defineCollection, z } from 'astro:content'; | ||
import { glob } from 'astro/loaders'; | ||
const blog = defineCollection({ | ||
loader: glob({ pattern: '*', base: './data/blog' }), | ||
}); | ||
export const collections = { blog } | ||
` | ||
); | ||
|
||
await fs.writeFile( | ||
new URL(`./src/pages/blog/[...slug].astro`, projectDir), | ||
`\ | ||
--- | ||
import { getCollection, render } from 'astro:content'; | ||
export async function getStaticPaths() { | ||
const blogEntries = await getCollection('blog'); | ||
return blogEntries.map(entry => ({ | ||
params: { slug: entry.id }, props: { entry }, | ||
})); | ||
} | ||
const { entry } = Astro.props; | ||
const { Content } = await render(entry); | ||
--- | ||
<h1>{entry.data.title}</h1> | ||
<Content /> | ||
`, | ||
'utf-8' | ||
); | ||
|
||
await Promise.all(promises); | ||
|
||
await fs.writeFile( | ||
new URL('./astro.config.js', projectDir), | ||
`\ | ||
import { defineConfig } from 'astro/config'; | ||
export default defineConfig({ | ||
experimental: { | ||
contentLayer: true | ||
} | ||
});`, | ||
'utf-8' | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
import fs from 'node:fs/promises'; | ||
import { loremIpsumMd } from './_util.js'; | ||
|
||
/** | ||
* @param {URL} projectDir | ||
*/ | ||
export async function run(projectDir) { | ||
await fs.rm(projectDir, { recursive: true, force: true }); | ||
await fs.mkdir(new URL('./src/pages/blog', projectDir), { recursive: true }); | ||
await fs.mkdir(new URL('./src/content/blog', projectDir), { recursive: true }); | ||
await fs.copyFile(new URL('./image.jpg', import.meta.url), new URL('./src/image.jpg', projectDir)); | ||
|
||
const promises = []; | ||
|
||
|
||
for (let i = 0; i < 10000; i++) { | ||
const content = `\ | ||
# Article ${i} | ||
${loremIpsumMd} | ||
![image ${i}](../../image.jpg) | ||
`; | ||
promises.push( | ||
fs.writeFile(new URL(`./src/content/blog/article-${i}.mdx`, projectDir), content, 'utf-8') | ||
); | ||
} | ||
|
||
|
||
await fs.writeFile( | ||
new URL(`./src/pages/blog/[...slug].astro`, projectDir), | ||
`\ | ||
--- | ||
import { getCollection } from 'astro:content'; | ||
export async function getStaticPaths() { | ||
const blogEntries = await getCollection('blog'); | ||
return blogEntries.map(entry => ({ | ||
params: { slug: entry.slug }, props: { entry }, | ||
})); | ||
} | ||
const { entry } = Astro.props; | ||
const { Content } = await entry.render(); | ||
--- | ||
<h1>{entry.data.title}</h1> | ||
<Content /> | ||
`, | ||
'utf-8' | ||
); | ||
|
||
await Promise.all(promises); | ||
|
||
await fs.writeFile( | ||
new URL('./astro.config.js', projectDir), | ||
`\ | ||
import { defineConfig } from 'astro/config'; | ||
import mdx from '@astrojs/mdx'; | ||
export default defineConfig({ | ||
integrations: [mdx()], | ||
});`, | ||
'utf-8' | ||
); | ||
} |
Oops, something went wrong.