Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
42 KiB
@astrojs/netlify
2.4.0
Minor Changes
-
#7615
f21357b69
Thanks @ematipico! - The Netlify 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 Netlify 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 netlify from '@astrojs/netlify/functions'; export default defineConfig({ output: 'server', adapter: netlify(), build: { split: true, }, });
Patch Changes
2.3.0
Minor Changes
-
#7067
57f8d14c0
Thanks @matthewp! - Support for experimental redirectsThis adds support for the redirects RFC in the Netlify adapter, including a new
@astrojs/netlify/static
adapter for static sites.No changes are necessary when using SSR. Simply use configured redirects and the adapter will update your
_redirects
file.
Patch Changes
-
#7260
39403c32f
Thanks @natemoo-re! - Unflags support foroutput: 'hybrid'
mode, which enables pre-rendering by default. The additionalexperimental.hybridOutput
flag can be safely removed from your configuration. -
Updated dependencies [
57f8d14c0
,414eb19d2
,a7e2b37ff
,dd1a6b6c9
,d72cfa7ca
,144813f73
,b5213654b
,e3b8c6296
,890a2bc98
,39403c32f
,101f03209
]:- astro@2.6.0
2.2.3
Patch Changes
-
#6991
719002ca5
Thanks @MoustaphaDev! - Enable experimental support for hybrid SSR with pre-rendering enabled by defaultastro.config.mjs
import { defineConfig } from 'astro/config'; export defaultdefineConfig({ 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>
-
#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
]:- astro@2.5.0
2.2.2
Patch Changes
- #6793
1e3873c04
Thanks @andremralves! - fix: no edge functions deployed to netlify
2.2.1
Patch Changes
-
#6651
416ceb973
Thanks @matthewp! - Use Deno API to set Astro.clientAddress in Netlify Edge -
Updated dependencies [
72fed684a
,45bff6fcc
,52d7a4a01
,9e88e0f23
,fa84f1a7d
,a98f6f418
,7f74326b7
]:- astro@2.2.1
2.2.0
Minor Changes
- #6213
afbbc4d5b
Thanks @Princesseuh! - Updated compilation settings to disable downlevelling for Node 14
Patch Changes
- Updated dependencies [
fec583909
,b087b83fe
,694918a56
,a20610609
,a4a74ab70
,75921b3cd
,afbbc4d5b
]:- astro@2.1.0
- @astrojs/webapi@2.1.0
2.1.3
Patch Changes
-
#6323
5e26bc891
Thanks @Princesseuh! - Updated Undici to 5.20.0. This fixes a security issue and handling of cookies in certain cases in dev -
#6317
2eb73cb9d
Thanks @bluwy! - Use .mjs extension when building to support CJS environments -
Updated dependencies [
5e26bc891
,a156ecbb7
,ccd72e6bb
,504c7bacb
,63dda6ded
,f91a7f376
]:- astro@2.0.15
2.1.2
Patch Changes
-
#6117
32abe49bd
Thanks @Princesseuh! - Fix polyfills not being available in certain cases -
Updated dependencies [
f6fc662c3
,592386b75
,1b591a143
,bf8d7366a
,ec38a8921
,f20a85b64
,9f22ac3d0
,cee70f5c6
,ac7fb04d6
,d1f5611fe
,2189170be
,32abe49bd
]:- astro@2.0.7
2.1.1
Patch Changes
2.1.0
Minor Changes
- #5874
1c230f103
Thanks @juanmiguelguerrero! - Addbuilders
config option for Netlify On-demand Builders.
Patch Changes
- Updated dependencies [
b4432cd6b
,98a4a914b
,071e1dee7
,322e059d0
,b994f6f35
,12c68343c
]:- astro@2.0.3
2.0.0
Major Changes
-
#5584
9963c6e4d
& #5842c4b0cb8bf
Thanks @wulinsheng123 and @natemoo-re! - Breaking Change: client assets are built to an_astro
directory in the build output directory. Previously these were built to various locations, includingassets/
,chunks/
and the root of build output.You can control this location with the new
build
configuration option namedassets
. -
#5707
5eba34fcc
Thanks @bluwy! - Removeastro:build:start
backwards compatibility code -
#5806
7572f7402
Thanks @matthewp! - Make astro a peerDependency of integrationsThis marks
astro
as a peerDependency of several packages that are already gettingmajor
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
-
#5768
2f6745019
Thanks @Princesseuh! - Fix set-cookies not working in certain cases when using Node 18+ -
#5904
f5adbd6b5
Thanks @matthewp! - Support prerender in _redirects -
#5885
8f1ae06e5
Thanks @natemoo-re! - Fix issue with prerendered pages when usingedge-functions
adapter -
Updated dependencies [
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
]:- astro@2.0.0
- @astrojs/webapi@2.0.0
2.0.0-beta.4
Patch Changes
-
#5904
f5adbd6b5
Thanks @matthewp! - Support prerender in _redirects -
Updated dependencies [
4987d6f44
,304823811
,46ecd5de3
,7325df412
,a8d3e7924
,5fd9208d4
]:- astro@2.0.0-beta.4
- @astrojs/webapi@2.0.0-beta.1
2.0.0-beta.3
Patch Changes
-
#5885
8f1ae06e5
Thanks @natemoo-re! - Fix issue with prerendered pages when usingedge-functions
adapter -
Updated dependencies [
16dc36a87
,05caf445d
,a342a486c
,ce5c5dbd4
,be901dc98
,e818cc046
,8c100a6fe
,64b8082e7
,899214298
,3a00ecb3e
,1ca81c16b
,b66d7195c
]:- astro@2.0.0-beta.3
2.0.0-beta.2
Major Changes
-
#5842
c4b0cb8bf
Thanks @natemoo-re! - Breaking Change: client assets are built to an_astro
directory in the build output directory. Previously these were built to various locations, includingassets/
,chunks/
and the root of build output.You can control this location with the new
build
configuration option namedassets
. -
#5806
7572f7402
Thanks @matthewp! - Make astro a peerDependency of integrationsThis marks
astro
as a peerDependency of several packages that are already gettingmajor
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
,1f92d64ea
,c2180746b
,ae8a012a7
,cf2de5422
,ec09bb664
,665a2c222
,f7aa1ec25
,302e0ef8f
,840412128
,1f49cddf9
,c55fbcb8e
,4a1cabfe6
,c4b0cb8bf
,1f92d64ea
,23dc9ea96
,63a6ceb38
,52209ca2a
,2303f9514
]:- astro@2.0.0-beta.2
- @astrojs/webapi@2.0.0-beta.0
2.0.0-beta.1
Patch Changes
- #5768
2f6745019
Thanks @Princesseuh! - Fix set-cookies not working in certain cases when using Node 18+
2.0.0-beta.0
Major Changes
1.3.0
Minor Changes
-
#5297
d2960984c
Thanks @natemoo-re! - Introduces the experimental Prerender API.Note
This API is not yet stable and is subject to possible breaking changes!
- Deploy an Astro server without sacrificing the speed or cacheability of static HTML.
- The Prerender API allows you to statically prerender specific
pages/
at build time.
Usage
- First, run
astro build --experimental-prerender
or enableexperimental: { prerender: true }
in yourastro.config.mjs
file. - Then, include
export const prerender = true
in any file in thepages/
directory that you wish to prerender.
1.2.2
Patch Changes
1.2.1
Patch Changes
1.2.0
Minor Changes
-
#5056
e55af8a23
Thanks @matthewp! - # New build configurationThe 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), andserverEntry
(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 parambuildConfig
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 newbuild.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: '...', }, }); }, }, }; }
1.1.0
Minor Changes
-
#4876
d3091f89e
Thanks @matthewp! - Adds the Astro.cookies APIAstro.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.
Patch Changes
- #4842
812658ad2
Thanks @bluwy! - Add missing dependencies, support strict dependency installation (e.g. pnpm)
1.0.4
Patch Changes
1.0.3
Patch Changes
- #4722
4bc70f354
Thanks @bholmesdev! - Fix route validation failures on Netlify Edge
1.0.2
Patch Changes
- #4558
742966456
Thanks @tony-sull! - Adding thewithastro
keyword to include the adapters on the Integrations Catalog
1.0.1
Patch Changes
1.0.0
Major Changes
-
04ad44563
- > 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
!
Patch Changes
- Updated dependencies [
04ad44563
]:- @astrojs/webapi@1.0.0
0.5.0
Minor Changes
-
#4015
6fd161d76
Thanks @matthewp! - Newoutput
configuration optionThis 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 theadapter
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 addoutput: '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', });
-
#3973
5a23483ef
Thanks @matthewp! - Adds support for Astro.clientAddressThe 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.
0.4.10
Patch Changes
0.4.9
Patch Changes
- #3854
b012ee55
Thanks @bholmesdev! - [astro add] Support adapters and third party packages
0.4.8
Patch Changes
0.4.7
Patch Changes
- #3734
4acd245d
Thanks @bholmesdev! - Fix: append shim to top of built file to avoid "can't read process of undefined" issues
0.4.6
Patch Changes
- #3673
ba5ad785
Thanks @hippotastic! - Fix react dependencies to improve test reliability
0.4.5
Patch Changes
- #3612
fca58cfd
Thanks @bholmesdev! - Fix: "vpath" import error when building for netlify edge
0.4.4
Patch Changes
- #3592
0ddcef20
Thanks @tony-sull! - Adds support for base64 encoded responses in Netlify Functions
0.4.3
Patch Changes
0.4.2
Patch Changes
- #3503
207f58d1
Thanks @williamtetlow! - Aliasfrom 'astro'
imports to'@astro/types'
Update Deno and Netlify integrations to handle vite.resolves.alias as an array
0.4.1
Patch Changes
- Updated dependencies [
4de53ecc
]:- @astrojs/webapi@0.12.0
0.4.0
Minor Changes
- #3381
43d92227
Thanks @sarahetter! - Updating out directories for Netlify Functions
- #3377
e1294c42
Thanks @sarahetter! - Change out directories on dist and serverEntry
0.3.4
Patch Changes
- #3342
352fc316
Thanks @thepassle! - create redirects file for netlify edge adapter
0.3.3
Patch Changes
0.3.2
Patch Changes
0.3.1
Patch Changes
- #3150
05cf1a50
Thanks @matthewp! - Outputs manifest.json in correct folder for Netlify Edge Functions
0.3.0
Minor Changes
0.2.3
Patch Changes
0.2.2
Patch Changes
- #3079
9f248b05
Thanks @hippotastic! - Make Netlify adapter actually append redirects
0.2.1
Patch Changes
815d62f1
Thanks @FredKSchott! - no changes.
0.2.0
Minor Changes
-
732ea388
Thanks @FredKSchott! - Improve the Netlify adapter:- Remove
site
config requirement - Fix an issue where query params were being stripped
- Pass the event body to the request object
- Remove
Patch Changes
- #2996
77aa3a5c
Thanks @bholmesdev! - Add human-readable error when a site is not provided in your astro.config
0.1.1-beta.1
Patch Changes
0.1.1-beta.0
Patch Changes
- #2996
77aa3a5c
Thanks @bholmesdev! - Add human-readable error when a site is not provided in your astro.config
0.1.0
Minor Changes
e425f896
Thanks @FredKSchott! - Update config options to respect RFC0019