diff options
Diffstat (limited to 'packages/integrations/deno')
-rw-r--r-- | packages/integrations/deno/CHANGELOG.md | 10 | ||||
-rw-r--r-- | packages/integrations/deno/package.json | 2 |
2 files changed, 10 insertions, 2 deletions
diff --git a/packages/integrations/deno/CHANGELOG.md b/packages/integrations/deno/CHANGELOG.md index 3f53001c0..b54fa7e08 100644 --- a/packages/integrations/deno/CHANGELOG.md +++ b/packages/integrations/deno/CHANGELOG.md @@ -1,5 +1,13 @@ # @astrojs/node +## 1.0.1 + +### Patch Changes + +- [#4558](https://github.com/withastro/astro/pull/4558) [`742966456`](https://github.com/withastro/astro/commit/7429664566f05ecebf6d57906f950627e62e690c) Thanks [@tony-sull](https://github.com/tony-sull)! - Adding the `withastro` keyword to include the adapters on the [Integrations Catalog](https://astro.build/integrations) + +* [#4562](https://github.com/withastro/astro/pull/4562) [`294122b4e`](https://github.com/withastro/astro/commit/294122b4e423107bd9d4854a266f029acbe5e293) Thanks [@zicklag](https://github.com/zicklag)! - Make Deno SSR Backend Render Custom 404 Pages + ## 1.0.0 ### Major Changes @@ -40,7 +48,7 @@ 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. diff --git a/packages/integrations/deno/package.json b/packages/integrations/deno/package.json index 0bd54a23d..0f716927d 100644 --- a/packages/integrations/deno/package.json +++ b/packages/integrations/deno/package.json @@ -1,7 +1,7 @@ { "name": "@astrojs/deno", "description": "Deploy your site to a Deno server", - "version": "1.0.0", + "version": "1.0.1", "type": "module", "types": "./dist/index.d.ts", "author": "withastro", |