Update dependency astro to v3.3.4 #5
Loading…
Reference in a new issue
No description provided.
Delete branch "renovate/astro-3.x-lockfile"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This PR contains the following updates:
3.1.0
->3.3.4
Release Notes
withastro/astro (astro)
v3.3.4
Compare Source
Patch Changes
#8877
26b77b8fe
Thanks @bluwy! - Fixes CSS modules ordering by rendering styles before linksUpdated dependencies [
341ef6578
]:v3.3.3
Compare Source
Patch Changes
#8870
5ea6ee0ed
Thanks @xstevenyung! - prevent production install on astro add cmd#8840
5c888c10b
Thanks @martrapp! - Fixes styles ofclient:only
components not persisting during view transitions in dev mode#8814
ad2bb9155
Thanks @lilnasy! - Fix an issue where500.astro
did not render when the middleware threw an error.#8863
326e17893
Thanks @florian-lefebvre! - Fixes an issue where the dev server logged the full file path on updates.v3.3.2
Compare Source
Patch Changes
#8852
2c18e2d12
Thanks @rayriffy! - Only use Vite config from astro.config.mjs as source of truth#8828
11f45b9a3
Thanks @rishi-raj-jain! - fix file system path references#8779
2b8a459a6
Thanks @ematipico! - Enriches the explanation of thebase
configuration with examples.v3.3.1
Compare Source
Patch Changes
#8823
8946f2a25
Thanks @Princesseuh! - Fix duplicate images being created in some cases when using densities and/or widths#8842
b405b039a
Thanks @Princesseuh! - Fixes Picture component not taking into account the fallback format specified#8827
ce3025cfa
Thanks @rishi-raj-jain! - better error handling there whenever we don't get a normal 200 response#8817
f8de1983b
Thanks @bluwy! - Fix error overlay syntax highlighting#8838
2f9e2083d
Thanks @dominikg! - deps: unpin and update tsconfck from3.0.0-next.9
to^3.0.0
#8823
8946f2a25
Thanks @Princesseuh! - fix remote srcset images not being resizedv3.3.0
Compare Source
Minor Changes
#8808
2993055be
Thanks @delucis! - Adds support for an--outDir
CLI flag toastro build
#8502
c4270e476
Thanks @bluwy! - Updates the internalshiki
syntax highlighter toshikiji
, an ESM-focused alternative that simplifies bundling and maintenance.There are no new options and no changes to how you author code blocks and syntax highlighting.
Potentially breaking change: While this refactor should be transparent for most projects, the transition to
shikiji
now produces a smaller HTML markup by attaching a fallbackcolor
style to thepre
orcode
element, instead of to the linespan
directly. For example:Before:
After:
This does not affect the colors as the
span
will inherit thecolor
from the parent, but if you're relying on a specific HTML markup, please check your site carefully after upgrading to verify the styles.#8798
f369fa250
Thanks @Princesseuh! - Fixedtsconfig.json
's new array format forextends
not working. This was done by migrating Astro to usetsconfck
instead oftsconfig-resolver
to find and parsetsconfig.json
files.#8620
b2ae9ee0c
Thanks @Princesseuh! - Adds experimental support for generatingsrcset
attributes and a new<Picture />
component.v3.2.4
Compare Source
Patch Changes
#8638
160d1cd75
Thanks @florian-lefebvre! - The@astrojs/tailwind
integration now creates atailwind.config.mjs
file by default#8767
30de32436
Thanks @martrapp! - Revert fix #8472#8472 caused some style files from previous pages to not be cleanly deleted on view transitions. For a discussion of a future fix for the original issue #8144 see #8745.
#8741
c4a7ec425
Thanks @lilnasy! - Fixed an issue on Windows where lowercase drive letters in current working directory led to missing scripts and styles.#8772
c24f70d91
Thanks @martrapp! - Fix flickering during view transitions#8754
93b092266
Thanks @bluwy! - Make CSS chunk names less confusing#8776
29cdfa024
Thanks @martrapp! - Fix transition attributes on islands#8773
eaed844ea
Thanks @sumimakito! - Fix an issue where HTML attributes do not render if getHTMLAttributes in an image service returns a Promisev3.2.3
Compare Source
Patch Changes
#8737
6f60da805
Thanks @ematipico! - Add provenance statement when publishing the library from CI#8747
d78806dfe
Thanks @natemoo-re! - Improve error message when user attempts to render a dynamic component reference#8736
d1c75fe15
Thanks @bluwy! - Fixtsconfig.json
update causing the server to crash#8743
aa265d730
Thanks @bluwy! - Remove unused CSS output files when inlined#8700
78adbc443
Thanks @jacobthesheep! - Update link for Netlify SSR#8729
21e0757ea
Thanks @lilnasy! - Node-based adapters now create less server-side javascript#8730
357270f2a
Thanks @natemoo-re! - Improveastro info
copy to clipboard compatabilityUpdated dependencies [
21f482657
,6f60da805
,21e0757ea
]:v3.2.2
Compare Source
Patch Changes
#8724
455af3235
Thanks @bluwy! - Fix CSS styles on Windows#8710
4c2bec681
Thanks @matthewp! - Fixes View transition styles being missing when component used multiple timesv3.2.1
Compare Source
Patch Changes
#8680
31c59ad8b
Thanks @bluwy! - Fix hydration on slow connection#8698
47ea310f0
Thanks @Princesseuh! - Use a Node-specific image endpoint to resolve images in dev and Node SSR. This should fix many issues related to getting 404 from the _image endpoint under certain configurations#8706
345808170
Thanks @bluwy! - Fix duplicated Astro and Vite injected stylesv3.2.0
Compare Source
Minor Changes
#8696
2167ffd72
Thanks @matthewp! - Support adding integrations dynamicallyAstro integrations can now themselves dynamically add and configure additional integrations during set-up. This makes it possible for integration authors to bundle integrations more intelligently for their users.
In the following example, a custom integration checks whether
@astrojs/sitemap
is already configured. If not, the integration adds Astro’s sitemap integration, passing any desired configuration options:#8696
2167ffd72
Thanks @matthewp! - View transitions can now be triggered from JavaScript!Import the client-side router from "astro:transitions/client" and enjoy your new remote control for navigation:
#8696
2167ffd72
Thanks @matthewp! - Route Announcer in<ViewTransitions />
The View Transitions router now does route announcement. When transitioning between pages with a traditional MPA approach, assistive technologies will announce the page title when the page finishes loading. This does not automatically happen during client-side routing, so visitors relying on these technologies to announce routes are not aware when a page has changed.
The view transitions route announcer runs after the
astro:page-load
event, looking for the page<title>
to announce. If one cannot be found, the announcer falls back to the first<h1>
it finds, or otherwise announces the pathname. We recommend you always include a<title>
in each page for accessibility.See the View Transitions docs for more on how accessibility is handled.
Patch Changes
#8647
408b50c5e
Thanks @lilnasy! - Fixed an issue where configured redirects with dynamic routes did not work in dev mode.#8696
2167ffd72
Thanks @matthewp! - Fix logLevel passed to Vite build#8696
2167ffd72
Thanks @matthewp! - Fix NoImageMetadata image path error message#8670
e797b6816
Thanks @MichailiK! - Fix asset optimization failing when outDir is outside the project directory#8684
824dd4670
Thanks @matthewp! - Support content collections with % in filename#8648
cfd895d87
Thanks @lilnasy! - Fixed an issue where a response with status code 404 led to an endless loop of implicit rerouting in dev mode.v3.1.4
Compare Source
Patch Changes
69fbf95b2
Thanks @matthewp! - Fix cases of head propagation not occuring in dev serverv3.1.3
Compare Source
Patch Changes
#8591
863f5171e
Thanks @rishi-raj-jain! - add site url to the location of redirect#8633
63141f3f3
Thanks @Princesseuh! - Fix build not working when having multiple images in the same Markdown file#8636
974d5117a
Thanks @martrapp! - fix: no deletion of scripts during view transition#8645
cb838b84b
Thanks @matthewp! - Fix getDataEntryById to lookup by basename#8640
f36c4295b
Thanks @matthewp! - Warn on empty content collections#8615
4c4ad9d16
Thanks @alexanderniebuhr! - Improve the logging of assets for adapters that do not support image optimizationv3.1.2
Compare Source
Patch Changes
#8612
bcad715ce
Thanks @matthewp! - Ensure cookies are attached when middleware changes the Response#8598
bdd267d08
Thanks @Princesseuh! - Fix relative images in Markdown breaking the build process in certain circumstances#8382
e522a5eb4
Thanks @DerTimonius! - Do not throw an error for an empty collection directory.#8600
ed54d4644
Thanks @FredKSchott! - Improve config info telemetry#8592
70f2a8003
Thanks @bluwy! - Fix alias plugin causing CSS ordering issue#8614
4398e9298
Thanks @lilnasy! - Fixed an issue where spaces and unicode characters in project path prevented middleware from running.#8603
8f8b9069d
Thanks @matthewp! - Prevent body scripts from re-executing on navigation#8609
5a988eaf6
Thanks @bluwy! - Fix Astro HMR from a CSS dependencyUpdated dependencies [
ed54d4644
]:v3.1.1
Compare Source
Patch Changes
#8580
8d361169b
Thanks @rishi-raj-jain! - add hide to style & script generated for island#8568
95b5f6280
Thanks @Princesseuh! - Fix small types issues related toastro:assets
's AVIF support andgetImage
#8579
0586e20e8
Thanks @rishi-raj-jain! - show redirect symbol as of the pageConfiguration
📅 Schedule: Branch creation - At any time (no schedule defined), 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.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Renovate Bot.