Skip to content

Conversation

@pull
Copy link

@pull pull bot commented May 6, 2022

See Commits and Changes for more details.


Created by pull[bot]

Can you help keep this open source service alive? 💖 Please sponsor : )

astrobot-houston and others added 30 commits November 15, 2025 09:21
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
* Fix wildcard hostname matching to reject hostnames without dots

* Update .changeset/fix-wildcard-hostname-matching.md

Co-authored-by: Florian Lefebvre <contact@florian-lefebvre.dev>

---------

Co-authored-by: Florian Lefebvre <contact@florian-lefebvre.dev>
Removing this because:

- It's hard to predict what its requirements are and...
- You can't run this locally to prevent your PR getting blocked.
- Every time you fix an issue it brings up you wind up waiting ~30
minutes for all tests to run again.
- We already have human reviewers who review the changesets.

All in all this slows down PRs getting merged in.
* fix: require explicit authorization to use data urls

* chore: changeset

* fix: extend tests

* fix: tests

* fix: test
* test: Add passthrough-image-service fixture with config, assets, and page

* test: Add tests to verify passthrough image service preserves formats and tags

* fix: Add validateOptions to noopService to handle transform images

* chore: Add changeset

* chore: Fix changeset

* fix: Simplify noop service by removing ESM image check and format field
* fix(astro): handle invalid encrypted props in server island #14768

* adjust changelog content to format guidelines

* remove unused err variable

as per linter analysis

* set a value in encryptedProps which triggers the right error

 rather than .

* be nice to linter and typescript checks

(attempt to)

* send a 400 bad response when encrypted slots are invalid

* Add type to decryptedSlots
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Florian Lefebvre <contact@florian-lefebvre.dev>
Co-authored-by: Sarah Rainsberger <5098874+sarah11918@users.noreply.github.com>
Co-authored-by: Florian Lefebvre <contact@florian-lefebvre.dev>
Co-authored-by: Sarah Rainsberger <5098874+sarah11918@users.noreply.github.com>
Co-authored-by: Florian Lefebvre <contact@florian-lefebvre.dev>
…ojs/netlify` (#14716)

Co-authored-by: Florian Lefebvre <contact@florian-lefebvre.dev>
Co-authored-by: Emanuele Stoppa <my.burning@gmail.com>
Co-authored-by: Sarah Rainsberger <5098874+sarah11918@users.noreply.github.com>
Co-authored-by: Florian Lefebvre <contact@florian-lefebvre.dev>
Co-authored-by: Sarah Rainsberger <5098874+sarah11918@users.noreply.github.com>
Co-authored-by: Florian Lefebvre <contact@florian-lefebvre.dev>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
astrobot-houston and others added 30 commits January 21, 2026 14:50
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
…mands (#15069)

* Add --db-app-token CLI flag to astro db execute, push, and verify commands

* Add changeset

* Fix type errors in utils.js revealed on build

* Bump timeout in unrelated test file to avoid flakiness in Windows-2025/Node 22 check, from 1000ms to 3000ms for two test cases

* Add --db-app-token CLI parameter to query command

* Update changeset

* Update .changeset/happy-rooms-scream.md

* Update .changeset/happy-rooms-scream.md

Co-authored-by: Sarah Rainsberger <5098874+sarah11918@users.noreply.github.com>

---------

Co-authored-by: Erika <3019731+Princesseuh@users.noreply.github.com>
Co-authored-by: Sarah Rainsberger <5098874+sarah11918@users.noreply.github.com>
Co-authored-by: Sarah Rainsberger <5098874+sarah11918@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
The Vercel adapter outputs build artifacts to .vercel/output which should be gitignored. This change automatically adds .vercel to .gitignore when running `astro add vercel`, following the same pattern used for Cloudflare, Tailwind, and other integrations.

Closes #15058

Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
* Prevent accidentally calling the wrong server island component

* Update .changeset/bright-bulldogs-heal.md

Co-authored-by: Florian Lefebvre <contact@florian-lefebvre.dev>

---------

Co-authored-by: Florian Lefebvre <contact@florian-lefebvre.dev>
* Fix: Remove await from getActionResult example

* Fix await usage in getActionResult example

Removed unnecessary await from the getActionResult example in the changeset.

---------

Co-authored-by: Erika <3019731+Princesseuh@users.noreply.github.com>
* fix(errors): Only style valid URLs in the error overlay

* chore: changeset

* feat: unit tests
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
* feat(dev-toolbar): add DevToolbarPlacement type

Add exported type for toolbar placement options and extend
DevToolbarMetadata to include optional placement property.

* feat(dev-toolbar): add placement config option

Add optional `placement` property to devToolbar config schema
and interface with JSDoc documentation.

* feat(dev-toolbar): pass placement config to client metadata

Pass the devToolbar.placement config value to the client via
__astro_dev_toolbar__ metadata injection.

* feat(dev-toolbar): implement placement priority chain

Implement the settings priority chain:
1. defaultSettings (hardcoded 'bottom-center')
2. Config placement (from astro.config.mjs)
3. localStorage (user's persisted choice)

This allows project-level default placement while still
respecting user's UI-driven placement preferences.

* test(dev-toolbar): add config validation tests for placement

Test that:
- Valid placement values are accepted
- Placement is optional (can be omitted)
- Invalid placement values are rejected

* chore: add changeset for devToolbar.placement config

Minor version bump per Astro convention for new config options.

* docs: Comment improvements

Include @Version added and tweak comment copy

Co-authored-by: Sarah Rainsberger <5098874+sarah11918@users.noreply.github.com>

* docs: Update changeset

Co-authored-by: Sarah Rainsberger <5098874+sarah11918@users.noreply.github.com>

* docs: Polish changeset formatting and fix typo

- Add js syntax highlighting to code block
- Fix spacing in comment
- Fix "overriden" → "overridden" typo

---------

Co-authored-by: Sarah Rainsberger <5098874+sarah11918@users.noreply.github.com>
* Allow creation of partitioned cookies

* Add changeset

* Update changelog to minor

* Update changeset with detailed description and example

---------

Co-authored-by: Erika <3019731+Princesseuh@users.noreply.github.com>
* feat: allow for async parsing in file loader

* test: add test for async file parser

* test: get test working

* revert unintentional change

* add changeset

* chore: changeset

* Apply suggestions from code review

Co-authored-by: Sarah Rainsberger <5098874+sarah11918@users.noreply.github.com>

---------

Co-authored-by: Erika <3019731+Princesseuh@users.noreply.github.com>
Co-authored-by: Sarah Rainsberger <5098874+sarah11918@users.noreply.github.com>
* feat(sharp): add kernel option to image service config

* bigger, better changeset

* add more succinct docs to image.service.config.kernel

* Apply suggestions from code review

Co-authored-by: Sarah Rainsberger <5098874+sarah11918@users.noreply.github.com>

---------

Co-authored-by: Sarah Rainsberger <5098874+sarah11918@users.noreply.github.com>
* add ImageTransform.background

fix outdated comment

add missing url param handling, and remove support for object

move sharp's flatten() after any resize()

* embetternification of the changeset

* Update .changeset/shaky-bananas-clap.md

Co-authored-by: Sarah Rainsberger <5098874+sarah11918@users.noreply.github.com>

---------

Co-authored-by: Sarah Rainsberger <5098874+sarah11918@users.noreply.github.com>
* feat: add `retainBody` option to the `glob()` loader

* Remove redundant check on rendered

---------

Co-authored-by: Erika <3019731+Princesseuh@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Sarah Rainsberger <5098874+sarah11918@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.