summaryrefslogtreecommitdiff
path: root/examples/framework-multiple/src (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2024-03-22[ci] formatGravatar Matthew Phillips 5-10/+7
2024-03-22Require that ASTRO_STUDIO_REMOTE_DB_URL is defined at runtime (#10533)Gravatar Matthew Phillips 12-4/+160
* Require that ASTRO_STUDIO_REMOTE_DB_URL is defined at runtime * Add changeset * Fix build
2024-03-22Fixes a style issue of `client:only` components in DEV mode during view ↵Gravatar Martin Trapp 2-6/+7
transitions. (#10532) * Fix DEV-mode-only style issue of client:only components during view transitions. * reworded changeset * fixed quotes
2024-03-22Avoid generators in render head API (#10528)chore/db-remote-server-destroyGravatar Bjorn Lu 3-8/+6
2024-03-22Avoid generators when crawling module graph (#10529)Gravatar Bjorn Lu 6-45/+81
2024-03-22[ci] formatGravatar Emanuele Stoppa 1-8/+12
2024-03-22chore: add issue triaging workflow (#10436)Gravatar Emanuele Stoppa 1-0/+53
* chore: add issue triaging workflow * Update CONTRIBUTING.md Co-authored-by: Bjorn Lu <bjornlu.dev@gmail.com> * better disclaimer * account for feature request * Update CONTRIBUTING.md Co-authored-by: Bjorn Lu <bjornlu.dev@gmail.com> * apply suggestion * Update CONTRIBUTING.md Co-authored-by: Arsh <69170106+lilnasy@users.noreply.github.com> --------- Co-authored-by: Bjorn Lu <bjornlu.dev@gmail.com> Co-authored-by: Arsh <69170106+lilnasy@users.noreply.github.com>
2024-03-22[ci] formatGravatar Ben Holmes 1-2/+2
2024-03-22db: dev --remote test fixture (#10527)Gravatar Ben Holmes 4-1/+208
* feat: scaffold basic proxy * feat: setupDbServer util * feat: ASTRO_INTERNAL_TEST_REMOTE bypass * feat: basic --remote test * chore: add port incrementer
2024-03-22chore: test with latest minor versions of node (#10526)Gravatar Arsh 1-3/+3
2024-03-21Improve Astro JSX rendering (#10473)Gravatar Bjorn Lu 3-117/+25
2024-03-21[ci] release (#10521)@astrojs/db@0.9.3Gravatar Houston (Bot) 3-6/+7
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-03-21Revert "Removing embedding appToken from CI (#10497)" (#10520)Gravatar Matthew Phillips 2-1/+9
* Revert "Removing embedding appToken from CI (#10497)" This reverts commit 2fc7231df28e5a3425ee47b871ba3766e0856bd8. * Changeset
2024-03-20[ci] release (#10508)@astrojs/db@0.9.2Gravatar Houston (Bot) 3-6/+7
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-03-20[ci] formatGravatar Matthew Phillips 3-7/+5
2024-03-20Ensure --force-reset drops previous tables (#10506)Gravatar Matthew Phillips 4-1/+83
* Ensure --force-reset drops previous tables * Remove unused import * Do suggestions
2024-03-20[ci] release (#10503)astro@4.5.8@astrojs/vercel@7.4.0@astrojs/mdx@2.2.1@astrojs/markdown-remark@4.3.1@astrojs/db@0.9.1Gravatar Houston (Bot) 42-87/+101
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-03-20[ci] formatGravatar Arsh 3-6/+10
2024-03-20deprecation(vercel): vercel-edge-middleware.js file (#10476)Gravatar Arsh 6-17/+34
* deprecation(vercel): `vercel-edge-middleware.js` file * add changeset * `Astro.locals.waitUntil()` -> `Astro.locals.vercel.edge.waitUntil()` * export edge locals interface
2024-03-20chore: update Babel version (#10504)Gravatar Erika 3-64/+123
* chore: update Babel version * Create sharp-cobras-drive.md
2024-03-20[ci] formatGravatar Ben Holmes 2-2/+2
2024-03-20db: expose `isDbError()` utility (#10498)Gravatar Ben Holmes 10-0/+192
* feat: expose isDbError * test: foreign key constraint error detection * fix(test); use isDbError * chore: changeset
2024-03-20Pass meta to shiki transformers (#10494)Gravatar Bjorn Lu 5-3/+55
2024-03-20[ci] release (#10488)create-astro@4.7.5astro@4.5.7@astrojs/node@8.2.5@astrojs/db@0.9.0Gravatar Houston (Bot) 43-101/+98
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-03-20Fix: remove `db.transaction()` from types until supported (#10501)Gravatar Ben Holmes 4-3/+22
* fix: remove transaction from db types * fix: transaction() runtime error * chore: changeset
2024-03-19Removing embedding appToken from CI (#10497)Gravatar Matthew Phillips 2-4/+6
2024-03-19chore(db): Add missing github-slugger dependency & tests (#10405)Gravatar James Garbutt 6-3/+70
* chore: add missing github-slugger dependency * test: add column-queries data loss tests * chore: remove unused vars * test: assert length rather than message content
2024-03-19[ci] formatGravatar Andrés Correa Casablanca 2-4/+4
2024-03-19fix: do not append trailing slash to subresource urls (#10491)Gravatar Andrés Correa Casablanca 4-54/+81
* fix: do not append traling slash to subresource urls Signed-off-by: Andres Correa Casablanca <andreu@kindspells.dev> * test: fix broken test Signed-off-by: Andres Correa Casablanca <andreu@kindspells.dev> * refactor: packages/integrations/node/src/serve-static.ts Co-authored-by: Arsh <69170106+lilnasy@users.noreply.github.com> --------- Signed-off-by: Andres Correa Casablanca <andreu@kindspells.dev> Co-authored-by: Arsh <69170106+lilnasy@users.noreply.github.com>
2024-03-19fix: void elements (#10493)Gravatar firefoxic 2-1/+6
* Fix void elements HTML is not XML. It doesn't have self-closing tags, it has void element tags that don't need closing slashes. Now generated void elements (e.g. link with path to style file) do not pass validation, which can be easily fixed by simply removing two characters. * Add changeset * Apply suggestions from code review --------- Co-authored-by: Arsh <69170106+lilnasy@users.noreply.github.com>
2024-03-19db: Expose aggregation helpers (#10479)Gravatar Ben Holmes 5-5/+29
* deps: drizzle 0.30 * feat: expose drizzle aggregation helpers * chore: changeset
2024-03-19fix(packages/create-astro): wait for writeFile to complete in updateFiles ↵Gravatar Satya Rohith 2-1/+6
(#10487) * fix(packages/create-astro): wait for writeFile to complete in updateFiles Co-authored-by: Divy Srivastava <dj.srivastava23@gmail.com> * changeset --------- Co-authored-by: Divy Srivastava <dj.srivastava23@gmail.com> Co-authored-by: Emanuele Stoppa <my.burning@gmail.com>
2024-03-18[ci] release (#10483)@astrojs/db@0.8.8Gravatar Houston (Bot) 3-6/+7
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-03-18remove token wait time (#10477)Gravatar Fred K. Schott 2-4/+5
2024-03-18[ci] release (#10471)astro@4.5.6@astrojs/node@8.2.4@astrojs/db@0.8.7Gravatar Houston (Bot) 40-95/+121
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-03-18[ci] formatGravatar Arsh 2-6/+7
2024-03-18qol(endpoints): helpful error message when a response is not provided (#10455)Gravatar Arsh 4-0/+84
* qol(endpoints): helpful error message when a response is not provded * add changeset * add test
2024-03-18[ci] formatGravatar Arsh 2-15/+17
2024-03-18fix(node): handle offshoot promise rejections (#10454)Gravatar Arsh 4-5/+51
* fix(node): handle offshoot promise rejections * add test * add changeset * Update packages/integrations/node/test/errors.test.js
2024-03-18[ci] formatGravatar Arsh 5-41/+39
2024-03-18fix(rendering): allow framework renders to be cancelled (#10448)Gravatar Arsh 11-29/+97
2024-03-18[ci] formatGravatar Mark Gaze 1-6/+6
2024-03-18Fix issue with JSON schema generation when schema is a function (#10426)Gravatar Mark Gaze 11-9/+120
2024-03-18refactor: fix typo in index.ts (#10227)Gravatar Ikko Eltociear Ashimine 1-1/+1
* refactor: fix typo in index.ts colum -> column * Apply suggestions from code review Co-authored-by: Bjorn Lu <bjornlu.dev@gmail.com> * Apply suggestions from code review --------- Co-authored-by: Erika <3019731+Princesseuh@users.noreply.github.com> Co-authored-by: Bjorn Lu <bjornlu.dev@gmail.com>
2024-03-18[ci] update lockfile (#10472)Gravatar Houston (Bot) 1-905/+811
Co-authored-by: matthewp <matthewp@users.noreply.github.com>
2024-03-18[ci] formatGravatar Matthew Phillips 1-5/+13
2024-03-18Create new token when current has expired (#10435)Gravatar Matthew Phillips 2-14/+48
* Create new token when current has expired * Add changeset * Rename renew timer function: * Handle creating a new token on renewal
2024-03-18[ci] formatGravatar Ben Holmes 2-2/+2
2024-03-18fix type error in `seed` stub on initial setup (#10457)Gravatar Ben Holmes 6-14/+16
* fix: move db type to base types for seed stub * chore: changeset * fix(test): bad NOW import
2024-03-15[ci] release (#10453)astro@4.5.5@astrojs/db@0.8.6Gravatar Houston (Bot) 37-82/+76
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>