Releases: hellotham/hello-astro
v3.2.0 (Major enhancements)
Major enhancements
- Updated to Astro 3.x
- Implement permissive Content Security Policy
v3.1.5 (Minor enhancements)
Minor enhancements:
- Upgrade to latest version of packages
- Fixed minor astro check error
v3.1.4 (Minor enhancements)
Minor enhancements:
- Unified Image processing for svg and bitmaps
- Enabled ViewTransitions
- Updated to use astro 2.9.2
Minor fix:
- Re-enabled sample markdoc page by fixing case of gallery component
v3.1.3 (Minor fixes)
Minor fixes
- Upgrade to
@astrojs/markdoc
0.4.x and latest astro - Fixed Props declaration in [slug].astro
- disabled Markdoc sample file due to this issue: withastro/astro#7520
v3.1.1 (Enhancement release)
Minor changes:
- Lazy load images
- Support Github emoji via remark-emoji
v3.1.0 (Enhancement release)
Enhancements:
- Migrated package manager from yarn to pnpm
- Added eslint and prettier with plugins
- Updated tsconfig to match astro strict
- Update Katex CSS link
- Added Markdoc support
Bug fixes
- Reference base for head links
- Fixed image attributes error in seo component
- Fixed author not appearing in blog card
v3.0.0 (Major Release)
Major changes
- Use new Astro experimental optimised asset support
- migrated authors and categories to collections and use referential integrity based on Astro 2.5.0
- converted social links to a data collection (requires Astro >2.5.0)
- improve search to include documentation
Minor changes
- new Astro logo
- optimised post draft filtering
- cleaned up gallery
- fixed up SEO errors
- cleaned up lint errors
- updated favicon and header metadata
v2.4.2
Minor enhancements
Upgraded packages and README
v2.4.1
Bug fixes
Use rendered frontmatter for blog and doc posts, fixes problems with diagrams not rendering.
v2.4.0
Breaking Release
Since version 1.0.0, hello-astro
has supported two kinds of images - raster images (PNG, JPEG, GIFF etc.) and vector images (SVG). This has to be specified differently using separate frontmatter (coverImage
and coverSVG
). This is because astrojs/image
does not natively support SVG.
Since astrojs/image
now supports SVG, a decision has been made to deprecate the use of coverSVG
so coverImage
now accepts all formats.
coverSVG
is still supported for now, but you are encourage to replace all instances of coverSVG
with coverImage
in your content if you use this starter template. In a future release, coverSVG
will be removed as a frontmatter property.
The code for this template has been cleaned up so that all image formats are consistently handled, and SVG is no longer treated as a special case.