Skip to content

Releases: hellotham/hello-astro

v3.2.0 (Major enhancements)

15 Sep 23:26
Compare
Choose a tag to compare

Major enhancements

  • Updated to Astro 3.x
  • Implement permissive Content Security Policy

v3.1.5 (Minor enhancements)

15 Aug 22:38
Compare
Choose a tag to compare

Minor enhancements:

  • Upgrade to latest version of packages
  • Fixed minor astro check error

v3.1.4 (Minor enhancements)

25 Jul 03:26
Compare
Choose a tag to compare

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)

22 Jul 03:49
Compare
Choose a tag to compare

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)

13 Jun 00:04
Compare
Choose a tag to compare

Minor changes:

  • Lazy load images
  • Support Github emoji via remark-emoji

v3.1.0 (Enhancement release)

12 Jun 06:09
Compare
Choose a tag to compare

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)

11 Jun 09:58
5732426
Compare
Choose a tag to compare

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

11 Mar 22:33
Compare
Choose a tag to compare

Minor enhancements

Upgraded packages and README

v2.4.1

25 Feb 06:26
Compare
Choose a tag to compare

Bug fixes

Use rendered frontmatter for blog and doc posts, fixes problems with diagrams not rendering.

v2.4.0

18 Feb 06:18
Compare
Choose a tag to compare

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.