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 was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@astrojs/[email protected]
Minor Changes
#3625
f5afaf24
Thanks @matthewp! - Conform to Constructor based renderingThis changes
@astrojs/lit
to conform to the way rendering happens in all other frameworks. Instead of using the tag name<my-element client:load>
you use the imported constructor function,<MyElement client:load>
like you would do with any other framework.Support for
tag-name
syntax had to be removed due to the fact that it was a runtime feature that was not statically analyzable. To improve build performance, we have removed all runtime based component discovery. Using the imported Constructor name allows Astro to discover what components need to be built and bundled for production without ever running your file.@astrojs/[email protected]
Minor Changes
#3579
1031c06f
Thanks @alextim! - # Key featureslastmod
etc.Important changes
The integration always generates at least two files instead of one:
sitemap-index.xml
- index file;sitemap-{i}.xml
- actual sitemap.[email protected]
Patch Changes
#3625
f5afaf24
Thanks @matthewp! - Significantly improved build performanceThis change reflects in a significantly improved build performance, especially on larger sites.
With this change Astro is not building everything by statically analyzing
.astro
files. This means it no longer needs to dynamically run your code in order to know what JavaScript needs to be built.With one particular large site we found it to build 32% faster.
#3612
fca58cfd
Thanks @bholmesdev! - Fix: "vpath" import error when building for netlify edge#3650
d9f6dcf6
Thanks @natemoo-re! - Properly catch falsy components#3610
6ab749be
Thanks @hippotastic! - Add component hydration in Markdown E2E tests#3620
05aa7244
Thanks @hippotastic! - Remove extra newlines around Markdown componentsUpdated dependencies [
80c71c7c
,fca58cfd
,9c8a7c0b
,9c8a7c0b
,48e67fe0
,05aa7244
]:@astrojs/[email protected]
Patch Changes
fca58cfd
Thanks @bholmesdev! - Fix: "vpath" import error when building for netlify edge@astrojs/[email protected]
Patch Changes
#3638
80c71c7c
Thanks @tony-sull! - Fix: HTML comments in markdown code blocks should not be wrapped in JS comments#3612
fca58cfd
Thanks @bholmesdev! - Fix: "vpath" import error when building for netlify edge#3630
48e67fe0
Thanks @tony-sull! - Encodes ampersand characters in code blocks#3620
05aa7244
Thanks @hippotastic! - Remove extra newlines around Markdown components@astrojs/[email protected]
Patch Changes
#3614
9c8a7c0b
Thanks @okikio! - Fix telemetry crashing astro build/dev when using optional integrationsTelemetry will now ignore falsy integration values but will gather a count of how many integrations out of the total are now optional integrations
#3614
9c8a7c0b
Thanks @okikio! - Add's optional integrations field to@astrojs/telemetry
's payload