fix(deps): update astro (astro) - autoclosed #138
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
11.0.4
->11.1.0
3.1.2
->3.1.8
4.0.7
->4.0.9
3.1.6
->3.2.1
5.1.0
->5.1.2
1.10.2
->1.10.4
4.16.1
->4.16.7
0.4.2
->0.4.4
0.7.2
->0.7.4
0.36.1
->0.37.1
Release Notes
withastro/adapters (@astrojs/cloudflare)
v11.1.0
Compare Source
Minor Changes
44dfa99
Thanks @veitbjarsch! - Added functionality to compare include and exclude rules to reduce the amount of cloudflare rulesv11.0.5
Compare Source
Patch Changes
04e5c38
Thanks @veitbjarsch! - Fixes a bug which was caused on windows when splitting static file pathswithastro/astro (@astrojs/mdx)
v3.1.8
Compare Source
Patch Changes
710a1a1
]:v3.1.7
Compare Source
Patch Changes
40e7a1b
Thanks @bluwy! - Initializes the MDX processor only when there's.mdx
filesv3.1.6
Compare Source
Patch Changes
c9ae7b1
Thanks @bluwy! - Handles nested root hast node when optimizing MDXv3.1.5
Compare Source
Patch Changes
88ef1d0
Thanks @bluwy! - Fixes CSS in the layout component to be ordered first before any other components in the MDX filev3.1.4
Compare Source
Patch Changes
423614e
Thanks @bluwy! - Fixes stack trace location when failed to parse an MDX file with frontmatterv3.1.3
Compare Source
Patch Changes
49b5145
]:withastro/astro (@astrojs/rss)
v4.0.9
Compare Source
Patch Changes
925cff3
Thanks @bholmesdev! - Improves README configuration reference.v4.0.8
Compare Source
Patch Changes
#12137
50dd88b
Thanks @ArmandPhilippot! - Fixes an error that occurred when the optionalpubDate
property was missing in an item.#12137
50dd88b
Thanks @ArmandPhilippot! - Fixes an error where docs incorrectly stated thetitle
,link
andpubDate
properties of RSS items was required.withastro/astro (@astrojs/sitemap)
v3.2.1
Compare Source
Patch Changes
07754f5
Thanks @mingjunlu! - Adds missingxslURL
property toSitemapOptions
type.v3.2.0
Compare Source
Minor Changes
fbe1bc5
Thanks @sondr3! - Adds newxslURL
option to enable styling of sitemapswithastro/astro (@astrojs/tailwind)
v5.1.2
Compare Source
Patch Changes
8e500f2
Thanks @delucis! - Adds keywords topackage.json
to improve categorization in the Astro integrations catalogv5.1.1
Compare Source
Patch Changes
dcd1158
Thanks @matthewp! - Make @astrojs/tailwind compat with Astro 5withastro/language-tools (@astrojs/ts-plugin)
v1.10.4
Compare Source
Patch Changes
128cf11
: Improves performance when using TS 5.6. Performance is still degraded compared to 5.5, but should at least be usable.128cf11
]v1.10.3
Compare Source
Patch Changes
8673fa5
: Fixes certain cases where content schemas would not be reloaded properly when they were updatedwithastro/astro (astro)
v4.16.7
Compare Source
Patch Changes
#12263
e9e8080
Thanks @Fryuni! - Fixes conflict between server islands and on-demand dynamic routes in the form of/[...rest]
or/[paramA]/[paramB]
.#12279
b781f88
Thanks @jsparkdev! - Update wrong error message#12273
c2ee963
Thanks @ascorbic! - Fixes an issue with some package managers where sites would not build if TypeScript was not installed.#12235
a75bc5e
Thanks @ematipico! - Fixes a bug where Astro Actions couldn't redirect to the correct pathname when there was a rewrite involved.#11839
ff522b9
Thanks @icaliman! - Fixes error when returning a top-levelnull
from an Astro file frontmatter#12272
388d237
Thanks @ascorbic! - Correctly handles local images when using a base path in SSRv4.16.6
Compare Source
Patch Changes
#11823
a3d30a6
Thanks @DerTimonius! - fix: improve error message when inferSize is used in local images with the Image component#12227
8b1a641
Thanks @florian-lefebvre! - Fixes a case where environment variables would not be refreshed when usingastro:env
#12239
2b6daa5
Thanks @ematipico! - BREAKING CHANGE to the experimental Container API onlyChanges the default page rendering behavior of Astro components in containers, and adds a new option
partial: false
to render full Astro pages as before.Previously, the Container API was rendering all Astro components as if they were full Astro pages containing
<!DOCTYPE html>
by default. This was not intended, and now by default, all components will render as page partials: only the contents of the components without a page shell.To render the component as a full-fledged Astro page, pass a new option called
partial: false
torenderToString()
andrenderToResponse()
:v4.16.5
Compare Source
Patch Changes
ff68ba5
Thanks @martrapp! - Fixes an issue with cssesc in dev mode when settingvite.ssr.noExternal: true
v4.16.4
Compare Source
Patch Changes
#12223
79ffa5d
Thanks @ArmandPhilippot! - Fixes a false positive reported by the dev toolbar Audit app where a label was considered missing when associated with a buttonThe
button
element can be used with a label (e.g. to create a switch) and should not be reported as an accessibility issue when used as a child of alabel
.#12199
c351352
Thanks @ematipico! - Fixes a regression in the computation ofAstro.currentLocale
#12222
fb55695
Thanks @ematipico! - Fixes an issue where the edge middleware couldn't correctly compute the client IP address when callingctx.clientAddress()
v4.16.3
Compare Source
Patch Changes
#12220
b049359
Thanks @bluwy! - Fixes accidental internalsetOnSetGetEnv
parameter rename that caused runtime errors#12197
2aa2dfd
Thanks @ematipico! - Fix a regression where a port was incorrectly added to theAstro.url
v4.16.2
Compare Source
Patch Changes
12b0022
Thanks @bluwy! - Reverts https://github.com/withastro/astro/pull/12173 which causedCan't modify immutable headers
warnings and 500 errors on Cloudflare Pagesdelucis/astro-auto-import (astro-auto-import)
v0.4.4
Compare Source
Patch Changes
f7c02dc
: Adds support for Astro v5v0.4.3
Compare Source
Patch Changes
d7fdae6
: Addutility
keyword for better categorization in the Astro integrations librarydelucis/astro-embed (astro-embed)
v0.7.4
Compare Source
Patch Changes
91e70e72e1f3efe2db37e9de1e721eaabfd292bc
Thanks @delucis! - Add additionalui
keyword for better categorization in Astro’s integrations libraryUpdated dependencies [
91e70e72e1f3efe2db37e9de1e721eaabfd292bc
]:v0.7.3
Compare Source
Patch Changes
#148
78346ae846925fa3ce90378d2f03c437620adcec
Thanks @prototypa! - Adds support for Astro v5Updated dependencies [
78346ae846925fa3ce90378d2f03c437620adcec
]:expressive-code/expressive-code (astro-expressive-code)
v0.37.1
Compare Source
Patch Changes
v0.37.0
Compare Source
Minor Changes
f07fc81
: Updates peer dependency range to support Astro 5.Patch Changes
Configuration
📅 Schedule: Branch creation - "before 4:00am on Monday" in timezone Asia/Tokyo, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.