This repository has been archived by the owner on Dec 24, 2020. It is now read-only.
Releases: connorshea/mdn-compat-data-explorer
Releases · connorshea/mdn-compat-data-explorer
v0.7.0
v0.6.0
v0.5.2
v0.5.1
v0.5.0
v0.4.0
Added
- Describe the application on the home page.
- Create a page for each browser, list all new features for each release. (#41)
- Random sorting option for the features page. (#42)
- Keep a
CHANGELOG.md
. (#45) - Display Travis CI badge in
README.md
. (#47) - Add a 404 checker for MDN URLs, currently this is run manually and not saved or exposed in the application. (#48)
- Add filtering by browser status (e.g. filter down to features where Firefox is exactly
true
or where Chrome has no data) to the search page. (#51) - Add a "Search on GitHub" link to feature cards, it searches for the feature in the
browser-compat-data
repo. (#53)
Fixed
- Correctly handle
version_removed
property for the browser support tables. (#43)
v0.3.1
New in this release:
- Add Google Analytics so I can see how many users have visited the site.
- Minor README cleanups.
v0.3.0
New in this release:
- Render popovers for support objects with more information than just
version_added
. (#27, #28) - Properly render partial support in feature support tables.
- Add search filters for MDN URLs, descriptions, and experimental/deprecated/standard track info. (#29)
- Move search filters to the left sidebar on desktop. (#30)
- Upgrade the dataset to
0.0.34
. (#31)
Search page:
Feature info popovers:
Partial support and question marks for when a support object has extra info:
v0.2.0
New in this release:
- Add
annotate
gem to provide database information in model files. (#23) - Add
rails-erd
gem to visualize the database setup. (#24) - Add
better-errors
gem to replace Rails' crappy default error pages. - Add a Graphs page with donut graphs for each browser and its respective coverage of features in the dataset. (#12)
- Add support for using test data by setting
USE_TEST_DATA=true
when runningrake db:seed
. - Add
factory-bot
gem and update the test suite to use it. (#26) - Add tests of feature scope accuracy for the graphs page.
Graphs page:
v0.1.3
New in this release:
- Fix DatabaseCleaner not running in production. This caused the Heroku deployment to fail for v0.1.2. Normally it'd be crazy to run DatabaseCleaner on a production database, but this is a static dataset so it's fine.