diff --git a/examples/blog/src/pages/rss.xml.js b/examples/blog/src/pages/rss.xml.js index 7d054b92a..9ff9801e0 100644 --- a/examples/blog/src/pages/rss.xml.js +++ b/examples/blog/src/pages/rss.xml.js @@ -2,7 +2,7 @@ import rss from '@astrojs/rss'; import { getCollection } from 'astro:content'; import { SITE_TITLE, SITE_DESCRIPTION } from '../consts'; -export async function get(context) { +export async function GET(context) { const posts = await getCollection('blog'); return rss({ title: SITE_TITLE, diff --git a/examples/non-html-pages/src/pages/about.json.ts b/examples/non-html-pages/src/pages/about.json.ts index af61847f3..8fa365724 100644 --- a/examples/non-html-pages/src/pages/about.json.ts +++ b/examples/non-html-pages/src/pages/about.json.ts @@ -1,11 +1,11 @@ // Returns the file body for this non-HTML file. // The content type is based off of the extension in the filename, // in this case: about.json. -export async function get() { - return { - body: JSON.stringify({ +export async function GET() { + return new Response( + JSON.stringify({ name: 'Astro', url: 'https://astro.build/', - }), - }; + }) + ); } diff --git a/examples/ssr/src/pages/api/cart.ts b/examples/ssr/src/pages/api/cart.ts index 80db01f16..cc6ba231b 100644 --- a/examples/ssr/src/pages/api/cart.ts +++ b/examples/ssr/src/pages/api/cart.ts @@ -1,7 +1,7 @@ import { APIContext } from 'astro'; import { userCartItems } from '../../models/session'; -export function get({ cookies }: APIContext) { +export function GET({ cookies }: APIContext) { let userId = cookies.get('user-id').value; if (!userId || !userCartItems.has(userId)) { @@ -12,9 +12,7 @@ export function get({ cookies }: APIContext) { let items = userCartItems.get(userId); let array = Array.from(items.values()); - return { - body: JSON.stringify({ items: array }), - }; + return new Response(JSON.stringify({ items: array })); } interface AddToCartItem { @@ -22,7 +20,7 @@ interface AddToCartItem { name: string; } -export async function post({ cookies, request }: APIContext) { +export async function POST({ cookies, request }: APIContext) { const item: AddToCartItem = await request.json(); let userId = cookies.get('user-id').value; @@ -38,9 +36,9 @@ export async function post({ cookies, request }: APIContext) { cart.set(item.id, { id: item.id, name: item.name, count: 1 }); } - return { - body: JSON.stringify({ + return new Response( + JSON.stringify({ ok: true, - }), - }; + }) + ); } diff --git a/examples/ssr/src/pages/api/products.ts b/examples/ssr/src/pages/api/products.ts index 171291004..8bf02a03d 100644 --- a/examples/ssr/src/pages/api/products.ts +++ b/examples/ssr/src/pages/api/products.ts @@ -1,7 +1,5 @@ import { products } from '../../models/db'; -export function get() { - return { - body: JSON.stringify(products), - }; +export function GET() { + return new Response(JSON.stringify(products)); } diff --git a/examples/ssr/src/pages/api/products/[id].ts b/examples/ssr/src/pages/api/products/[id].ts index 7b8a98d64..abcd02da8 100644 --- a/examples/ssr/src/pages/api/products/[id].ts +++ b/examples/ssr/src/pages/api/products/[id].ts @@ -1,14 +1,12 @@ import { productMap } from '../../../models/db'; import type { APIContext } from 'astro'; -export function get({ params }: APIContext) { +export function GET({ params }: APIContext) { const id = Number(params.id); if (productMap.has(id)) { const product = productMap.get(id); - return { - body: JSON.stringify(product), - }; + return new Response(JSON.stringify(products)); } else { return new Response(null, { status: 400, diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index e8801d083..c6d27ab36 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -1779,11 +1779,11 @@ export type AstroFeatureMap = { export interface AstroAssetsFeature { supportKind?: SupportsKind; /** - * Whether if this adapter deploys files in an enviroment that is compatible with the library `sharp` + * Whether if this adapter deploys files in an environment that is compatible with the library `sharp` */ isSharpCompatible?: boolean; /** - * Whether if this adapter deploys files in an enviroment that is compatible with the library `squoosh` + * Whether if this adapter deploys files in an environment that is compatible with the library `squoosh` */ isSquooshCompatible?: boolean; } diff --git a/packages/integrations/vercel/CHANGELOG.md b/packages/integrations/vercel/CHANGELOG.md index f936b71e1..c6a1cf30b 100644 --- a/packages/integrations/vercel/CHANGELOG.md +++ b/packages/integrations/vercel/CHANGELOG.md @@ -6,7 +6,7 @@ - [#8348](https://github.com/withastro/astro/pull/8348) [`5f2c55bb5`](https://github.com/withastro/astro/commit/5f2c55bb54bb66693d278b7cd705c198aecc0331) Thanks [@ematipico](https://github.com/ematipico)! - - Cache result during bundling, to speed up the process of multiple functions; - - Avoid creating multiple symbolic links of the dependencies when building the project with `funcitonPerRoute` enabled; + - Avoid creating multiple symbolic links of the dependencies when building the project with `functionPerRoute` enabled; - [#8354](https://github.com/withastro/astro/pull/8354) [`0eb09dbab`](https://github.com/withastro/astro/commit/0eb09dbab1674a57d23ac97950a527d2e5a9c9fb) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Fix unnecessary warning about Sharp showing while building