summaryrefslogtreecommitdiff
path: root/examples/framework-vue/src (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2024-12-09fix: catch image errors correctly (#12695)Gravatar Matt Kane 2-1/+6
2024-12-09[ci] formatGravatar Florian Lefebvre 4-5/+5
2024-12-09fix: do not freeze process.env in dev (#12585)Gravatar Florian Lefebvre 12-81/+113
Co-authored-by: Emanuele Stoppa <my.burning@gmail.com>
2024-12-06[error message] updates docs link (#12653)Gravatar Sarah Rainsberger 2-1/+6
2024-12-06[ci] formatGravatar Emanuele Stoppa 1-2/+1
2024-12-06fix(routing): don't attach locals to request (#12647)Gravatar Emanuele Stoppa 7-20/+37
* fix(routing): don't attach locals to request * apply feedback
2024-12-06Fix frontmatter parsing with utf8 bom (#12664)Gravatar Bjorn Lu 3-6/+32
2024-12-05Only parse frontmatter at top of file (#12646)Gravatar Bjorn Lu 3-1/+88
2024-12-05Bugfix/extra whitespace in code (#12570)Gravatar Sean van Zuidam 2-0/+7
Co-authored-by: Bjorn Lu <bjornlu.dev@gmail.com>
2024-12-05[ci] release (#12617)astro@5.0.3@astrojs/upgrade@0.4.1@astrojs/rss@4.0.10Gravatar Houston (Bot) 48-136/+109
* [ci] release * Update packages/astro/CHANGELOG.md --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Emanuele Stoppa <my.burning@gmail.com>
2024-12-05fix(ssr): duplicate custom headers (#12518)Gravatar Emanuele Stoppa 7-4/+71
* fix(ssr): duplicate custom headers * rebase
2024-12-05[ci] formatGravatar Matthew Phillips 5-11/+11
2024-12-05Keep clientAddress on cloned requests (#12613)Gravatar Matthew Phillips 8-22/+55
* Keep clientAddress on cloned requests User observed that calling actions resulted in an error about not having clientRequest available. This is because the user had a middleware that cloned the request, which loses all of the symbols. The fix is to pass the clientAddress directly into the RenderContext. This deprecates the `clientAddressSymbol`, but we need to keep it for now because some adapters set the clientAddress that way. Note that similar fixes should be done for other symbol usage on the Request object (locals is one). * changeset * fix build stuff * Update packages/astro/src/core/render-context.ts * Update changeset
2024-12-05fix(@astrojs/rss): use standard rss content type, add utf-8 charset (#12644)Gravatar Kun Yan 3-2/+7
* fix(@astrojs/rss): use standard rss content type, add utf-8 charset * Update .changeset/loud-cobras-rhyme.md --------- Co-authored-by: Matt Kane <m@mk.gg>
2024-12-05[ci] formatGravatar Matt Kane 2-24/+26
2024-12-05fix: correctly copy to clipboard in `astro info` (#12641)Gravatar Matt Kane 3-30/+102
* fix: correctly copy to clipboard on mac * Add platform-specific clipboard handling for Linux * Wording * Update .changeset/angry-pumas-act.md Co-authored-by: Emanuele Stoppa <my.burning@gmail.com> * Use console.info --------- Co-authored-by: Emanuele Stoppa <my.burning@gmail.com>
2024-12-05Improve Zod error messages and user config error messages (#12634)Gravatar Chris Swithinbank 9-53/+101
* Upstream Zod error map improvements from Starlight * Update tests * Use Zod error map when validating user config * Update user config error formatting for error map * Tweak colours * Separate colour and indentation steps for clarity * Fix broken link to experimental flag documentation * Add changeset * Update tests * Fix one more test * Use existing utility for bold and other Markdown formatting * Extract codeRegex to top level * Don’t dim text and tweak indentation
2024-12-05[docs] update error message URLs (#12645)Gravatar Sarah Rainsberger 1-23/+23
2024-12-05[ci] formatGravatar Emanuele Stoppa 3-4/+4
2024-12-05chore: better warning (#12642)Gravatar Emanuele Stoppa 4-1/+11
* chore: better warning * Apply suggestions from code review Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> --------- Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
2024-12-05fix: use correct datastore location in test environment (#12640)Gravatar Matt Kane 3-5/+8
2024-12-05Clean up content layer sync in build and sync api (#12633)Gravatar Bjorn Lu 3-0/+12
2024-12-05[ci] formatGravatar mtwilliams 1-1/+1
2024-12-05fix(i18n): pass search params to fallback (#12547)Gravatar mtwilliams 5-3/+30
* fix(i18n): pass search params to fallback * test(i18n): add test for search param fix * test(i18n): resolve mantainer comments
2024-12-04fix: don't apply duplicate class to images (#12631)Gravatar Matt Kane 4-4/+130
* fix: don't apply duplicate class to images * Fromat
2024-12-04[ci] formatGravatar Arpan Patel 2-12/+13
2024-12-04fix custom `assetFileNames` issue (#12449)Gravatar Arpan Patel 7-32/+43
* fix custom assetFileNames issue * fix error * fix asset name * handle edge cases fo multiple asset dirs * add tests * format * add changeset * improve changeset * add missing files for tests * Update neat-papayas-brake.md improve changeset
2024-12-04[docs] removes link in config reference (#12630)Gravatar Sarah Rainsberger 1-1/+1
2024-12-04fix: experimental svg types (#12625)Gravatar Emanuele Stoppa 4-38/+48
* fix: experimental svg types * apply suggestion
2024-12-04fix(db): import base virtual module ID (#12628)Gravatar Matt Kane 2-2/+7
2024-12-04chore: use the `/repro` route for reproduction (#12627)Gravatar Emanuele Stoppa 2-2/+2
2024-12-04[ci] formatGravatar Matt Kane 1-1/+3
2024-12-04fix: handle uppercase image file extensions (#12623)Gravatar Matt Kane 6-1/+25
2024-12-04Improve serverEntrypoint codegen (#12566)Gravatar Bjorn Lu 2-2/+2
* Remove fileurl handling * fix
2024-12-04Remove misleading warning when using a custom renderer (#12461)Gravatar kyr0 12-9/+218
* fix: this message adds no value to developers; it checks against a static list of renderers while Astro allows to dynamically add custom renderers * feat: added framework-custom example to demonstrate the use of custom renderers with the log message fixed * chore: changeset added and package lock updated * chore: fix lint issue, but keeping arguments commented out for reference (real-world use) * chore: removed the example and updated the changeset accordingly * test: added fixture and test to prove the new behaviour * test: removing this specific test since it's only guarding if we ever revert this PR * Update test --------- Co-authored-by: Emanuele Stoppa <my.burning@gmail.com> Co-authored-by: bluwy <bjornlu.dev@gmail.com>
2024-12-04ci: update repro link (#12620)Gravatar Emanuele Stoppa 2-2/+2
* ci: update repro link * Apply suggestions from code review
2024-12-04fix(upgrade): verify `astro` installation before upgrade to prevent false ↵Gravatar Arpan Patel 2-1/+12
success (#12576)
2024-12-03[ci] release (#12606)astro@5.0.2Gravatar Houston (Bot) 27-52/+53
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-12-03feat: make basics link point to final article (#12600)Gravatar Erika 1-1/+1
2024-12-03[ci] formatGravatar Emanuele Stoppa 1-1/+1
2024-12-03refactor: use `vitest` for benchmarks (#12605)Gravatar Emanuele Stoppa 17-147/+324
* refactor: use `vitest` for benchmarks * increase timeout * increase timeout * Restore correct label
2024-12-03chore: update examples to use latest node (#12603)Gravatar Emanuele Stoppa 3-41/+6
2024-12-03chore: add null check (#12607)Gravatar Matt Kane 1-0/+3
2024-12-03fix: include undefined in types for getEntry with content layer (#12601)Gravatar Matt Kane 2-1/+8
2024-12-03[ci] formatGravatar Armand Philippot 2-2/+2
2024-12-03fix(examples): update Sass usage in Starlog example (#12596)Gravatar Armand Philippot 4-60/+71
* fix: replace Sass @imports with @use * fix: move nested rules under top-level declarations
2024-12-03[ci] release (#12595)astro@5.0.1@astrojs/web-vitals@3.0.1@astrojs/vue@5.0.1@astrojs/tailwind@5.1.3@astrojs/svelte@7.0.1@astrojs/mdx@4.0.1@astrojs/markdoc@0.12.1Gravatar Houston (Bot) 40-88/+115
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-12-03fix: devtools warnings about dev toolbar form fields (#12590)Gravatar Kid 3-0/+7
Co-authored-by: Erika <3019731+Princesseuh@users.noreply.github.com>
2024-12-03fix: cleanup peer deps ranges (#12594)Gravatar Erika 7-6/+16
2024-12-03test: update `sitemap` tests to use the latest `@astrojs/node` (#12593)Gravatar Emanuele Stoppa 2-3/+43