Skip to content

v4.0.0

Compare
Choose a tag to compare
@github-actions github-actions released this 11 Mar 09:57

Version v4.0.0 (2024-03-11)

Version 4.0.0 is a complete rewrite of the AOE Technology Radar. It is now based
on Next.js to provide enhanced static site generation. The visualization has
been rewritten without the need for the D3 dependency. New features include a fuzzy search based on
Fuse.js, non-overlapping blips on the radar, and a reworked tag filter on the homepage.

To migrate from the old version please migrate your package.json's scripts and create a
new config.json based on the documentation below. You can find a reference implementation in
our repo. The old version is still available in the v3
branch.

Version 4.0.0 also removes the .html extension from the URLs. If you want to support the old URLs,
we recommend to add a redirect rule. For nginx, you can use the following rule:

rewrite ^/techradar/(.+)\.html$ /techradar/$1/ permanent;

What's Changed

New Contributors

Full Changelog: v3.6.0...v4.0.0