Nova Changelog
4.0.0 - 2025-11-28
- Replace existing “aos” script with the
motion-on-scrolllibrary. This replaces all “data-aos” with “data-mos” and all “data-aos-trigger” with “data-mos-anchor”, but maintains the same functionality in an easier to maintain manner.- This uses the “motion” library for animations instead of “animejs”
- Replace all animejs scripts with motion. animejs is removed from the project as a result
- Upgrade to React v19 (only used by Keystatic)
- Upgrades existing starwind components and adds most of the new ones (all except the carousel component as it is unused and would install the
embla-carouseldependency) - Update to Astro v5.16.2
- Upgrade all other dependencies to their latest versions
3.2.0 - 2025-05-10
New i18n features!
New content collection localization capabilities, where individual blog posts in different languages can be linked with a
mappingKeyin the frontmatter. This allows content collections to be easily translated without needing to update therouteTranslationsobject each time!- This is accomplished in the new
localizedCollectionsobject
src/config/translationData.json.ts /*** * Content collection translations used by the language switcher and hreflang generator** Per-collection, per-locale route base mapping (collections to localize are the keys)** If you have a key of "blog" then the blog content collection will be localized. This will look* for a "mappingKey" in the entry metadata, and use that to map the entry to the correct locale** You can use the locale value to map the collection to a different route if desired** Note: this does NOT affect the getLocalizedRoute() function. To translate the base routes use the routeTranslations object*/export const localizedCollections = {blog: {en: "blog",fr: "blog",},// Add more collections/locales as needed} as const;- This is accomplished in the new
Add wildcard support in the
routeTranslationsobject, allowing you to map multiple routes at once.- For example, you could route all English category routes
/categories/*to the base French route of/categories
src/config/translationData.json.ts /*** * Route translations are used to translate route names for the language switcher component* This can be useful for SEO reasons. The key does not matter, it just needs to match between languages** ## Notes** - These routes must be everything after the base domain. So if this is "atlas.com/blog", the route would be "blog"* - Or if this is "atlas.com/legal/privacy", the route would be "legal/privacy"* - This also supports wildcards for language switcher and SEO purposes, and works in conjunction with the localizedCollections object below* - For example, "categories/*" would match "categories/1" or "categories/2" etc for that language.*/export const routeTranslations = {en: {overviewKey: "overview",categoryKey: "categories",categoryKey2: "categories/*",categoryKey3: "categories",},fr: {overviewKey: "apercu",categoryKey: "categories",categoryKey2: "categories",categoryKey3: "categories/*",},} as const;- For example, you could route all English category routes
You’ll also find a new
getLocalizedRoute()function as a drop-in replacement forgetRelativeLocaleUrl(). This is more flexible as it utilizes therouteTranslationsobject to auto-translate routes for you in components. You can use it like this:import { getLocaleFromUrl } from "@/js/localeUtils";import { getLocalizedRoute } from "@/js/translationUtils";const currLocale = getLocaleFromUrl(Astro.url);const route = getLocalizedRoute(currLocale, "/overview");// for the above routeTranslations, this would become "/fr/apercu" for FrenchAdjust existing i18n config script to account for additional features
Change from
tailwindcss-animatetotw-animate-csspackageLock package versions to limit potential issues with new package updates
Improve Prettier and ESLint setup
Update to Astro 5.7.12
Update other dependencies
3.1.0 - 2025-03-31
- Add eslint
- i18n script fixes
- Upgrade to Astro 5.5.5
- Update other dependencies
3.0.0 - 2025-02-11
- Upgrade to Tailwind CSS v4
- Removed
sassdependency as a result. Everything is now only CSS
- Removed
- Implemented my own CSS file for rendered markdown content, making it easier to understand and customize
- Removed
@tailwindcss/typographydependency as a result
- Removed
- Improve theme toggle styling and animation
- Improve pricing section toggles to be more accessible
- Add a slew of extra components under
src/components/starwind - Update code tours
- Upgrade to Astro 5.2.5
- Update other dependencies
2.0.0 - 2024-12-23
- Upgrade to Astro 5.1.1
- Astro’s instructions for the curious: https://docs.astro.build/en/guides/upgrade-to/v5/
- New content collection config file is at
src/content.config.ts, and collections are atsrc/data/
- Fix various
idattributes in the Accordion and Nav components - Updated Inter font to local installation via npm package to improve loading speed
- Add hreflang links as meta tags to improve SEO for multi-language websites
- i18n script improvements when using one language only
- script now removes all
getRelativeLocaleUrl()and text translation uses, simplifying the code
- script now removes all
- Keystatic unistall script improvement - detects your package manager and uses the appropriate uninstall command
- Upgrade astro-icon
- pnpm support
- added .npmrc file with a few settings to enable pnpm local builds
- removed
package-lock.jsonand replaced withpnpm-lock.yaml- If you install with
npm installa normalpackage-lock.jsonfile will be created
- If you install with
- Update prettier config file to be more strict (and help remove potential script issues if your setup differs)
- Change versioning structure to the more standard major, minor, patch
- Update other dependencies
1.4 - 2024-11-21
- This update is YUGE. This adds new configuration scripts
npm run config-i18nandnpm run remove-keystatic- It is now incredibly easy to configure i18n features when starting a project, and remove keystatic features if desired
- Enhance
global.scssto remove usage of sass@importand use@useinstead- The
@importdirective is being deprecated in Dart Sass and will be removed in future versions
- The
- Update
playform/compressconfig setting to not optimize images or SVGs- In particular, using the image optimization here can dramatically increase build times for sites with many images, and astro:assets already handles it
- Add vite config in
astro.config.mjsto remove Dart Sass deprecation warning- This is not necessary, but it removes a minor annoyance
- Update README
- Update to Astro 4.16.13
- Update other dependencies
1.3 - 2024-10-14
- Updated
NavLink.astroso that trailing slashes are removed from navbar links- This allows ID’s to be used in the navbar through the
navData.json.tsfiles
- This allows ID’s to be used in the navbar through the
- Fix code toggle section so no console errors are thrown when pages are changed with view transitions enabled
- Add marquee animations to integrations feature section
- Add marquee animations for the testimonials rows section
- Update to Astro 4.16.2
- Update other dependencies
1.2 - 2024-09-19
- Small bug fix in Code Toggle feature section on smaller screens
1.1 - 2024-09-18
- Add Code Toggle feature section
- This is configured with an Astro content collection and has the same syntax highlighting as MDX code blocks
- Update Astro to 4.15.6
- Update other dependencies
1.0 - 2024-09-14
- Initial release