2ffc5721bc22631c44d90ac43ec27fdb0b5b2d1b Thanks @florian-lefebvre! - Prevents infinite redirects when Astro trailingSlash configuration is set to "always" and "vercel.json" trailingSlash configuration is set to true0699f34d5c4481c027c4d29d73944f79f97008df Thanks @lilnasy! - Implements verification for edge middleware. This is a security measure to ensure that your serverless functions are only ever called by your edge middleware and not a third party.When edgeMiddleware is enabled, the serverless function will now respond with 403 Forbidden for requests that are not verified to have come from the generated edge middleware. No user action is necessary.
e2fe51c828dc7ea8204788e59e3953fe36c97836 Thanks @lilnasy! - Introduces a new config option, isr, that allows you to deploy your project as an ISR function. ISR (Incremental Static Regeneration) caches your on-demand rendered pages in the same way as prerendered pages after first request.To enable this feature, set isr to true in your Vercel adapter configuration in astro.config.mjs:
export default defineConfig({
output: 'server',
adapter: vercel({ isr: true }),
});
## Cache invalidation options
By default, ISR responses are cached for the duration of your deployment. You can further control caching by setting an expiration time or prevent caching entirely for certain routes.
### Time-based invalidation
You can change the length of time to cache routes this by configuring an expiration value in seconds:
export default defineConfig({
output: 'server',
adapter: vercel({
isr: {
// caches all pages on first request and saves for 1 day
expiration: 60 * 60 * 24,
},
}),
});
### Manual invalidation
To implement Vercel's Draft mode, or On-Demand Incremental Static Regeneration (ISR), you can create a bypass token and provide it to the isr config along with the paths to exclude from caching:
export default defineConfig({
output: 'server',
adapter: vercel({
isr: {
// A secret random string that you create.
bypassToken: '005556d774a8',
// Paths that will always be served fresh.
exclude: ['/api/invalidate'],
},
}),
});
bc1742df9423ba66e33dcbf65fbebf67a236175d Thanks @matthewp! - Fix regression with bundling of @libsql/client041fdd5c89920f7ccf944b095f29e451f78b0e28 Thanks @ematipico! - Adds experimental support for internationalization domains49e0c24d7f90d00e986533fcf546665967540ce7 Thanks @matthewp! - Better ignores for Vercel file-tracerThe Vercel adapter has a file-tracer it uses to detect which files should be moved over to the dist/ folder. When it's done, it prints warnings for things that it detected that maybe should be moved.
This change expands how we do ignores so that:
.pnpm.@libsql/client is ignored, a package we know is not bundled.3435b7f1e1ca38fdee8f3b89e2d2667f125d01b5 Thanks @lilnasy! - Fixes an issue where the serverless function ignored cookies added using Astro.cookies.05adaaa2d217a3ecb34244d9b40603f35cef4a37 Thanks @lilnasy! - Fixes an issue where edge middleware did not work.d6edc7540864cf5d294d7b881eb886a3804f6d05 Thanks @ematipico! - Breaking: Minimum required Astro version is now 4.2.0.
Reorganizes internals to be more maintainable.
***d7f1903cded3e864b392d1dd7502672d37936f11 Thanks @lilnasy! - Fixes an issue where the serverless function could not respond with a prerendered 404 page.#9591 22a5405b4a4b7948458ad170b0a7bde6954058c1 Thanks @lilnasy! - Fixes an issue where 404.astro was not used in static mode.
#9598 bd8fa7acd23ba6e7afa2c435807bd5fd6b24f505 Thanks @lilnasy! - Marks the speedInsights configuration as deprecated. Vercel has migrated features of the Speed Insights API into a framework-agnostic library with @vercel/speed-insights. See Vercel Speed Insights Quickstart for instructions on how to use the library instead.
7b586a6e23e25653814db9adea9674ec3a9bd535 Thanks @lilnasy! - Fixes an issue where a build could not complete on Node 21.1baf0b0d3cbd0564954c2366a7278794fad6726e Thanks @sarah11918! - Updates README836ab6214 Thanks @jacobdalamb! - Adds support for Node 20 (currently in beta on Vercel).#9287 1e342e34e Thanks @lilnasy! - Fixes an issue where redirects did not work with the static adapter.
#9383 bebf5cf22 Thanks @sarah11918! - Fixes some incorrect code examples in the README documentation.
#9334 dfbc70790 Thanks @Geo25rey! - Allows the edge middleware to be an async function.
#9199 49aa215a0 Thanks @lilnasy! - The internals of the integration have been updated to support Astro 4.0. Make sure to upgrade your Astro version as Astro 3.0 is no longer supported.
#9184 a145ac07e Thanks @bluwy! - Removes deprecated analytics option. Use the webAnalytics option instead.
#9263 3cbd8ea75 Thanks @bluwy! - Removes the deprecated @astrojs/vercel/edge export. You should use @astrojs/vercel/serverless instead with the edgeMiddleware option.
3cbd8ea75 Thanks @bluwy! - Removes the deprecated @astrojs/vercel/edge export. You should use @astrojs/vercel/serverless instead with the edgeMiddleware option.49aa215a0 Thanks @lilnasy! - The internals of the integration have been updated to support Astro 4.0. Make sure to upgrade your Astro version as Astro 3.0 is no longer supported.a145ac07e Thanks @bluwy! - Removes deprecated analytics option. Use the webAnalytics option instead.abf601233, 6201bbe96, cdabf6ef0, 1c48ed286, 37697a2c5, bd0c2e9ae, 0fe3a7ed5, 710be505c, 153a5abb9]:
This brings better performance to your visitors by showing them content as it is rendered. The browser can also start loading the required stylesheets and scripts much sooner, which ultimately results in faster full page loads.
#8867 b209e5335 Thanks @lilnasy! - You can now configure how long your functions can run before timing out.
export default defineConfig({
output: "server",
adapter: vercel({
+ maxDuration: 60
}),
});
#8896 5dd1ed50b Thanks @bluwy! - Prevents the Vercel serverless adapter from generating static redirect pages in hybrid mode
Updated dependencies [26b77b8fe]:
#8737 6f60da805 Thanks @ematipico! - Add provenance statement when publishing the library from CI
Updated dependencies [6f60da805, d78806dfe, d1c75fe15, aa265d730, 78adbc443, 21e0757ea, 357270f2a]:
#8581 d0e513f21 Thanks @rishi-raj-jain! - log only once in serverless adapter
Updated dependencies [8d361169b, 95b5f6280, 0586e20e8]:
#8445 91380378c Thanks @Princesseuh! - Adds a configuration option devImageService to choose which of the built-in image services to use in development. Defaults to sharp.
#8546 b79e11f3c Thanks @matthewp! - Turn off functionPerRoute by default
In the previous version of @astrojs/vercel, the default for functionPerRoute was changed to true. While this option has several advantages, if you're a free tier user you are likely to run into the limit of 12 functions per deployment. This will result in an error when you attempt to deploy.
For this reason, the functionPerRoute option is now back to defaulting to false. It's still a useful option if you have a paid plan and have previously run into issues with your single function exceeding the size limits.
2e8726fee Thanks @chriswdmr! - Enable Vercel Speed Insights and Vercel Web Analytics individually.
Deprecates the analytics property in astro.config.mjs in favor of speedInsights and webAnalytics.If you're using the analytics property, you'll need to update your config to use the new properties:
// astro.config.mjs
export default defineConfig({
adapter: vercel({
- analytics: true,
+ webAnalytics: {
+ enabled: true
+ },
+ speedInsights: {
+ enabled: true
+ }
})
});
Allow configuration of Web Analytics with all available configuration options. Bumps @vercel/analytics package to the latest version.
7522bb491, ecc65abbf, 2c4fc878b, c92e0acd7, f95febf96, b85c8a78a, 45364c345]:
#8452 7ea32c7fb Thanks @Princesseuh! - Fix Astro's domains and remotePatterns not being used by Vercel when using Vercel Image Optimization
Updated dependencies [f66053a1e, 0fa483283]:
#8408 9ffa1a84e Thanks @slawekkolodziej! - Fix serverless function naming conflicts for routes with identical filenames but different directory structures
Updated dependencies [7d95bd9ba, 1947ef7a9, 61ad70fdc, d2f2a11cd, 5126c6a40, 48ff7855b, 923a443cb, 8935b3b46]:
#8348 5f2c55bb5 Thanks @ematipico! - - Cache result during bundling, to speed up the process of multiple functions;
functionPerRoute enabled;#8354 0eb09dbab Thanks @Princesseuh! - Fix unnecessary warning about Sharp showing while building
Updated dependencies [d3a6f9f83, f21599671]:
#8318 c58472756 Thanks @ematipico! - Add astro feature map and adapter features to the static adapter. This will remove the warning emitted by Astro.
Updated dependencies [5f3a44aee, b21038c19, 7a894eec3, af41b03d0]:
#8328 8fff0e9ae Thanks @matthewp! - Update verbiage of Vercel warning
#8319 dc29e0f79 Thanks @ematipico! - Add warning when functionPerRoute is set to true
Updated dependencies [0752cf368]:
#8188 d0679a666 Thanks @ematipico! - Remove support for Node 16. The lowest supported version by Astro and all integrations is now v18.14.1. As a reminder, Node 16 will be deprecated on the 11th September 2023.
#8179 6011d52d3 Thanks @matthewp! - Astro 3.0 Release Candidate
#8188 7511a4980 Thanks @ematipico! - When using an adapter that supports neither Squoosh or Sharp, Astro will now automatically use an image service that does not support processing, but still provides the other benefits of astro:assets such as enforcing alt, no CLS etc to users
#8015 9cc4e48e6 Thanks @matthewp! - Remove the Vercel Edge adapter
@astrojs/vercel/serverless now supports Edge middleware, so a separate adapter for Edge itself (deploying your entire app to the edge) is no longer necessary. Please update your Astro config to reflect this change:
// astro.config.mjs
import { defineConfig } from 'astro/config';
- import vercel from '@astrojs/vercel/edge';
+ import vercel from '@astrojs/vercel/serverless';
export default defineConfig({
output: 'server',
adapter: vercel({
+ edgeMiddleware: true
}),
});
This adapter had several known limitations and compatibility issues that prevented many people from using it in production. To reduce maintenance costs and because we have a better story with Serveless + Edge Middleware, we are removing the Edge adapter.
With this change, @astrojs/vercel/serverless now splits each route into its own function. By doing this, the size of each function is reduced and startup time is faster.
You can disable this option, which will cause the code to be bundled into a single function, by setting functionPerRoute to false.
148e61d24 Thanks @ematipico! - Reduced the amount of polyfills provided by Astro. Astro will no longer provide (no-op) polyfills for several web apis such as HTMLElement, Image or Document. If you need access to those APIs on the server, we recommend using more proper polyfills available on npm.#8188 cd2d7e769 Thanks @ematipico! - Introduced the concept of feature map. A feature map is a list of features that are built-in in Astro, and an Adapter
can tell Astro if it can support it.
import { AstroIntegration } from './astro';
function myIntegration(): AstroIntegration {
return {
name: 'astro-awesome-list',
// new feature map
supportedAstroFeatures: {
hybridOutput: 'experimental',
staticOutput: 'stable',
serverOutput: 'stable',
assets: {
supportKind: 'stable',
isSharpCompatible: false,
isSquooshCompatible: false,
},
},
};
}
#8188 80f1494cd Thanks @ematipico! - The build.split and build.excludeMiddleware configuration options are deprecated and have been replaced by options in the adapter config.
If your config includes the build.excludeMiddleware option, replace it with edgeMiddleware in your adapter options:
import { defineConfig } from "astro/config";
import vercel from "@astrojs/vercel/serverless";
export default defineConfig({
build: {
- excludeMiddleware: true
},
adapter: vercel({
+ edgeMiddleware: true
}),
});
If your config includes the build.split option, replace it with functionPerRoute in your adapter options:
import { defineConfig } from "astro/config";
import vercel from "@astrojs/vercel/serverless";
export default defineConfig({
build: {
- split: true
},
adapter: vercel({
+ functionPerRoute: true
}),
});
d0679a666, db39206cb, 2aa6d8ace, adf9fccfd, 0c7b42dc6, 46c4c0e05, 364d861bd, 2484dc408, 81545197a, 6011d52d3, c2c71d90c, cd2d7e769, 80f1494cd, e45f30293, c0de7a7b0, 65c354969, 3c3100851, 34cb20021, a824863ab, 44f7a2872, 1048aca55, be6bbd2c8, 9e021a91c, 7511a4980, c37632a20, acf652fc1, 42785c7b7, 8450379db, dbc97b121, 7d2f311d4, 2540feedb, ea7ff5177, 68efd4a8b, 7bd1b86f8, 036388f66, 519a1c4e8, 1f58a7a1b, 2ae9d37f0, a8f35777e, 70f34f5a3, 5208a3c8f, 84af8ed9d, f003e7364, ffc9e2d3d, 732111cdc, 0f637c71e, 33b8910cf, 8a5b0c1f3, 148e61d24, e79e3779d, 632579dc2, 3674584e0, 1db4e92c1, e7f872e91, 16f09dfff, 4477bb41c, 55c10d1d5, 3e834293d, 96beb883a, 997a0db8a, 80f1494cd, 0f0625504, e1ae56e72, f32d093a2, f01eb585e, b76c166bd, a87cbe400, 866ed4098, 767eb6866, 32669cd47]:
With this change, @astrojs/vercel/serverless now splits each route into its own function. By doing this, the size of each function is reduced and startup time is faster.
You can disable this option, which will cause the code to be bundled into a single function, by setting functionPerRoute to false.
adf9fccfd, 582132328, 81545197a, 6011d52d3, be6bbd2c8, 42785c7b7, 95120efbe, 2ae9d37f0, f003e7364, 732111cdc, 33b8910cf, e79e3779d, 179796405, a87cbe400, 767eb6866]:
#7778 d6b494376 Thanks @y-nk! - Update image support to work with latest version of Astro
Updated dependencies [2484dc408, c2c71d90c, 7177f7579, 097a8e4e9, dbc97b121, 2540feedb, ea7ff5177, 68efd4a8b, 0e0fa605d, 5208a3c8f, 8a5b0c1f3, d6b494376, 4477bb41c, 3e834293d, b76c166bd]:
@astrojs/vercel/serverless now supports Edge middleware, so a separate adapter for Edge itself (deploying your entire app to the edge) is no longer necessary. Please update your Astro config to reflect this change:
// astro.config.mjs
import { defineConfig } from 'astro/config';
- import vercel from '@astrojs/vercel/edge';
+ import vercel from '@astrojs/vercel/serverless';
export default defineConfig({
output: 'server',
adapter: vercel({
+ edgeMiddleware: true
}),
});
This adapter had several known limitations and compatibility issues that prevented many people from using it in production. To reduce maintenance costs and because we have a better story with Serveless + Edge Middleware, we are removing the Edge adapter.
65c354969, 3c3100851, 34cb20021, 7bd1b86f8, 519a1c4e8, 70f34f5a3, 0f637c71e, 866ed4098, 5b1e39ef6]:
1eae2e3f7 Thanks @Princesseuh! - Remove support for Node 16. The lowest supported version by Astro and all integrations is now v18.14.1. As a reminder, Node 16 will be deprecated on the 11th September 2023.
c022a4217 Thanks @Princesseuh! - When using an adapter that supports neither Squoosh or Sharp, Astro will now automatically use an image service that does not support processing, but still provides the other benefits of astro:assets such as enforcing alt, no CLS etc to users
3dc1ca2fa Thanks @Princesseuh! - Reduced the amount of polyfills provided by Astro. Astro will no longer provide (no-op) polyfills for several web apis such as HTMLElement, Image or Document. If you need access to those APIs on the server, we recommend using more proper polyfills available on npm.
9b4f70a62 Thanks @ematipico! - Introduced the concept of feature map. A feature map is a list of features that are built-in in Astro, and an Adapter
can tell Astro if it can support it.
import { AstroIntegration } from './astro';
function myIntegration(): AstroIntegration {
return {
name: 'astro-awesome-list',
// new feature map
supportedAstroFeatures: {
hybridOutput: 'experimental',
staticOutput: 'stable',
serverOutput: 'stable',
assets: {
supportKind: 'stable',
isSharpCompatible: false,
isSquooshCompatible: false,
},
},
};
}
3fdf509b2 Thanks @ematipico! - The build.split and build.excludeMiddleware configuration options are deprecated and have been replaced by options in the adapter config.
If your config includes the build.excludeMiddleware option, replace it with edgeMiddleware in your adapter options:
import { defineConfig } from "astro/config";
import vercel from "@astrojs/vercel/serverless";
export default defineConfig({
build: {
- excludeMiddleware: true
},
adapter: vercel({
+ edgeMiddleware: true
}),
});
If your config includes the build.split option, replace it with functionPerRoute in your adapter options:
import { defineConfig } from "astro/config";
import vercel from "@astrojs/vercel/serverless";
export default defineConfig({
build: {
- split: true
},
adapter: vercel({
+ functionPerRoute: true
}),
});
1eae2e3f7, 76ddef19c, 9b4f70a62, 3fdf509b2, 2f951cd40, c022a4217, 67becaa58, bc37331d8, dfc2d93e3, 3dc1ca2fa, 1be84dfee, 35f01df79, 3fdf509b2, 78de801f2, 59d6e569f, 7723c4cc9, fb5cd6b56, 631b9c410]:
#7778 d6b494376 Thanks @y-nk! - Update image support to work with latest version of Astro
Updated dependencies [b12c8471f, 7177f7579, fa6b68a77, 097a8e4e9, 1f6497c33, 0e0fa605d, b290f0a99, d6b494376, da6e3da1c]:
#8039 6b57628d1 Thanks @matthewp! - Prevent Vercel NFT from scanning /dev
Updated dependencies [1b8d30209, 405913cdf, 87d4b1843, c23377caa, 86bee2812]:
560d0dab1 Thanks @soilSpoon! - Add cache headers to assets in Vercel adapter41afb8405, c00b6f0c4, 1f0ee494a, 00cb28f49, c264be349, e1e958a75]:
#7754 298dbb89f Thanks @natemoo-re! - Improve 404 behavior for serverless and edge
Updated dependencies [298dbb89f, 9e2203847, 5c5da8d2f, 0b8375fe8, 89d015db6, ebf7ebbf7]:
#7718 35a0b6c8a Thanks @lilnasy! - The vercel adapter now Warns when using a deprecated version of Node, and switches to 18 when using an unsupported version.
Updated dependencies [274e67532, e52852628, c2d6cfd0c, 201d32dcf]:
#7677 1f0d0b586 Thanks @bluwy! - Fix build error when passing includeFiles
Updated dependencies [cc8e9de88, 1a6f833c4, cc0f81c04]:
57a5eff5c Thanks @natemoo-re! - Fix critical build regression. @vercel/nft is excluded from the bundle automatically.#7621 2ddf34262 Thanks @ematipico! - Improve file detection of the middleware file handler
Updated dependencies [86e19c7cf]:
9e5fafa2b Thanks @ematipico! - Support for Vercel Edge Middleware via Astro middleware.When a project uses the new option Astro build.excludeMiddleware, the
@astrojs/vercel/serverless adapter will automatically create a Vercel Edge Middleware
that will automatically communicate with the Astro Middleware.
Check the documentation for more details.
9e5fafa2b, 9e5fafa2b, 9e5fafa2b, 6e9c29579, 9e5fafa2b, 9e5fafa2b]:
The Vercel adapter builds to a single function by default. Astro 2.7 added support for splitting your build into separate entry points per page. If you use this configuration the Vercel adapter will generate a separate function for each page. This can help reduce the size of each function so they are only bundling code used on that page.
// astro.config.mjs
import { defineConfig } from 'astro/config';
import vercel from '@astrojs/vercel/serverless';
export default defineConfig({
output: 'server',
adapter: vercel(),
build: {
split: true,
},
});
#7447 32bde967f Thanks @bluwy! - Fix redirects for root page when using trailingSlash: "always"
Updated dependencies [601403744, 869197aaf, 2b7539952, 478cd9d8f, 57e603038, 2b7539952, f359d77b1]:
This adds support for the redirects RFC in the Vercel adapter. No changes are necessary, simply use configured redirects and the adapter will output the vercel.json file with the configuration values.
#7260 39403c32f Thanks @natemoo-re! - Unflags support for output: 'hybrid' mode, which enables pre-rendering by default. The additional experimental.hybridOutput flag can be safely removed from your configuration.
Updated dependencies [57f8d14c0, 414eb19d2, a7e2b37ff, dd1a6b6c9, d72cfa7ca, 144813f73, b5213654b, e3b8c6296, 890a2bc98, 39403c32f, 101f03209]:
#7208 f5a8cffac Thanks @Princesseuh! - Fix imagesConfig being wrongly spelt as imageConfig in the README
Updated dependencies [8b041bf57, 6c7df28ab, bf63f615f, ee2aca80a, 7851f9258, bef3a75db, 52af9ad18, f5063d0a0, cf621340b, 2bda7fb0b, af3c5a2e2, f2f18b440]:
#6876 06ca3702f Thanks @nblackburn! - Correctly handle analytics id where present
#6991 719002ca5 Thanks @MoustaphaDev! - Enable experimental support for hybrid SSR with pre-rendering enabled by default
astro.config.mjs
import { defineConfig } from 'astro/config';
export default defineConfig({
output: 'hybrid',
experimental: {
hybridOutput: true,
},
});
Then add export const prerender = false to any page or endpoint you want to opt-out of pre-rendering.
src/pages/contact.astro
---
export const prerender = false;
if (Astro.request.method === 'POST') {
// handle form submission
}
---
<form method="POST">
<input type="text" name="name" />
<input type="email" name="email" />
<button type="submit">Submit</button>
</form>
#7101 2994bc52d Thanks @bluwy! - Add missing esbuild dependency
#7101 2994bc52d Thanks @bluwy! - Always build edge/worker runtime with Vite webworker SSR target
#7104 826e02890 Thanks @bluwy! - Specify "files" field to only publish necessary files
Updated dependencies [4516d7b22, e186ecc5e, c6d7ebefd, 914c439bc, e9fc2c221, 075eee08f, 719002ca5, fc52681ba, fb84622af, cada10a46, cd410c5eb, 73ec6f6c1, 410428672, 763ff2d1e, c1669c001, 3d525efc9]:
6063f5657 Thanks @Princesseuh! - Add support for using the Vercel Image Optimization API through astro:assetsa8a319aef, a695e44ae, 367e61776, 77270cc2c, 895fa07d8, 72c6bf01f, e5bd084c0]:
#6874 43230b2ca Thanks @nblackburn! - Refactor static adapter to use updateConfig method
Updated dependencies [4c7ba4da0, b6154d2d5, 1f2699461, edabf01b4, 0afff3274]:
#6841 2e3125e18 Thanks @bluwy! - Fix vercel edge private environment variables usage
#6840 00a2e1d7c Thanks @delucis! - Fix warning syntax in README
84a464888 Thanks @nblackburn! - Revert change to environment variable#6751 26daba8d9 Thanks @nblackburn! - Fix vercel analytics id not being set
Updated dependencies [489dd8d69, a1a4f45b5, a1108e037, 8b88e4cf1, d54cbe413, 4c347ab51, ff0430786, 2f2e572e9, 7116c021a]:
#6484 700a55549 Thanks @matthewp! - Add back support for Astro.clientAddress
Updated dependencies [acf78c5e2, 04e624d06, cc90d7219, a9a6ae298, 6a7cf0712, bfd67ea74, f6eddffa0, c63874090, d637d1ea5, 637f9bc72, 77a046e88]:
afbbc4d5b Thanks @Princesseuh! - Updated compilation settings to disable downlevelling for Node 14fec583909, b087b83fe, 694918a56, a20610609, a4a74ab70, 75921b3cd, afbbc4d5b]:
#6317 2eb73cb9d Thanks @bluwy! - Use .mjs extension when building to support CJS environments
Updated dependencies [5e26bc891, a156ecbb7, ccd72e6bb, 504c7bacb, 63dda6ded, f91a7f376]:
#6258 0fe74b664 Thanks @delucis! - Don’t inject analytics script in dev
Updated dependencies [ef5cea4dc, 2fec47848]:
#6191 11e1fa988 Thanks @delucis! - Fix and improve Vercel adapter README
Updated dependencies [436bd0934, a9bdd9cc4, 938ad514c, c75d319ee, 6fa6025b3, 3390cb844]:
#6085 b236b5cc8 Thanks @AirBorne04! - Added second build step through esbuild, to allow framework defined build (vite build) and target defined bundling (esbuilt step)
Updated dependencies [9bec6bc41]:
#5782 1f92d64ea Thanks @Princesseuh! - Remove support for Node 14. Minimum supported Node version is now >=16.12.0
#5707 5eba34fcc Thanks @bluwy! - Remove astro:build:start backwards compatibility code
#5806 7572f7402 Thanks @matthewp! - Make astro a peerDependency of integrations
This marks astro as a peerDependency of several packages that are already getting major version bumps. This is so we can more properly track the dependency between them and what version of Astro they are being used with.
93e633922, 16dc36a87, 01f3f463b, e2019be6f, 05caf445d, 49ab4f231, a342a486c, 8fb28648f, 1f92d64ea, c2180746b, ae8a012a7, cf2de5422, ce5c5dbd4, ec09bb664, 665a2c222, 259a539d7, f7aa1ec25, 4987d6f44, 304823811, 302e0ef8f, 55cea0a9d, dd56c1941, 9963c6e4d, 46ecd5de3, be901dc98, f6cf92b48, e818cc046, 8c100a6fe, 116d8835c, 840412128, 1f49cddf9, 7325df412, 16c7d0bfd, c55fbcb8e, a9c292026, 2a5786419, 4a1cabfe6, a8d3e7924, fa8c131f8, 64b8082e7, c4b0cb8bf, 1f92d64ea, 23dc9ea96, 63a6ceb38, a3a7fc929, 52209ca2a, 5fd9208d4, 5eba34fcc, 899214298, 3a00ecb3e, 5eba34fcc, 2303f9514, 1ca81c16b, b66d7195c]:
1f92d64ea`](https://github.com/withastro/astro/commit/1f92d64ea3) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Remove support for Node 14. Minimum supported Node version is now >=16.12.0
- [#5806](https://github.com/withastro/astro/pull/5806) [`7572f7402`](https://github.com/withastro/astro/commit/7572f74022) Thanks [@matthewp](https://github.com/matthewp)! - Make astro a `peerDependency` of integrations
This marks `astro` as a `peerDependency` of several packages that are already getting `major` version bumps. This is so we can more properly track the dependency between them and what version of Astro they are being used with.
### Patch Changes
- Updated dependencies [[`01f3f463b`](https://github.com/withastro/astro/commit/01f3f463bf), [`1f92d64ea`](https://github.com/withastro/astro/commit/1f92d64ea3), [`c2180746b`](https://github.com/withastro/astro/commit/c2180746b4), [`ae8a012a7`](https://github.com/withastro/astro/commit/ae8a012a7b), [`cf2de5422`](https://github.com/withastro/astro/commit/cf2de5422c), [`ec09bb664`](https://github.com/withastro/astro/commit/ec09bb6642), [`665a2c222`](https://github.com/withastro/astro/commit/665a2c2225), [`f7aa1ec25`](https://github.com/withastro/astro/commit/f7aa1ec25d), [`302e0ef8f`](https://github.com/withastro/astro/commit/302e0ef8f5), [`840412128`](https://github.com/withastro/astro/commit/840412128b), [`1f49cddf9`](https://github.com/withastro/astro/commit/1f49cddf9e), [`c55fbcb8e`](https://github.com/withastro/astro/commit/c55fbcb8ed), [`4a1cabfe6`](https://github.com/withastro/astro/commit/4a1cabfe6b), [`c4b0cb8bf`](https://github.com/withastro/astro/commit/c4b0cb8bf2), [`1f92d64ea`](https://github.com/withastro/astro/commit/1f92d64ea3), [`23dc9ea96`](https://github.com/withastro/astro/commit/23dc9ea96a), [`63a6ceb38`](https://github.com/withastro/astro/commit/63a6ceb38d), [`52209ca2a`](https://github.com/withastro/astro/commit/52209ca2ad), [`2303f9514`](https://github.com/withastro/astro/commit/2303f95142)]:
- astro@2.0.0-beta.2
- @astrojs/webapi@2.0.0-beta.0
5eba34fcc`](https://github.com/withastro/astro/commit/5eba34fcc6) Thanks [@bluwy](https://github.com/bluwy)! - Remove `astro:build:start` backwards compatibility code
a467139e1 Thanks @andreademasi! - Ignore warnings when traced file fails to parse#5241 070da6a79 Thanks @matthewp! - Fixes unknown error when using vercel/static
Updated dependencies [b6a478f37]:
abf41da77 Thanks @JuanM04! - Edge adapter includes all the generated files (all files inside dist/) instead of only entry.mjs#5086 f8198d250 Thanks @JuanM04! - Minify Edge Function output to save space
#5085 cd25abae5 Thanks @JuanM04! - Added includeFiles and excludeFiles options
The ability to customize SSR build configuration more granularly is now available in Astro. You can now customize the output folder for server (the server code for SSR), client (your client-side JavaScript and assets), and serverEntry (the name of the entrypoint server module). Here are the defaults:
import { defineConfig } from 'astro/config';
export default defineConfig({
output: 'server',
build: {
server: './dist/server/',
client: './dist/client/',
serverEntry: 'entry.mjs',
},
});
These new configuration options are only supported in SSR mode and are ignored when building to SSG (a static site).
## Integration hook change
The integration hook astro:build:start includes a param buildConfig which includes all of these same options. You can continue to use this param in Astro 1.x, but it is deprecated in favor of the new build.config options. All of the built-in adapters have been updated to the new format. If you have an integration that depends on this param we suggest upgrading to do this instead:
export default function myIntegration() {
return {
name: 'my-integration',
hooks: {
'astro:config:setup': ({ updateConfig }) => {
updateConfig({
build: {
server: '...',
},
});
},
},
};
}
Astro.cookies is a new API for manipulating cookies in Astro components and API routes.
In Astro components, the new Astro.cookies object is a map-like object that allows you to get, set, delete, and check for a cookie's existence (has):
---
type Prefs = {
darkMode: boolean;
};
Astro.cookies.set<Prefs>(
'prefs',
{ darkMode: true },
{
expires: '1 month',
}
);
const prefs = Astro.cookies.get<Prefs>('prefs').json();
---
<body data-theme={prefs.darkMode ? 'dark' : 'light'}></body>
Once you've set a cookie with Astro.cookies it will automatically be included in the outgoing response.
This API is also available with the same functionality in API routes:
export function post({ cookies }) {
cookies.set('loggedIn', false);
return new Response(null, {
status: 302,
headers: {
Location: '/login',
},
});
}
See the RFC to learn more.
742966456 Thanks @tony-sull! - Adding the withastro keyword to include the adapters on the Integrations Catalog7820096e1 Thanks @bholmesdev! - Fix react-dom on Vercel edge04ad44563 - > Astro v1.0 is out! Read the official announcement post.No breaking changes. This package is now officially stable and compatible with astro@1.0.0!
This change introduces a new "output target" configuration option (output). Setting the output target lets you decide the format of your final build, either:
"static" (default): A static site. Your final build will be a collection of static assets (HTML, CSS, JS) that you can deploy to any static site host."server": A dynamic server application. Your final build will be an application that will run in a hosted server environment, generating HTML dynamically for different requests.If output is omitted from your config, the default value "static" will be used.
When using the "server" output target, you must also include a runtime adapter via the adapter configuration. An adapter will adapt your final build to run on the deployed platform of your choice (Netlify, Vercel, Node.js, Deno, etc).
To migrate: No action is required for most users. If you currently define an adapter, you will need to also add output: 'server' to your config file to make it explicit that you are building a server. Here is an example of what that change would look like for someone deploying to Netlify:
import { defineConfig } from 'astro/config';
import netlify from '@astrojs/netlify/functions';
export default defineConfig({
adapter: netlify(),
+ output: 'server',
});
#4018 0cc6ede36 Thanks @okikio! - Support for 404 and 500 pages in SSR
#3973 5a23483ef Thanks @matthewp! - Adds support for Astro.clientAddress
The new Astro.clientAddress property allows you to get the IP address of the requested user.
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.
1666fdb4c Thanks @JuanM04! - Removed requirement for ENABLE_VC_BUILD=1, since Build Output v3 is now stable. Learn more.#3854 b012ee55 Thanks @bholmesdev! - [astro add] Support adapters and third party packages
9d01f93b Thanks @JuanM04! - Remove nodeVersion option for serverless target. Now it is inferred from Vercel#3216 114bf63e Thanks @JuanM04! - [BREAKING] Now with Build Output API (v3)! See the README to get started.
trailingSlash redirects works without a vercel.json file: just configure them inside your astro.config.mjsedge, serverless and static!serverless, your code isn't transpiled to CJS anymore.Migrate from v0.1
Change the import inside astro.config.mjs:
- import vercel from '@astrojs/vercel';
+ import vercel from '@astrojs/vercel/serverless';
Rename the ENABLE_FILE_SYSTEM_API environment variable to ENABLE_VC_BUILD, as Vercel changed it.
The output folder changed from .output to .vercel/output — you may need to update your .gitignore.
cafd36ef Thanks @FredKSchott! - Update README
#3185 eaad1769 Thanks @JuanM04! - Fixed trailingSlash for non-HTML pages
#3051 b0ba22c5 Thanks @JuanM04! - Fixed issues when converting from ESM to CJS
#3139 4ac37973 Thanks @JuanM04! - Added warning when ENABLE_FILE_SYSTEM_API is not found
815d62f1 Thanks @FredKSchott! - no changes.#3008 8bd49c95 Thanks @JuanM04! - Updated integrations' astro:build:done hook: now it matches the client dist when using SSR
#3022 8c04ff1f Thanks @matthewp! - Allows adapters to export default
#3000 b5ed099e Thanks @JuanM04! - Fixed build directory and clean-up
#3008 8bd49c95 Thanks @JuanM04! - Updated integrations' astro:build:done hook: now it matches the client dist when using SSR
#3000 b5ed099e Thanks @JuanM04! - Fixed build directory and clean-up