Skip to content

Commit

Permalink
Merge branch 'stream'
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeshay committed Nov 27, 2023
2 parents 839b188 + 95ab903 commit 81ccee9
Show file tree
Hide file tree
Showing 11 changed files with 44 additions and 31 deletions.
6 changes: 0 additions & 6 deletions .changeset/cool-plants-behave.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/loud-students-battle.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/poor-meals-film.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/shaggy-ravens-bow.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/silent-trainers-invent.md

This file was deleted.

15 changes: 14 additions & 1 deletion apps/infra/src/lib/constants/environments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,11 @@ const ENVIRONMENT_PROPS: Record<Environment, EnvironmentProps> = {
environment: Environments.PROD,
websites: [
{
aliases: ["www", "*"],
aliases: ["www.docs", "docs"],
hostedZoneName: "astro-aws.org",
mode: "static",
package: "@astro-aws/docs",
runtime: "nodejs20",
},
],
},
Expand All @@ -110,14 +111,26 @@ const ENVIRONMENT_PROPS: Record<Environment, EnvironmentProps> = {
{
mode: "static",
package: "@astro-aws/docs",
<<<<<<< HEAD
=======
runtime: "nodejs20",
>>>>>>> stream
},
{
mode: "ssr",
package: "@astro-aws/examples-base",
<<<<<<< HEAD
=======
runtime: "nodejs20",
>>>>>>> stream
},
{
mode: "ssr-stream",
package: "@astro-aws/examples-base",
<<<<<<< HEAD
=======
runtime: "nodejs20",
>>>>>>> stream
},
],
},
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"prettier": "prettier --ignore-unknown --no-error-on-unmatched-pattern --check .",
"prettier:fix": "pnpm run prettier --write",
"release:cut": "git add . && git commit -m 'new release' && pnpm run deploy:one infra -- PROD && pnpm run changeset publish && git push && git push --follow-tags",
"release:prepare": "pnpm run build && pnpm run changeset version && pnpm run prettier:fix",
"release:prepare": "pnpm run build && pnpm run synth && pnpm run changeset version && pnpm run prettier:fix",
"synth": "turbo run synth",
"synth:one": "turbo run synth --filter",
"test": "turbo run test",
Expand Down
14 changes: 14 additions & 0 deletions packages/adapter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @astro-aws/adapter

## 0.5.0

### Minor Changes

- 942d062: Added support for AWS Lambda response streaming
- 51c3296: Added support for response streaming
- 48d293a: Added support for 404 pages

### Patch Changes

- a96a6c4: Write a metadata file for constructs package
- 4054f82: Set supported features
- 374f1b9: Upgraded dependencies

## 0.4.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/adapter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@astro-aws/adapter",
"version": "0.4.0",
"version": "0.5.0",
"description": "An adapter for deploying an Astro application to AWS Lambda",
"keywords": [
"withastro",
Expand Down
13 changes: 13 additions & 0 deletions packages/constructs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @astro-aws/constructs

## 0.5.0

### Minor Changes

- 942d062: Added support for AWS Lambda response streaming
- 51c3296: Added support for response streaming
- 48d293a: Added support for 404 pages

### Patch Changes

- a96a6c4: Use metadata file from adapter to configure constructs
- 374f1b9: Upgraded dependencies

## 0.4.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/constructs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@astro-aws/constructs",
"version": "0.4.0",
"version": "0.5.0",
"description": "Constructs for deploying an Astro application to AWS Lambda",
"keywords": [
"withastro",
Expand Down

0 comments on commit 81ccee9

Please sign in to comment.