Removed unrelated changesets

This commit is contained in:
arimgibson 2022-07-23 18:36:41 +00:00
parent a4f6a99042
commit e77ffc0fed
37 changed files with 0 additions and 245 deletions

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Fix certain characters showing incorrectly in `astro check`

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
public assets should always take priority over page routes in SSR deployments

View file

@ -1,5 +0,0 @@
---
'@astrojs/image': patch
---
Updates the <Picture /> component to pass the `alt` attribute down to the <img> element

View file

@ -1,5 +0,0 @@
---
"@astrojs/sitemap": patch
---
Update README to reflect `@astrojs/sitemap@0.2.0` changes

View file

@ -1,5 +0,0 @@
---
'@astrojs/markdown-remark': minor
---
fixed generated slugs in markdown that ends with a dash

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Add export keyword to astro config file stub created by add cli command

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Use a base middleware for better base path handling in dev.

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
[#3859](https://github.com/withastro/astro/pull/3859) Overhaul Astro error handling, using Vite's built-in error overlay when possible

View file

@ -1,5 +0,0 @@
---
"@astrojs/image": patch
---
Handle EXIF orientation flag

View file

@ -1,8 +0,0 @@
---
'astro': minor
'@astrojs/cloudflare': minor
'@astrojs/netlify': minor
'@astrojs/vercel': minor
---
Support for 404 and 500 pages in SSR

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Fix: find a hosting network differently based on Node version

View file

@ -1,5 +0,0 @@
---
'create-astro': patch
---
Fixes support for using templates from any GitHub repository

View file

@ -1,5 +0,0 @@
---
'astro': minor
---
Removes warnings for integrations/ssr

View file

@ -1,5 +0,0 @@
---
'@astrojs/svelte': patch
---
Fix optional props not being recognized properly in the editor

View file

@ -1,6 +0,0 @@
---
'astro': patch
'@astrojs/lit': patch
---
Fixes Lit compat with Vite 3.0.1

View file

@ -1,6 +0,0 @@
---
'astro': patch
'@astrojs/markdown-remark': patch
---
Avoid parsing JSX, components, and Astro islands when using "plain" md mode. This brings `markdown.mode: 'md'` in-line with our docs description.

View file

@ -1,9 +0,0 @@
---
"@astrojs/image": patch
"@astrojs/partytown": patch
"@astrojs/prefetch": patch
"@astrojs/sitemap": patch
"@astrojs/tailwind": patch
---
[READMEs] removed "experimental" from astro add instructions

View file

@ -1,5 +0,0 @@
---
'@astrojs/mdx': minor
---
Add remarkPlugins and rehypePlugins to config, with the same default plugins as our standard Markdown parser

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Added missing `media` attributes from the JSX definitions for the `meta` element

View file

@ -1,18 +0,0 @@
---
'astro': minor
'@astrojs/cloudflare': minor
'@astrojs/deno': minor
'@astrojs/netlify': minor
'@astrojs/vercel': minor
'@astrojs/node': minor
---
Adds support for Astro.clientAddress
The new `Astro.clientAddress` property allows you to get the IP address of the requested user.
```astro
<div>Your address { Astro.clientAddress }</div>
```
This property is only available when building for SSR, and only if the adapter you are using supports providing the IP address. If you attempt to access the property in a SSG app it will throw an error.

View file

@ -1,5 +0,0 @@
---
'@astrojs/image': patch
---
Fixing TypeScript definition exports for image components

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Overhaul HMR handling for more stable live reload behavior

View file

@ -1,5 +0,0 @@
---
'@astrojs/mdx': minor
---
Support Prism and Shiki syntax highlighting based on project config

View file

@ -1,5 +0,0 @@
---
'@astrojs/vercel': minor
---
Removed requirement for `ENABLE_VC_BUILD=1`, since Build Output v3 is now stable. [Learn more](https://vercel.com/blog/build-output-api).

View file

@ -1,5 +0,0 @@
---
'@astrojs/mdx': patch
---
Include page url in MDX glob result

View file

@ -1,6 +0,0 @@
---
'@astrojs/mdx': minor
'astro': patch
---
Support YAML frontmatter in MDX files

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Fix `define:vars` bugs with both `style` and `script`

View file

@ -1,6 +0,0 @@
---
'astro': patch
'@astrojs/node': patch
---
Fixes Node adapter to accept a request body

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Allow defining aliases with tsconfig

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Add support for `.html` components and pages

View file

@ -1,8 +0,0 @@
---
'astro': minor
'@astrojs/image': minor
'@astrojs/svelte': minor
'@astrojs/vue': minor
---
Bump to Vite 3!

View file

@ -1,6 +0,0 @@
---
'@astrojs/image': minor
---
- Fixes two bugs that were blocking SSR support when deployed to a hosting service
- The built-in `sharp` service now automatically rotates images based on EXIF data

View file

@ -1,20 +0,0 @@
---
'astro': minor
'@astrojs/markdown-component': minor
'@astrojs/markdown-remark': minor
---
The use of components and JSX expressions in Markdown are no longer supported by default.
For long term support, migrate to the `@astrojs/mdx` integration for MDX support (including `.mdx` pages!).
Not ready to migrate to MDX? Add the legacy flag to your Astro config to re-enable the previous Markdown support.
```js
// https://astro.build/config
export default defineConfig({
legacy: {
astroFlavoredMarkdown: true,
}
});
```

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Deprecate Astro.canonicalURL, in favor of Astro.url instead.

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Improve warning logs on astro.config change

View file

@ -1,22 +0,0 @@
---
'astro': minor
'@astrojs/markdown-component': minor
---
Move the Markdown component to its own package
This change moves the Markdown component into its own package where it will be maintained separately. All that needs to change from a user's perspective is the import statement:
```astro
---
import { Markdown } from 'astro/components';
---
```
Becomes:
```astro
---
import Markdown from '@astrojs/markdown-component';
---
```

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Add Astro.url helper for getting the request URL