v4.0.0
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
- Version 4.0.0 by @mathiasschopmans in #421
New Contributors
- @mathiasschopmans made their first contribution in #421
Full Changelog: v3.6.0...v4.0.0