[ci] release#3615
Merged
Merged
Conversation
abf5eca to
edce692
Compare
Member
|
This is a big one! Excited to get this goodness in docs. |
753d70d to
bbc6016
Compare
bbc6016 to
571bd0d
Compare
SiriousHunter
pushed a commit
to SiriousHunter/astro
that referenced
this pull request
Feb 3, 2023
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Matthew Phillips <matthew@skypack.dev>
ematipico
pushed a commit
that referenced
this pull request
Feb 6, 2025
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Matthew Phillips <matthew@skypack.dev>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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/lit@0.2.0
Minor Changes
#3625
f5afaf24Thanks @matthewp! - Conform to Constructor based renderingThis changes
@astrojs/litto 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-namesyntax 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/sitemap@0.2.0
Minor Changes
#3579
1031c06fThanks @alextim! - # Key featureslastmodetc.Important changes
The integration always generates at least two files instead of one:
sitemap-index.xml- index file;sitemap-{i}.xml- actual sitemap.astro@1.0.0-beta.48
Patch Changes
#3625
f5afaf24Thanks @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
.astrofiles. 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
fca58cfdThanks @bholmesdev! - Fix: "vpath" import error when building for netlify edge#3650
d9f6dcf6Thanks @natemoo-re! - Properly catch falsy components#3610
6ab749beThanks @hippotastic! - Add component hydration in Markdown E2E tests#3620
05aa7244Thanks @hippotastic! - Remove extra newlines around Markdown componentsUpdated dependencies [
80c71c7c,fca58cfd,9c8a7c0b,9c8a7c0b,48e67fe0,05aa7244]:@astrojs/netlify@0.4.5
Patch Changes
fca58cfdThanks @bholmesdev! - Fix: "vpath" import error when building for netlify edge@astrojs/markdown-remark@0.11.3
Patch Changes
#3638
80c71c7cThanks @tony-sull! - Fix: HTML comments in markdown code blocks should not be wrapped in JS comments#3612
fca58cfdThanks @bholmesdev! - Fix: "vpath" import error when building for netlify edge#3630
48e67fe0Thanks @tony-sull! - Encodes ampersand characters in code blocks#3620
05aa7244Thanks @hippotastic! - Remove extra newlines around Markdown components@astrojs/telemetry@0.1.3
Patch Changes
#3614
9c8a7c0bThanks @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
9c8a7c0bThanks @okikio! - Add's optional integrations field to@astrojs/telemetry's payload