[ci] release (#7714)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
b4090f8526
commit
92382ea1d4
49 changed files with 189 additions and 195 deletions
|
@ -1,15 +0,0 @@
|
|||
---
|
||||
'astro': minor
|
||||
---
|
||||
|
||||
Redirects configuration
|
||||
|
||||
This change moves the `redirects` configuration out of experimental. If you were previously using experimental redirects, remove the following experimental flag:
|
||||
|
||||
```js
|
||||
experimental: {
|
||||
redirects: true,
|
||||
}
|
||||
```
|
||||
|
||||
If you have been waiting for stabilization before using redirects, now you can do so. Check out [the docs on redirects](https://docs.astro.build/en/core-concepts/routing/#redirects) to learn how to use this built-in feature.
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'astro': patch
|
||||
---
|
||||
|
||||
Fix redirects map object-form value validation
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@astrojs/sitemap': patch
|
||||
---
|
||||
|
||||
Ensure nested 404 and 500 pages are always excluded
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'astro': patch
|
||||
---
|
||||
|
||||
Fix absolute path handling when passing `root`, `srcDir`, `publicDir`, `outDir`, `cacheDir`, `build.client`, and `build.server` configs in Windows
|
|
@ -1,30 +0,0 @@
|
|||
---
|
||||
'astro': minor
|
||||
---
|
||||
|
||||
Improved hoisted script bundling
|
||||
|
||||
Astro's static analysis to determine which `<script>` tags to bundle together just got a little smarter!
|
||||
|
||||
Astro create bundles that optimize script usage between pages and place them in the head of the document so that they are downloaded as early as possible. One limitation to Astro's existing approach has been that you could not dynamically use hoisted scripts. Each page received the same, all-inclusive bundle whether or not every script was needed on that page.
|
||||
|
||||
Now, Astro has improved the static analysis to take into account the actual imports used.
|
||||
|
||||
For example, Astro would previously bundle the `<script>`s from both the `<Tab>` and `<Accordian>` component for the following library that re-exports multiple components:
|
||||
|
||||
__@matthewp/my-astro-lib__
|
||||
|
||||
```js
|
||||
export { default as Tabs } from './Tabs.astro';
|
||||
export { default as Accordion } from './Accordion.astro';
|
||||
```
|
||||
|
||||
Now, when an Astro page only uses a single component, Astro will send only the necessary script to the page. A page that only imports the `<Accordian>` component will not receive any `<Tab>` component's scripts:
|
||||
|
||||
```astro
|
||||
---
|
||||
import { Accordion } from '@matthewp/my-astro-lib';
|
||||
---
|
||||
```
|
||||
|
||||
You should now see more efficient performance with Astro now supporting this common library re-export pattern.
|
|
@ -1,62 +0,0 @@
|
|||
---
|
||||
'astro': minor
|
||||
---
|
||||
|
||||
Built-in View Transitions Support (experimental)
|
||||
|
||||
Astro now supports [view transitions](https://developer.chrome.com/docs/web-platform/view-transitions/) through the new `<ViewTransitions />` component and the `transition:animate` (and associated) directives. View transitions are a great fit for content-oriented sites, and we see it as the best path to get the benefits of client-side routing (smoother transitions) without sacrificing the more simple mental model of MPAs.
|
||||
|
||||
Enable support for view transitions in Astro 2.9 by adding the experimental flag to your config:
|
||||
|
||||
```js
|
||||
import { defineConfig } from 'astro/config';
|
||||
|
||||
export default defineConfig({
|
||||
experimental: {
|
||||
viewTransitions: true,
|
||||
},
|
||||
})
|
||||
```
|
||||
|
||||
This enables you to use the new APIs added.
|
||||
|
||||
#### <ViewTransitions />
|
||||
|
||||
This is a component which acts as the *router* for transitions between pages. Add it to the `<head>` section of each individual page where transitions should occur *in the client* as you navigate away to another page, instead of causing a full page browser refresh. To enable support throughout your entire app, add the component in some common layout or component that targets the `<head>` of every page.
|
||||
|
||||
__CommonHead.astro__
|
||||
|
||||
```astro
|
||||
---
|
||||
import { ViewTransitions } from 'astro:transitions';
|
||||
---
|
||||
|
||||
<meta charset="utf-8">
|
||||
<title>{Astro.props.title}</title>
|
||||
<ViewTransitions />
|
||||
```
|
||||
|
||||
With only this change, your app will now route completely in-client. You can then add transitions to individual elements using the `transition:animate` directive.
|
||||
|
||||
#### Animations
|
||||
|
||||
Add `transition:animate` to any element to use Astro's built-in animations.
|
||||
|
||||
```astro
|
||||
<header transition:animate="slide">
|
||||
```
|
||||
|
||||
In the above, Astro's `slide` animation will cause the `<header>` element to slide out to the left, and then slide in from the right when you navigate away from the page.
|
||||
|
||||
You can also customize these animations using any CSS animation properties, for example, by specifying a duration:
|
||||
|
||||
```astro
|
||||
---
|
||||
import { slide } from 'astro:transition';
|
||||
---
|
||||
<header transition:animate={slide({ duration: 200 })}>
|
||||
```
|
||||
|
||||
#### Continue learning
|
||||
|
||||
Check out the [client-side routing docs](https://docs.astro.build/en/guides/client-side-routing/) to learn more.
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'astro': patch
|
||||
---
|
||||
|
||||
Update warning when `getStaticPaths` is detected but a route is not prerendered.
|
|
@ -11,6 +11,6 @@
|
|||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"astro": "^2.8.5"
|
||||
"astro": "^2.9.0"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
"dependencies": {
|
||||
"@astrojs/mdx": "^0.19.7",
|
||||
"@astrojs/rss": "^2.4.3",
|
||||
"@astrojs/sitemap": "^2.0.0",
|
||||
"astro": "^2.8.5"
|
||||
"@astrojs/sitemap": "^2.0.1",
|
||||
"astro": "^2.9.0"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
],
|
||||
"scripts": {},
|
||||
"devDependencies": {
|
||||
"astro": "^2.8.5"
|
||||
"astro": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"astro": "^2.0.0-beta.0"
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"astro": "^2.8.5"
|
||||
"astro": "^2.9.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@astrojs/deno": "^4.2.0"
|
||||
|
|
|
@ -14,6 +14,6 @@
|
|||
"@astrojs/alpinejs": "^0.2.2",
|
||||
"@types/alpinejs": "^3.7.1",
|
||||
"alpinejs": "^3.12.2",
|
||||
"astro": "^2.8.5"
|
||||
"astro": "^2.9.0"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
"dependencies": {
|
||||
"@astrojs/lit": "^2.1.0",
|
||||
"@webcomponents/template-shadowroot": "^0.2.1",
|
||||
"astro": "^2.8.5",
|
||||
"astro": "^2.9.0",
|
||||
"lit": "^2.7.5"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
"@astrojs/solid-js": "^2.2.0",
|
||||
"@astrojs/svelte": "^3.1.0",
|
||||
"@astrojs/vue": "^2.2.1",
|
||||
"astro": "^2.8.5",
|
||||
"astro": "^2.9.0",
|
||||
"preact": "^10.15.1",
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0",
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
"dependencies": {
|
||||
"@astrojs/preact": "^2.2.1",
|
||||
"@preact/signals": "^1.1.3",
|
||||
"astro": "^2.8.5",
|
||||
"astro": "^2.9.0",
|
||||
"preact": "^10.15.1"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
"@astrojs/react": "^2.2.1",
|
||||
"@types/react": "^18.2.13",
|
||||
"@types/react-dom": "^18.2.6",
|
||||
"astro": "^2.8.5",
|
||||
"astro": "^2.9.0",
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0"
|
||||
}
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@astrojs/solid-js": "^2.2.0",
|
||||
"astro": "^2.8.5",
|
||||
"astro": "^2.9.0",
|
||||
"solid-js": "^1.7.6"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@astrojs/svelte": "^3.1.0",
|
||||
"astro": "^2.8.5",
|
||||
"astro": "^2.9.0",
|
||||
"svelte": "^3.59.1"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@astrojs/vue": "^2.2.1",
|
||||
"astro": "^2.8.5",
|
||||
"astro": "^2.9.0",
|
||||
"vue": "^3.3.4"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -12,6 +12,6 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@astrojs/node": "^5.3.0",
|
||||
"astro": "^2.8.5"
|
||||
"astro": "^2.9.0"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
],
|
||||
"scripts": {},
|
||||
"devDependencies": {
|
||||
"astro": "^2.8.5"
|
||||
"astro": "^2.9.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"astro": "^2.0.0-beta.0"
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@astrojs/node": "^5.3.0",
|
||||
"astro": "^2.8.5",
|
||||
"astro": "^2.9.0",
|
||||
"html-minifier": "^4.0.0"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -11,6 +11,6 @@
|
|||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"astro": "^2.8.5"
|
||||
"astro": "^2.9.0"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -11,6 +11,6 @@
|
|||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"astro": "^2.8.5"
|
||||
"astro": "^2.9.0"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -11,6 +11,6 @@
|
|||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"astro": "^2.8.5"
|
||||
"astro": "^2.9.0"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
"dependencies": {
|
||||
"@astrojs/node": "^5.3.0",
|
||||
"@astrojs/svelte": "^3.1.0",
|
||||
"astro": "^2.8.5",
|
||||
"astro": "^2.9.0",
|
||||
"svelte": "^3.59.1"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -12,6 +12,6 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@astrojs/markdoc": "^0.4.3",
|
||||
"astro": "^2.8.5"
|
||||
"astro": "^2.9.0"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@astrojs/markdown-remark": "^2.2.1",
|
||||
"astro": "^2.8.5",
|
||||
"astro": "^2.9.0",
|
||||
"hast-util-select": "^5.0.5",
|
||||
"rehype-autolink-headings": "^6.1.1",
|
||||
"rehype-slug": "^5.1.0",
|
||||
|
|
|
@ -11,6 +11,6 @@
|
|||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"astro": "^2.8.5"
|
||||
"astro": "^2.9.0"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
"dependencies": {
|
||||
"@astrojs/mdx": "^0.19.7",
|
||||
"@astrojs/preact": "^2.2.1",
|
||||
"astro": "^2.8.5",
|
||||
"astro": "^2.9.0",
|
||||
"preact": "^10.15.1"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
"dependencies": {
|
||||
"@astrojs/preact": "^2.2.1",
|
||||
"@nanostores/preact": "^0.4.1",
|
||||
"astro": "^2.8.5",
|
||||
"astro": "^2.9.0",
|
||||
"nanostores": "^0.8.1",
|
||||
"preact": "^10.15.1"
|
||||
}
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
"@astrojs/mdx": "^0.19.7",
|
||||
"@astrojs/tailwind": "^4.0.0",
|
||||
"@types/canvas-confetti": "^1.6.0",
|
||||
"astro": "^2.8.5",
|
||||
"astro": "^2.9.0",
|
||||
"autoprefixer": "^10.4.14",
|
||||
"canvas-confetti": "^1.6.0",
|
||||
"postcss": "^8.4.24",
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"astro": "^2.8.5",
|
||||
"astro": "^2.9.0",
|
||||
"vite-plugin-pwa": "0.14.7",
|
||||
"workbox-window": "^6.6.0"
|
||||
}
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
"test": "vitest"
|
||||
},
|
||||
"dependencies": {
|
||||
"astro": "^2.8.5",
|
||||
"astro": "^2.9.0",
|
||||
"vitest": "^0.31.4"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,5 +1,116 @@
|
|||
# astro
|
||||
|
||||
## 2.9.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- [#7686](https://github.com/withastro/astro/pull/7686) [`ec745d689`](https://github.com/withastro/astro/commit/ec745d689abc79d27bc24477589533481f077ddb) Thanks [@matthewp](https://github.com/matthewp)! - Redirects configuration
|
||||
|
||||
This change moves the `redirects` configuration out of experimental. If you were previously using experimental redirects, remove the following experimental flag:
|
||||
|
||||
```js
|
||||
experimental: {
|
||||
redirects: true,
|
||||
}
|
||||
```
|
||||
|
||||
If you have been waiting for stabilization before using redirects, now you can do so. Check out [the docs on redirects](https://docs.astro.build/en/core-concepts/routing/#redirects) to learn how to use this built-in feature.
|
||||
|
||||
- [#7707](https://github.com/withastro/astro/pull/7707) [`3a6e42e19`](https://github.com/withastro/astro/commit/3a6e42e190421c2e172d5c408c0a7592653fccef) Thanks [@ottomated](https://github.com/ottomated)! - Improved hoisted script bundling
|
||||
|
||||
Astro's static analysis to determine which `<script>` tags to bundle together just got a little smarter!
|
||||
|
||||
Astro create bundles that optimize script usage between pages and place them in the head of the document so that they are downloaded as early as possible. One limitation to Astro's existing approach has been that you could not dynamically use hoisted scripts. Each page received the same, all-inclusive bundle whether or not every script was needed on that page.
|
||||
|
||||
Now, Astro has improved the static analysis to take into account the actual imports used.
|
||||
|
||||
For example, Astro would previously bundle the `<script>`s from both the `<Tab>` and `<Accordian>` component for the following library that re-exports multiple components:
|
||||
|
||||
**@matthewp/my-astro-lib**
|
||||
|
||||
```js
|
||||
export { default as Tabs } from './Tabs.astro';
|
||||
export { default as Accordion } from './Accordion.astro';
|
||||
```
|
||||
|
||||
Now, when an Astro page only uses a single component, Astro will send only the necessary script to the page. A page that only imports the `<Accordian>` component will not receive any `<Tab>` component's scripts:
|
||||
|
||||
```astro
|
||||
---
|
||||
import { Accordion } from '@matthewp/my-astro-lib';
|
||||
---
|
||||
```
|
||||
|
||||
You should now see more efficient performance with Astro now supporting this common library re-export pattern.
|
||||
|
||||
- [#7511](https://github.com/withastro/astro/pull/7511) [`6a12fcecb`](https://github.com/withastro/astro/commit/6a12fcecb076623769eb017da9d4a17cfb0815d3) Thanks [@matthewp](https://github.com/matthewp)! - Built-in View Transitions Support (experimental)
|
||||
|
||||
Astro now supports [view transitions](https://developer.chrome.com/docs/web-platform/view-transitions/) through the new `<ViewTransitions />` component and the `transition:animate` (and associated) directives. View transitions are a great fit for content-oriented sites, and we see it as the best path to get the benefits of client-side routing (smoother transitions) without sacrificing the more simple mental model of MPAs.
|
||||
|
||||
Enable support for view transitions in Astro 2.9 by adding the experimental flag to your config:
|
||||
|
||||
```js
|
||||
import { defineConfig } from 'astro/config';
|
||||
|
||||
export default defineConfig({
|
||||
experimental: {
|
||||
viewTransitions: true,
|
||||
},
|
||||
});
|
||||
```
|
||||
|
||||
This enables you to use the new APIs added.
|
||||
|
||||
#### <ViewTransitions />
|
||||
|
||||
This is a component which acts as the _router_ for transitions between pages. Add it to the `<head>` section of each individual page where transitions should occur _in the client_ as you navigate away to another page, instead of causing a full page browser refresh. To enable support throughout your entire app, add the component in some common layout or component that targets the `<head>` of every page.
|
||||
|
||||
**CommonHead.astro**
|
||||
|
||||
```astro
|
||||
---
|
||||
import { ViewTransitions } from 'astro:transitions';
|
||||
---
|
||||
|
||||
<meta charset="utf-8" />
|
||||
<title>{Astro.props.title}</title>
|
||||
<ViewTransitions />
|
||||
```
|
||||
|
||||
With only this change, your app will now route completely in-client. You can then add transitions to individual elements using the `transition:animate` directive.
|
||||
|
||||
#### Animations
|
||||
|
||||
Add `transition:animate` to any element to use Astro's built-in animations.
|
||||
|
||||
```astro
|
||||
<header transition:animate="slide"></header>
|
||||
```
|
||||
|
||||
In the above, Astro's `slide` animation will cause the `<header>` element to slide out to the left, and then slide in from the right when you navigate away from the page.
|
||||
|
||||
You can also customize these animations using any CSS animation properties, for example, by specifying a duration:
|
||||
|
||||
```astro
|
||||
---
|
||||
import { slide } from 'astro:transition';
|
||||
---
|
||||
|
||||
<header transition:animate={slide({ duration: 200 })}></header>
|
||||
```
|
||||
|
||||
#### Continue learning
|
||||
|
||||
Check out the [client-side routing docs](https://docs.astro.build/en/guides/client-side-routing/) to learn more.
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#7701](https://github.com/withastro/astro/pull/7701) [`019b797bf`](https://github.com/withastro/astro/commit/019b797bf83201d2d4834cc9e0dde30f6a48daa2) Thanks [@bluwy](https://github.com/bluwy)! - Fix redirects map object-form value validation
|
||||
|
||||
- [#7704](https://github.com/withastro/astro/pull/7704) [`d78db48ac`](https://github.com/withastro/astro/commit/d78db48ac48bec6bd550b937a896cbcc747625f1) Thanks [@bluwy](https://github.com/bluwy)! - Fix absolute path handling when passing `root`, `srcDir`, `publicDir`, `outDir`, `cacheDir`, `build.client`, and `build.server` configs in Windows
|
||||
|
||||
- [#7713](https://github.com/withastro/astro/pull/7713) [`d088351f5`](https://github.com/withastro/astro/commit/d088351f54d2518e2bb539d7bbf8691427ff8a7a) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Update warning when `getStaticPaths` is detected but a route is not prerendered.
|
||||
|
||||
## 2.8.5
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "astro",
|
||||
"version": "2.8.5",
|
||||
"version": "2.9.0",
|
||||
"description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.",
|
||||
"type": "module",
|
||||
"author": "withastro",
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
"tiny-glob": "^0.2.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"astro": "workspace:^2.8.5"
|
||||
"astro": "workspace:^2.9.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"astro": "workspace:*",
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
"esbuild": "^0.15.18"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"astro": "workspace:^2.8.5"
|
||||
"astro": "workspace:^2.9.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"astro": "workspace:*",
|
||||
|
|
|
@ -63,7 +63,7 @@
|
|||
"vite": "^4.3.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"astro": "workspace:^2.8.5",
|
||||
"astro": "workspace:^2.9.0",
|
||||
"sharp": ">=0.31.0"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
|
|
|
@ -74,7 +74,7 @@
|
|||
"zod": "^3.17.3"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"astro": "workspace:^2.8.5"
|
||||
"astro": "workspace:^2.9.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@astrojs/markdown-remark": "^2.2.1",
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
"esbuild": "^0.15.18"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"astro": "workspace:^2.8.5"
|
||||
"astro": "workspace:^2.9.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@netlify/edge-functions": "^2.0.0",
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
"server-destroy": "^1.0.1"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"astro": "workspace:^2.8.5"
|
||||
"astro": "workspace:^2.9.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^18.16.18",
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
# @astrojs/sitemap
|
||||
|
||||
## 2.0.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#7722](https://github.com/withastro/astro/pull/7722) [`77ffcc8f8`](https://github.com/withastro/astro/commit/77ffcc8f8b0ca9f8b9da29525f03028e666fd8df) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Ensure nested 404 and 500 pages are always excluded
|
||||
|
||||
## 2.0.0
|
||||
|
||||
### Major Changes
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@astrojs/sitemap",
|
||||
"description": "Generate a sitemap for your Astro site",
|
||||
"version": "2.0.0",
|
||||
"version": "2.0.1",
|
||||
"type": "module",
|
||||
"types": "./dist/index.d.ts",
|
||||
"author": "withastro",
|
||||
|
|
|
@ -48,7 +48,7 @@
|
|||
"vite": "^4.3.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"astro": "workspace:^2.8.5",
|
||||
"astro": "workspace:^2.9.0",
|
||||
"svelte": "^3.55.0 || ^4.0.0"
|
||||
},
|
||||
"engines": {
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
"vite": "^4.3.9"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"astro": "workspace:^2.8.5",
|
||||
"astro": "workspace:^2.9.0",
|
||||
"tailwindcss": "^3.0.24"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"web-vitals": "^3.3.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"astro": "workspace:^2.8.5"
|
||||
"astro": "workspace:^2.9.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/set-cookie-parser": "^2.4.2",
|
||||
|
|
|
@ -56,7 +56,7 @@
|
|||
"vue": "^3.3.4"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"astro": "workspace:^2.8.5",
|
||||
"astro": "workspace:^2.9.0",
|
||||
"vue": "^3.2.30"
|
||||
},
|
||||
"engines": {
|
||||
|
|
|
@ -128,7 +128,7 @@ importers:
|
|||
examples/basics:
|
||||
dependencies:
|
||||
astro:
|
||||
specifier: ^2.8.5
|
||||
specifier: ^2.9.0
|
||||
version: link:../../packages/astro
|
||||
|
||||
examples/blog:
|
||||
|
@ -140,22 +140,22 @@ importers:
|
|||
specifier: ^2.4.3
|
||||
version: link:../../packages/astro-rss
|
||||
'@astrojs/sitemap':
|
||||
specifier: ^2.0.0
|
||||
specifier: ^2.0.1
|
||||
version: link:../../packages/integrations/sitemap
|
||||
astro:
|
||||
specifier: ^2.8.5
|
||||
specifier: ^2.9.0
|
||||
version: link:../../packages/astro
|
||||
|
||||
examples/component:
|
||||
devDependencies:
|
||||
astro:
|
||||
specifier: ^2.8.5
|
||||
specifier: ^2.9.0
|
||||
version: link:../../packages/astro
|
||||
|
||||
examples/deno:
|
||||
dependencies:
|
||||
astro:
|
||||
specifier: ^2.8.5
|
||||
specifier: ^2.9.0
|
||||
version: link:../../packages/astro
|
||||
devDependencies:
|
||||
'@astrojs/deno':
|
||||
|
@ -174,7 +174,7 @@ importers:
|
|||
specifier: ^3.12.2
|
||||
version: 3.12.2
|
||||
astro:
|
||||
specifier: ^2.8.5
|
||||
specifier: ^2.9.0
|
||||
version: link:../../packages/astro
|
||||
|
||||
examples/framework-lit:
|
||||
|
@ -186,7 +186,7 @@ importers:
|
|||
specifier: ^0.2.1
|
||||
version: 0.2.1
|
||||
astro:
|
||||
specifier: ^2.8.5
|
||||
specifier: ^2.9.0
|
||||
version: link:../../packages/astro
|
||||
lit:
|
||||
specifier: ^2.7.5
|
||||
|
@ -210,7 +210,7 @@ importers:
|
|||
specifier: ^2.2.1
|
||||
version: link:../../packages/integrations/vue
|
||||
astro:
|
||||
specifier: ^2.8.5
|
||||
specifier: ^2.9.0
|
||||
version: link:../../packages/astro
|
||||
preact:
|
||||
specifier: ^10.15.1
|
||||
|
@ -240,7 +240,7 @@ importers:
|
|||
specifier: ^1.1.3
|
||||
version: 1.1.3(preact@10.15.1)
|
||||
astro:
|
||||
specifier: ^2.8.5
|
||||
specifier: ^2.9.0
|
||||
version: link:../../packages/astro
|
||||
preact:
|
||||
specifier: ^10.15.1
|
||||
|
@ -258,7 +258,7 @@ importers:
|
|||
specifier: ^18.2.6
|
||||
version: 18.2.6
|
||||
astro:
|
||||
specifier: ^2.8.5
|
||||
specifier: ^2.9.0
|
||||
version: link:../../packages/astro
|
||||
react:
|
||||
specifier: ^18.2.0
|
||||
|
@ -273,7 +273,7 @@ importers:
|
|||
specifier: ^2.2.0
|
||||
version: link:../../packages/integrations/solid
|
||||
astro:
|
||||
specifier: ^2.8.5
|
||||
specifier: ^2.9.0
|
||||
version: link:../../packages/astro
|
||||
solid-js:
|
||||
specifier: ^1.7.6
|
||||
|
@ -285,7 +285,7 @@ importers:
|
|||
specifier: ^3.1.0
|
||||
version: link:../../packages/integrations/svelte
|
||||
astro:
|
||||
specifier: ^2.8.5
|
||||
specifier: ^2.9.0
|
||||
version: link:../../packages/astro
|
||||
svelte:
|
||||
specifier: ^3.59.1
|
||||
|
@ -297,7 +297,7 @@ importers:
|
|||
specifier: ^2.2.1
|
||||
version: link:../../packages/integrations/vue
|
||||
astro:
|
||||
specifier: ^2.8.5
|
||||
specifier: ^2.9.0
|
||||
version: link:../../packages/astro
|
||||
vue:
|
||||
specifier: ^3.3.4
|
||||
|
@ -309,13 +309,13 @@ importers:
|
|||
specifier: ^5.3.0
|
||||
version: link:../../packages/integrations/node
|
||||
astro:
|
||||
specifier: ^2.8.5
|
||||
specifier: ^2.9.0
|
||||
version: link:../../packages/astro
|
||||
|
||||
examples/integration:
|
||||
devDependencies:
|
||||
astro:
|
||||
specifier: ^2.8.5
|
||||
specifier: ^2.9.0
|
||||
version: link:../../packages/astro
|
||||
|
||||
examples/middleware:
|
||||
|
@ -324,7 +324,7 @@ importers:
|
|||
specifier: ^5.3.0
|
||||
version: link:../../packages/integrations/node
|
||||
astro:
|
||||
specifier: ^2.8.5
|
||||
specifier: ^2.9.0
|
||||
version: link:../../packages/astro
|
||||
html-minifier:
|
||||
specifier: ^4.0.0
|
||||
|
@ -333,19 +333,19 @@ importers:
|
|||
examples/minimal:
|
||||
dependencies:
|
||||
astro:
|
||||
specifier: ^2.8.5
|
||||
specifier: ^2.9.0
|
||||
version: link:../../packages/astro
|
||||
|
||||
examples/non-html-pages:
|
||||
dependencies:
|
||||
astro:
|
||||
specifier: ^2.8.5
|
||||
specifier: ^2.9.0
|
||||
version: link:../../packages/astro
|
||||
|
||||
examples/portfolio:
|
||||
dependencies:
|
||||
astro:
|
||||
specifier: ^2.8.5
|
||||
specifier: ^2.9.0
|
||||
version: link:../../packages/astro
|
||||
|
||||
examples/ssr:
|
||||
|
@ -357,7 +357,7 @@ importers:
|
|||
specifier: ^3.1.0
|
||||
version: link:../../packages/integrations/svelte
|
||||
astro:
|
||||
specifier: ^2.8.5
|
||||
specifier: ^2.9.0
|
||||
version: link:../../packages/astro
|
||||
svelte:
|
||||
specifier: ^3.59.1
|
||||
|
@ -369,7 +369,7 @@ importers:
|
|||
specifier: ^0.4.3
|
||||
version: link:../../packages/integrations/markdoc
|
||||
astro:
|
||||
specifier: ^2.8.5
|
||||
specifier: ^2.9.0
|
||||
version: link:../../packages/astro
|
||||
|
||||
examples/with-markdown-plugins:
|
||||
|
@ -378,7 +378,7 @@ importers:
|
|||
specifier: ^2.2.1
|
||||
version: link:../../packages/markdown/remark
|
||||
astro:
|
||||
specifier: ^2.8.5
|
||||
specifier: ^2.9.0
|
||||
version: link:../../packages/astro
|
||||
hast-util-select:
|
||||
specifier: ^5.0.5
|
||||
|
@ -399,7 +399,7 @@ importers:
|
|||
examples/with-markdown-shiki:
|
||||
dependencies:
|
||||
astro:
|
||||
specifier: ^2.8.5
|
||||
specifier: ^2.9.0
|
||||
version: link:../../packages/astro
|
||||
|
||||
examples/with-mdx:
|
||||
|
@ -411,7 +411,7 @@ importers:
|
|||
specifier: ^2.2.1
|
||||
version: link:../../packages/integrations/preact
|
||||
astro:
|
||||
specifier: ^2.8.5
|
||||
specifier: ^2.9.0
|
||||
version: link:../../packages/astro
|
||||
preact:
|
||||
specifier: ^10.15.1
|
||||
|
@ -426,7 +426,7 @@ importers:
|
|||
specifier: ^0.4.1
|
||||
version: 0.4.1(nanostores@0.8.1)(preact@10.15.1)
|
||||
astro:
|
||||
specifier: ^2.8.5
|
||||
specifier: ^2.9.0
|
||||
version: link:../../packages/astro
|
||||
nanostores:
|
||||
specifier: ^0.8.1
|
||||
|
@ -447,7 +447,7 @@ importers:
|
|||
specifier: ^1.6.0
|
||||
version: 1.6.0
|
||||
astro:
|
||||
specifier: ^2.8.5
|
||||
specifier: ^2.9.0
|
||||
version: link:../../packages/astro
|
||||
autoprefixer:
|
||||
specifier: ^10.4.14
|
||||
|
@ -465,7 +465,7 @@ importers:
|
|||
examples/with-vite-plugin-pwa:
|
||||
dependencies:
|
||||
astro:
|
||||
specifier: ^2.8.5
|
||||
specifier: ^2.9.0
|
||||
version: link:../../packages/astro
|
||||
vite-plugin-pwa:
|
||||
specifier: 0.14.7
|
||||
|
@ -477,7 +477,7 @@ importers:
|
|||
examples/with-vitest:
|
||||
dependencies:
|
||||
astro:
|
||||
specifier: ^2.8.5
|
||||
specifier: ^2.9.0
|
||||
version: link:../../packages/astro
|
||||
vitest:
|
||||
specifier: ^0.31.4
|
||||
|
@ -18291,21 +18291,25 @@ packages:
|
|||
file:packages/astro/test/fixtures/css-assets/packages/font-awesome:
|
||||
resolution: {directory: packages/astro/test/fixtures/css-assets/packages/font-awesome, type: directory}
|
||||
name: '@test/astro-font-awesome-package'
|
||||
version: 0.0.1
|
||||
dev: false
|
||||
|
||||
file:packages/astro/test/fixtures/multiple-renderers/renderers/one:
|
||||
resolution: {directory: packages/astro/test/fixtures/multiple-renderers/renderers/one, type: directory}
|
||||
name: '@test/astro-renderer-one'
|
||||
version: 1.0.0
|
||||
dev: false
|
||||
|
||||
file:packages/astro/test/fixtures/multiple-renderers/renderers/two:
|
||||
resolution: {directory: packages/astro/test/fixtures/multiple-renderers/renderers/two, type: directory}
|
||||
name: '@test/astro-renderer-two'
|
||||
version: 1.0.0
|
||||
dev: false
|
||||
|
||||
file:packages/astro/test/fixtures/solid-component/deps/solid-jsx-component:
|
||||
resolution: {directory: packages/astro/test/fixtures/solid-component/deps/solid-jsx-component, type: directory}
|
||||
name: '@test/solid-jsx-component'
|
||||
version: 0.0.0
|
||||
dependencies:
|
||||
solid-js: 1.7.6
|
||||
dev: false
|
||||
|
|
Loading…
Reference in a new issue